[llvm] a6114ff - [gn build] "port" 71b3bfde9cd2

Nico Weber via llvm-commits llvm-commits at lists.llvm.org
Thu Dec 23 16:52:43 PST 2021


Author: Nico Weber
Date: 2021-12-23T19:52:34-05:00
New Revision: a6114ff0cd6935026f34f1dc7cedfa2057955a8c

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

LOG: [gn build] "port" 71b3bfde9cd2

Added: 
    

Modified: 
    llvm/utils/gn/secondary/compiler-rt/lib/asan/BUILD.gn

Removed: 
    


################################################################################
diff  --git a/llvm/utils/gn/secondary/compiler-rt/lib/asan/BUILD.gn b/llvm/utils/gn/secondary/compiler-rt/lib/asan/BUILD.gn
index de8f33da0bc59..f05168bd57c27 100644
--- a/llvm/utils/gn/secondary/compiler-rt/lib/asan/BUILD.gn
+++ b/llvm/utils/gn/secondary/compiler-rt/lib/asan/BUILD.gn
@@ -99,10 +99,7 @@ target(asan_target_type, "asan") {
     "asan_win.cpp",
   ]
   if (target_os != "mac" && target_os != "win") {
-    sources += [
-      "asan_interceptors_vfork.S",
-      "asan_rtl_x86_64.S",
-    ]
+    sources += [ "asan_interceptors_vfork.S" ]
   }
 
   # To be able to include sanitizer_common.
@@ -200,5 +197,9 @@ source_set("unused") {
     "asan_preinit.cpp",
     "asan_win_dll_thunk.cpp",
     "asan_win_dynamic_runtime_thunk.cpp",
+
+    # FIXME: These are in clang_rt.asan_static in the CMake build.
+    "asan_rtl_static.cpp",
+    "asan_rtl_x86_64.S",
   ]
 }


        


More information about the llvm-commits mailing list