From 141af55cca0bad0492786479584e474b3285ab9b Mon Sep 17 00:00:00 2001 From: OBATA Akio Date: Sun, 26 Jul 2020 16:28:09 +0900 Subject: [PATCH] Fix to set libtool special mode-args as a compiler flag Signed-off-by: OBATA Akio --- qmake/generators/unix/unixmake.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qmake/generators/unix/unixmake.cpp b/qmake/generators/unix/unixmake.cpp index a9952afd..1f97210d 100644 --- a/qmake/generators/unix/unixmake.cpp +++ b/qmake/generators/unix/unixmake.cpp @@ -343,7 +343,7 @@ UnixMakefileGenerator::init() if(libtoolify[i].startsWith("QMAKE_LINK") || libtoolify[i] == "QMAKE_AR_CMD") { libtool_flags += " --mode=link"; if(project->isActiveConfig("staticlib")) { - libtool_flags += " -static"; + comp_flags += " -static"; } else { if(!project->isEmpty("QMAKE_LIB_FLAG")) { int maj = project->first("VER_MAJ").toInt(); @@ -363,7 +363,7 @@ UnixMakefileGenerator::init() } } if(project->isActiveConfig("plugin")) - libtool_flags += " -module"; + comp_flags += " -module"; } else { libtool_flags += " --mode=compile"; }