diff options
author | Alexey Samsonov <samsonov@google.com> | 2013-04-12 07:18:55 +0000 |
---|---|---|
committer | Alexey Samsonov <samsonov@google.com> | 2013-04-12 07:18:55 +0000 |
commit | 5eacadd64953918cc9d3bcb63387d7e0d20a40d2 (patch) | |
tree | e955f9b2c824282b40ff7c6326a2161b94b647b7 /cmake | |
parent | cf3b55ab18b6d0f5b658e746b57ec3cf193d5688 (diff) |
Don't explicitly provide -pie in MSan bootstrap of LLVM, as it's now implied by the driver
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179367 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/modules/HandleLLVMOptions.cmake | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/cmake/modules/HandleLLVMOptions.cmake b/cmake/modules/HandleLLVMOptions.cmake index 516f2dd9eb..f8a017dcae 100644 --- a/cmake/modules/HandleLLVMOptions.cmake +++ b/cmake/modules/HandleLLVMOptions.cmake @@ -252,8 +252,6 @@ if(LLVM_USE_SANITIZER) elseif (LLVM_USE_SANITIZER MATCHES "Memory(WithOrigins)?") append_common_sanitizer_flags() add_flag_or_print_warning("-fsanitize=memory") - # -pie is required for MSan. - set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -pie") if(LLVM_USE_SANITIZER STREQUAL "MemoryWithOrigins") add_flag_or_print_warning("-fsanitize-memory-track-origins") endif() |