-
Notifications
You must be signed in to change notification settings - Fork 112
build on Dos #201
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
build on Dos #201
Conversation
| @@ -0,0 +1,19 @@ | |||
| src/csrc/pf_io_none.c src/csrc/ionone.c | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe I should rename all these files to 8.3 format in the main code.
I thought 8.3 files were no longer important on Windows.
But I guess they are still a requirement.
DOS cannot handle long filenames.
The original and new file names are:
csrc/pf_io_none.c csrc/ionone.c
csrc/posix/pf_io_posix.c csrc/posix/ioposix.c
csrc/stdio/pf_fileio_stdio.c csrc/stdio/fiostdio.c
csrc/stdio/pf_io_stdio.c csrc/stdio/iostdio.c
csrc/win32/pf_io_win32.c csrc/win32/iowin32.c
csrc/win32_console/pf_io_win32_console.c csrc/win32csl/iowin32c.c
fth/save-input.fth fth/savinput.fth
fth/structure.fth fth/structur.fth
fth/t_include.fth fth/tinclude.fth
fth/t_load_defer.fth fth/tlddefer.fth
fth/t_load_pairs.fth fth/tldpairs.fth
fth/t_load_semi.fth fth/tldsemi.fth
fth/t_load_undef.fth fth/tldundef.fth
fth/t_required_helper1.fth fth/treqhlp1.fth
fth/t_required_helper2.fth fth/treqhlp2.fth
fth/t_strings.fth fth/tstrings.fth
fth/utils/dump_struct.fth fth/utils/dumpstru.fth
fth/utils/load_file.fth fth/utils/loadfile.fth
fth/utils/make_all256.fth fth/utils/make_all.fth
Note that the folder "csrc/win32_console" became "csrc/win32csl".
Updated all Makefiles and CMakeLists.txt to reflect the changes.
Special thanks to https://github.com/guberathome for providing scripts
to do the conversion. See #201
Fixes #216
|
@guberathome - I decided to go ahead and fix the long file names. Please take a look at #218 |
Compiled PForth under FreeDOS and DosBox
as 32bit version with a DOS extender (dos4gw).
README has the details.
Needs #196 to be merged in advance to work. (Update: #196 is now merged.)