diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2023-12-31 00:52:25 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2023-12-31 00:52:25 +0100 |
| commit | 9bea6c59da8934bb7144be684f7b234978877047 (patch) | |
| tree | da37b31a4809916fc64376e372e9855fd5b8905b /CompilerFrontend | |
| parent | 263915832993dd12beee10e204f9ebcc6c786ed2 (diff) | |
Tools: reworking C/C++ compiler.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'CompilerFrontend')
| -rw-r--r-- | CompilerFrontend/cl/compiler.d | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CompilerFrontend/cl/compiler.d b/CompilerFrontend/cl/compiler.d index e510e1c..b2cb8f5 100644 --- a/CompilerFrontend/cl/compiler.d +++ b/CompilerFrontend/cl/compiler.d @@ -86,7 +86,7 @@ public class CompileCommand changed ~= ".masm"; - mcc_summon_executable("/usr/local/bin/bin/masm -marc " ~ changed); + mcc_summon_executable("/usr/local/bin/bin/masm -m64000 " ~ changed); } if (compile_only) @@ -123,7 +123,7 @@ public class CompileCommand output_object ~= " -o "; output_object ~= output; - mcc_summon_executable("/usr/local/bin/bin/ld -marc " ~ + mcc_summon_executable("/usr/local/bin/bin/ld -m64000 " ~ obj ~ output_object); } }
\ No newline at end of file |
