We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e041db8 commit 5a18a8fCopy full SHA for 5a18a8f
gccbasedassembler.cpp
@@ -49,9 +49,9 @@ QString GccBasedAssembler::getLinkerOptions()
49
{
50
QString options;
51
if (isx86())
52
- options = "$PROGRAM.OBJ$ -g -o $PROGRAM$ -m32";
+ options = "$PROGRAM.OBJ$ $MACRO.OBJ$ -g -o $PROGRAM$ -m32";
53
else
54
- options = "$PROGRAM.OBJ$ -g -o $PROGRAM$ -m64";
+ options = "$PROGRAM.OBJ$ $MACRO.OBJ$ -g -o $PROGRAM$ -m64";
55
if (m_isPieEnabled)
56
options += " -fno-pie -no-pie";
57
return options;
0 commit comments