Commit 295a915b authored by Joerg Bornemann's avatar Joerg Bornemann
Browse files

fix link error with MSVC


Since qtbase/e88334e0 we must not put MSVC linker flags into LIBS or
LIBS_PRIVATE. QMAKE_LFLAGS is the right place.

This fixes a build error with MSVC:
LINK : fatal error LNK1181: cannot open input file '\OPT:REF.obj'

Change-Id: I2971e412dd8d5cfe8b7aca218d679dd136019dd8
Reviewed-by: default avatarMichael Brüning <michael.bruning@theqtcompany.com>
Showing with 1 addition and 1 deletion
...@@ -22,7 +22,7 @@ osx { ...@@ -22,7 +22,7 @@ osx {
} else:msvc { } else:msvc {
# Simulate -whole-archive by passing the list of object files that belong to the public # Simulate -whole-archive by passing the list of object files that belong to the public
# API library as response file to the linker. # API library as response file to the linker.
LIBS_PRIVATE += /OPT:REF QMAKE_LFLAGS += /OPT:REF
QMAKE_LFLAGS += @$${api_library_path}$${QMAKE_DIR_SEP}$${api_library_name}.lib.objects QMAKE_LFLAGS += @$${api_library_path}$${QMAKE_DIR_SEP}$${api_library_name}.lib.objects
} else { } else {
LIBS_PRIVATE += -Wl,-whole-archive -l$$api_library_name -Wl,-no-whole-archive LIBS_PRIVATE += -Wl,-whole-archive -l$$api_library_name -Wl,-no-whole-archive
......
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