-
Notifications
You must be signed in to change notification settings - Fork 123
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
[WIP] Add Borland 3.1 compiler to MS-DOS platform #1419
Conversation
backend/coreapp/compilers.py
Outdated
'cat "$INPUT" | unix2dos > dos_src.c && ' | ||
"echo \"\$_hdimage = '+0 ${COMPILER_DIR} +1'\" > .dosemurc && " | ||
'(HOME="." /usr/bin/dosemu -quiet -dumb -f .dosemurc -K . -E "D:\\bin\\bcc.exe -ID:\\include ${COMPILER_FLAGS} -c -oout.o dos_src.c") && ' | ||
"rm .dosemurc && " |
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.
Don't need to worry about the rm, the execution is done in a sandbox
You'll need to update the asm-differ dependency in the poetry.lock once your PR has been merged there, but other than that, this looks good to go! |
@@ -59,6 +59,8 @@ jobs: | |||
run: |- | |||
wget https://github.com/OmniBlade/binutils-gdb/releases/download/omf-build/omftools.tar.gz |
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.
can you change this so we only extract jwasm
(and same for Dockerfile if appropriate)?
Depends on
simonlindholm/asm-differ#178
decompme/compilers#28