diff --git a/src/plugins/projectexplorer/gcctoolchain.cpp b/src/plugins/projectexplorer/gcctoolchain.cpp index f3dbef6285d54ce678e1b00daaf1ae4d8bda51dd..11de8e27f29f0f90040bf6d45aa30eb43e2dcdb8 100644 --- a/src/plugins/projectexplorer/gcctoolchain.cpp +++ b/src/plugins/projectexplorer/gcctoolchain.cpp @@ -403,7 +403,9 @@ QByteArray GccToolChain::predefinedMacros(const QStringList &cxxflags) const || a.startsWith(QLatin1String("-specs=")) || a == QLatin1String("-ansi") || a == QLatin1String("-undef") || a.startsWith(QLatin1String("-D")) || a.startsWith(QLatin1String("-U")) - || a == QLatin1String("-fopenmp") || a == QLatin1String("-Wno-deprecated")) + || a == QLatin1String("-fopenmp") || a == QLatin1String("-Wno-deprecated") + || a == QLatin1String("-fPIC") || a == QLatin1String("-fpic") + || a == QLatin1String("-fPIE") || a == QLatin1String("-fpie")) arguments << a; } macros = gccPredefinedMacros(m_compilerCommand, reinterpretOptions(arguments),