stack size doesn't work in linux
This commit is contained in:
parent
cd65ecd74a
commit
311fe880bb
|
@ -217,7 +217,9 @@ void CompilerInfo::prepareCompilerOptions()
|
||||||
|
|
||||||
// Linker
|
// Linker
|
||||||
groupName = QObject::tr("Linker");
|
groupName = QObject::tr("Linker");
|
||||||
|
#ifdef Q_OS_WIN
|
||||||
addNumberOption(LINK_CMD_OPT_STACK_SIZE, QObject::tr("Stack Size"), groupName, false, false, true, "-Wl,--stack,","MB",1024*1024,12,0,99999);
|
addNumberOption(LINK_CMD_OPT_STACK_SIZE, QObject::tr("Stack Size"), groupName, false, false, true, "-Wl,--stack,","MB",1024*1024,12,0,99999);
|
||||||
|
#endif
|
||||||
|
|
||||||
addOption(CC_CMD_OPT_USE_PIPE, QObject::tr("Use pipes instead of temporary files during compilation (-pipe)"), groupName, true, true, false, "-pipe");
|
addOption(CC_CMD_OPT_USE_PIPE, QObject::tr("Use pipes instead of temporary files during compilation (-pipe)"), groupName, true, true, false, "-pipe");
|
||||||
//addOption(LINK_CMD_OPT_LINK_OBJC, QObject::tr("Link an Objective C program (-lobjc)"), groupName, false, false, true, "-lobjc");
|
//addOption(LINK_CMD_OPT_LINK_OBJC, QObject::tr("Link an Objective C program (-lobjc)"), groupName, false, false, true, "-lobjc");
|
||||||
|
|
Loading…
Reference in New Issue