Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
micropython
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
card10
micropython
Commits
5bea6ea8
Commit
5bea6ea8
authored
8 years ago
by
Nikita Melentev
Committed by
Damien George
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
unix: Fix freedos port build problems.
parent
8400351d
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
unix/.gitignore
+2
-0
2 additions, 0 deletions
unix/.gitignore
unix/Makefile
+4
-1
4 additions, 1 deletion
unix/Makefile
unix/mpconfigport_freedos.h
+1
-5
1 addition, 5 deletions
unix/mpconfigport_freedos.h
with
7 additions
and
6 deletions
unix/.gitignore
+
2
−
0
View file @
5bea6ea8
...
...
@@ -3,10 +3,12 @@ build-fast
build-minimal
build-coverage
build-nanbox
build-freedos
micropython
micropython_fast
micropython_minimal
micropython_coverage
micropython_nanbox
micropython_freedos*
*.py
*.gcov
This diff is collapsed.
Click to expand it.
unix/Makefile
+
4
−
1
View file @
5bea6ea8
...
...
@@ -235,7 +235,10 @@ freedos:
PROG
=
micropython_freedos
\
MICROPY_PY_SOCKET
=
0
\
MICROPY_PY_FFI
=
0
\
MICROPY_PY_JNI
=
0
MICROPY_PY_JNI
=
0
\
MICROPY_PY_BTREE
=
0
\
MICROPY_PY_THREAD
=
0
\
MICROPY_PY_USSL
=
0
# build an interpreter for coverage testing and do the testing
coverage
:
...
...
This diff is collapsed.
Click to expand it.
unix/mpconfigport_freedos.h
+
1
−
5
View file @
5bea6ea8
...
...
@@ -37,8 +37,4 @@
// djgpp dirent struct does not have d_ino field
#undef _DIRENT_HAVE_D_INO
// djgpp errno.h have no ENOTSUP
#include
<errno.h>
#ifndef ENOTSUP
#define ENOTSUP 88
#endif
#define MICROPY_USE_INTERNAL_ERRNO (1)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment