r190516 - Fix the ASan dll_thunk path
Timur Iskhodzhanov
timurrrr at google.com
Wed Sep 11 04:45:31 PDT 2013
Author: timurrrr
Date: Wed Sep 11 06:45:31 2013
New Revision: 190516
URL: http://llvm.org/viewvc/llvm-project?rev=190516&view=rev
Log:
Fix the ASan dll_thunk path
Modified:
cfe/trunk/lib/Driver/Tools.cpp
cfe/trunk/test/Driver/cl-link.c
Modified: cfe/trunk/lib/Driver/Tools.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Driver/Tools.cpp?rev=190516&r1=190515&r2=190516&view=diff
==============================================================================
--- cfe/trunk/lib/Driver/Tools.cpp (original)
+++ cfe/trunk/lib/Driver/Tools.cpp Wed Sep 11 06:45:31 2013
@@ -6613,8 +6613,7 @@ void visualstudio::Link::ConstructJob(Co
SmallString<128> LibSanitizer(getToolChain().getDriver().ResourceDir);
llvm::sys::path::append(LibSanitizer, "lib", "windows");
if (DLL) {
- // FIXME: Not sure what the final name of the thunk lib is.
- llvm::sys::path::append(LibSanitizer, "clang_rt.asan-i386-dll_thunk.lib");
+ llvm::sys::path::append(LibSanitizer, "clang_rt.asan_dll_thunk-i386.lib");
} else {
llvm::sys::path::append(LibSanitizer, "clang_rt.asan-i386.lib");
}
Modified: cfe/trunk/test/Driver/cl-link.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Driver/cl-link.c?rev=190516&r1=190515&r2=190516&view=diff
==============================================================================
--- cfe/trunk/test/Driver/cl-link.c (original)
+++ cfe/trunk/test/Driver/cl-link.c Wed Sep 11 06:45:31 2013
@@ -29,5 +29,5 @@
// ASAN-DLL: "-dll"
// ASAN-DLL: "-debug"
// ASAN-DLL: "-incremental:no"
-// ASAN-DLL: "{{.*}}clang_rt.asan-i386-dll_thunk.lib"
+// ASAN-DLL: "{{.*}}clang_rt.asan_dll_thunk-i386.lib"
// ASAN-DLL: "{{.*}}cl-link{{.*}}.obj"
More information about the cfe-commits
mailing list