Commit c003a913 authored by Martin Smith's avatar Martin Smith
Browse files

qdoc: Remove -fPIC from default options when Q_OS_WIN


This update only adds -fPIC to the options passed to clang
if Q_OS_WIN is not defined.

Change-Id: I473ac14a026aecff141ab6d16e6283efe7bc5bd5
Reviewed-by: default avatarLeena Miettinen <riitta-leena.miettinen@qt.io>
Reviewed-by: default avatarTopi Reiniö <topi.reinio@qt.io>
Showing with 3 additions and 1 deletion
...@@ -1079,7 +1079,9 @@ void ClangCodeParser::parseHeaderFile(const Location & /*location*/, const QStri ...@@ -1079,7 +1079,9 @@ void ClangCodeParser::parseHeaderFile(const Location & /*location*/, const QStri
static const char *defaultArgs_[] = { static const char *defaultArgs_[] = {
"-std=c++14", "-std=c++14",
#ifndef Q_OS_WIN
"-fPIC", "-fPIC",
#endif
"-fno-exceptions", // Workaround for clang bug http://reviews.llvm.org/D17988 "-fno-exceptions", // Workaround for clang bug http://reviews.llvm.org/D17988
"-DQ_QDOC", "-DQ_QDOC",
"-DQT_DISABLE_DEPRECATED_BEFORE=0", "-DQT_DISABLE_DEPRECATED_BEFORE=0",
...@@ -1442,7 +1444,7 @@ Node* ClangCodeParser::parseFnArg(const Location& location, const QString& fnArg ...@@ -1442,7 +1444,7 @@ Node* ClangCodeParser::parseFnArg(const Location& location, const QString& fnArg
CXTranslationUnit_SkipFunctionBodies | CXTranslationUnit_SkipFunctionBodies |
CXTranslationUnit_KeepGoing); CXTranslationUnit_KeepGoing);
// Change 2nd parameter to 1 to make clang report errors. // Change 2nd parameter to 1 to make clang report errors.
CXIndex index = clang_createIndex(1, 0); CXIndex index = clang_createIndex(1, Generator::debugging() ? 1 : 0);
std::vector<const char *> args(std::begin(defaultArgs_), std::end(defaultArgs_)); std::vector<const char *> args(std::begin(defaultArgs_), std::end(defaultArgs_));
// Add the defines from the qdocconf file. // Add the defines from the qdocconf file.
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment