mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 22:12:25 +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("-g");
|
||||||
|
|
||||||
xBuilder.AppendSwitch("-f");
|
xBuilder.AppendSwitchIfNotNull("-f ", OutputFormat);
|
||||||
xBuilder.AppendSwitch(OutputFormat);
|
xBuilder.AppendSwitchIfNotNull("-o ", OutputFile);
|
||||||
|
|
||||||
xBuilder.AppendSwitch("-o ");
|
|
||||||
xBuilder.AppendSwitch(OutputFile);
|
|
||||||
|
|
||||||
if (mOutputFormat == OutputFormatEnum.ELF)
|
if (mOutputFormat == OutputFormatEnum.ELF)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue