diff options
author | Jonathan Liu <net147@gmail.com> | 2011-04-04 11:01:48 (GMT) |
---|---|---|
committer | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2011-04-04 11:01:56 (GMT) |
commit | a6d48ca57403539ab8e00d16f80bd4cd334e1b5c (patch) | |
tree | c1a33a184fb4b110abc58c6475029cd0f223fd70 /qmake/Makefile.win32-g++-sh | |
parent | 0170a4dd8a720921e591622188bd1f11d9fe357b (diff) | |
download | Qt-a6d48ca57403539ab8e00d16f80bd4cd334e1b5c.zip Qt-a6d48ca57403539ab8e00d16f80bd4cd334e1b5c.tar.gz Qt-a6d48ca57403539ab8e00d16f80bd4cd334e1b5c.tar.bz2 |
win32-g++: Correct the order of linked Windows libraries
On Windows 7, kernel32.dll exports many of the same functions as
advapi32.dll. If executables link to these functions in kernel32.dll
instead of advapi32.dll, running these executables on older versions
of Windows will cause an entry point error. This would occur due to
kernel32 being specified before advapi32.
To resolve this issue, advapi32 is specified before kernel32 when
linking.
Task-number: QTBUG-18537
Merge-request: 1169
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
Diffstat (limited to 'qmake/Makefile.win32-g++-sh')
-rw-r--r-- | qmake/Makefile.win32-g++-sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qmake/Makefile.win32-g++-sh b/qmake/Makefile.win32-g++-sh index 9c7942c..6ca7514 100644 --- a/qmake/Makefile.win32-g++-sh +++ b/qmake/Makefile.win32-g++-sh @@ -28,7 +28,7 @@ CFLAGS = -c -o$@ -O \ -DQT_BOOTSTRAPPED -DQLIBRARYINFO_EPOCROOT CXXFLAGS = $(CFLAGS) LFLAGS = -static-libgcc -static-libstdc++ -s -LIBS = -lole32 -luuid +LIBS = -lole32 -luuid -ladvapi32 -lkernel32 LINKQMAKE = g++ $(LFLAGS) -o qmake.exe $(OBJS) $(QTOBJS) $(LIBS) ADDCLEAN = |