[COFF] Statically link certain runtime library functions
authorReid Kleckner <rnk@google.com>
Thu, 25 Apr 2019 23:04:20 +0000 (23:04 +0000)
committerReid Kleckner <rnk@google.com>
Thu, 25 Apr 2019 23:04:20 +0000 (23:04 +0000)
commit4730604bd3a361c68b92b18bf73a5daa15afe9f4
treedb94f6dc08de6ec3862298fd1b75a30ed99a5ed1
parent2d6e156e403a48da576550c653d45c24f950f157
[COFF] Statically link certain runtime library functions

Statically link certain runtime library functions for MSVC/GNU Windows
environments. This is consistent with MSVC behavior.

Fixes LNK4286 and LNK4217 warnings from link.exe when linking the static
CRT:
  LINK : warning LNK4286: symbol '__std_terminate' defined in 'libvcruntime.lib(ehhelpers.obj)' is imported by 'ASAN_NOINST_TEST_OBJECTS.asan_noinst_test.cc.x86_64-calls.o'
  LINK : warning LNK4286: symbol '__std_terminate' defined in 'libvcruntime.lib(ehhelpers.obj)' is imported by 'ASAN_NOINST_TEST_OBJECTS.asan_test_main.cc.x86_64-calls.o'
  LINK : warning LNK4217: symbol '_CxxThrowException' defined in 'libvcruntime.lib(throw.obj)' is imported by 'ASAN_NOINST_TEST_OBJECTS.gtest-all.cc.x86_64-calls.o' in function '"int `public: static class UnitTest::GetInstance * __cdecl testing::UnitTest::GetInstance(void)'::`1'::dtor$5" (?dtor$5@?0??GetInstance@UnitTest@testing@@SAPEAV12@XZ@4HA)'

Reviewers: mstorsjo, efriedma, TomTan, compnerd, smeenai, mgrang

Subscribers: abdulras, theraven, smeenai, pcc, mehdi_amini, javed.absar, inglorion, kristof.beyls, dexonsmith, cfe-commits

Differential Revision: https://reviews.llvm.org/D55229

llvm-svn: 359250
clang/lib/CodeGen/CodeGenModule.cpp
clang/test/CodeGen/ms-symbol-linkage.cpp [new file with mode: 0644]
clang/test/CodeGenCXX/runtime-dllstorage.cpp
clang/test/CodeGenObjC/gnu-init.m
clang/test/CodeGenObjCXX/msabi-stret.mm