aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJonathan Yong <10walls@gmail.com>2020-05-30 03:53:16 +0000
committerJonathan Yong <10walls@gmail.com>2020-05-30 04:03:57 +0000
commit850533ab160ef40eccfd039e1e3b138cf26e76b8 (patch)
tree4947f8b3bc6b3be085d29a1d5319164b5776908a /gcc
parentaef6e234a8a78db39b4ba034cc4c100c07c294a7 (diff)
downloadgcc-850533ab160ef40eccfd039e1e3b138cf26e76b8.zip
gcc-850533ab160ef40eccfd039e1e3b138cf26e76b8.tar.gz
gcc-850533ab160ef40eccfd039e1e3b138cf26e76b8.tar.bz2
gcc/config/i386/mingw32.h: Ensure `-lmsvcrt` precede `-lkernel32`
This is necessary as libmsvcrt.a is not a pure import library, but also contains some functions that invoke others in KERNEL32.DLL. gcc/ * config/i386/mingw32.h (REAL_LIBGCC_SPEC): Insert -lkernel32 after -lmsvcrt. This is necessary as libmsvcrt.a is not a pure import library, but also contains some functions that invoke others in KERNEL32.DLL. Signed-off-by: Liu Hao <lh_mouse@126.com> Signed-off-by: Jonathan Yong <10walls@gmail.com>
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/i386/mingw32.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/i386/mingw32.h b/gcc/config/i386/mingw32.h
index 1bbabfe..321c30e 100644
--- a/gcc/config/i386/mingw32.h
+++ b/gcc/config/i386/mingw32.h
@@ -165,7 +165,7 @@ along with GCC; see the file COPYING3. If not see
#define REAL_LIBGCC_SPEC \
"%{mthreads:-lmingwthrd} -lmingw32 \
" SHARED_LIBGCC_SPEC " \
- -lmoldname -lmingwex -lmsvcrt"
+ -lmoldname -lmingwex -lmsvcrt -lkernel32"
#undef STARTFILE_SPEC
#define STARTFILE_SPEC "%{shared|mdll:dllcrt2%O%s} \