- enhancement: If GAS source file has "_start" label, compile it with "-nostartfiles".
This commit is contained in:
parent
5cc52ea9f9
commit
9976ee248a
1
NEWS.md
1
NEWS.md
|
@ -10,6 +10,7 @@ Red Panda C++ Version 2.12
|
||||||
- enhancement: Compile/Run/Debug GAS source files.
|
- enhancement: Compile/Run/Debug GAS source files.
|
||||||
- enhancement: Compile/Debug GAS source files in project.
|
- enhancement: Compile/Debug GAS source files in project.
|
||||||
- enhancement: Keyword completion for asm/GAS files.
|
- enhancement: Keyword completion for asm/GAS files.
|
||||||
|
- enhancement: If GAS source file has "_start" label, compile it with "-nostartfiles".
|
||||||
|
|
||||||
Red Panda C++ Version 2.11
|
Red Panda C++ Version 2.11
|
||||||
|
|
||||||
|
|
|
@ -156,7 +156,7 @@ bool FileCompiler::prepareForCompile()
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (hasStart) {
|
if (hasStart) {
|
||||||
mArguments+=" -nostdlib";
|
mArguments+=" -nostartfiles";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue