[compiler-rt] 2f625ae - [ASan] Fix Windows build by excluding asan_rtl_x86_64.S.

Kirill Stoimenov via llvm-commits llvm-commits at lists.llvm.org
Thu Dec 9 15:25:37 PST 2021


Author: Kirill Stoimenov
Date: 2021-12-09T23:25:27Z
New Revision: 2f625ae9e49079b4ba7881022eac4eeddf7cd3f2

URL: https://github.com/llvm/llvm-project/commit/2f625ae9e49079b4ba7881022eac4eeddf7cd3f2
DIFF: https://github.com/llvm/llvm-project/commit/2f625ae9e49079b4ba7881022eac4eeddf7cd3f2.diff

LOG: [ASan] Fix Windows build by excluding asan_rtl_x86_64.S.

Reviewed By: kstoimenov

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

Added: 
    

Modified: 
    compiler-rt/lib/asan/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/compiler-rt/lib/asan/CMakeLists.txt b/compiler-rt/lib/asan/CMakeLists.txt
index fc164a15b7f4..2e63c8d05168 100644
--- a/compiler-rt/lib/asan/CMakeLists.txt
+++ b/compiler-rt/lib/asan/CMakeLists.txt
@@ -24,7 +24,6 @@ set(ASAN_SOURCES
   asan_premap_shadow.cpp
   asan_report.cpp
   asan_rtl.cpp
-  asan_rtl_x86_64.S
   asan_shadow_setup.cpp
   asan_stack.cpp
   asan_stats.cpp
@@ -35,6 +34,7 @@ set(ASAN_SOURCES
 
 if (NOT WIN32 AND NOT APPLE)
   list(APPEND ASAN_SOURCES
+    asan_rtl_x86_64.S
     asan_interceptors_vfork.S
     )
 endif()


        


More information about the llvm-commits mailing list