mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 13:28:41 +00:00
Fixed NASM command line arguments.
This commit is contained in:
parent
df3eb587a5
commit
52cf4e39d0
1 changed files with 2 additions and 5 deletions
|
|
@ -74,11 +74,8 @@ namespace Cosmos.Build.Tasks
|
|||
|
||||
xBuilder.AppendSwitch("-g");
|
||||
|
||||
xBuilder.AppendSwitch("-f");
|
||||
xBuilder.AppendSwitch(OutputFormat);
|
||||
|
||||
xBuilder.AppendSwitch("-o ");
|
||||
xBuilder.AppendSwitch(OutputFile);
|
||||
xBuilder.AppendSwitchIfNotNull("-f ", OutputFormat);
|
||||
xBuilder.AppendSwitchIfNotNull("-o ", OutputFile);
|
||||
|
||||
if (mOutputFormat == OutputFormatEnum.ELF)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue