diff options
author | Nico Weber <thakis@chromium.org> | 2021-06-22 22:21:18 -0400 |
---|---|---|
committer | Nico Weber <thakis@chromium.org> | 2021-06-22 22:21:20 -0400 |
commit | e8c8ce0974edca7bc21ce53826ff7b2c0456d70a (patch) | |
tree | c86908da7bc7263c0b5cee479f6a1bf621951afa | |
parent | 6569cf2a44bf95106e7168bdb79c4674742708fa (diff) | |
download | llvm-e8c8ce0974edca7bc21ce53826ff7b2c0456d70a.zip llvm-e8c8ce0974edca7bc21ce53826ff7b2c0456d70a.tar.gz llvm-e8c8ce0974edca7bc21ce53826ff7b2c0456d70a.tar.bz2 |
[gn build] don't build ubsan_minimal on mac
It doesn't build there, see http://45.33.8.238/macm1/12180/step_4.txt
-rw-r--r-- | llvm/utils/gn/secondary/compiler-rt/lib/BUILD.gn | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/llvm/utils/gn/secondary/compiler-rt/lib/BUILD.gn b/llvm/utils/gn/secondary/compiler-rt/lib/BUILD.gn index eff5bfe..ce32282 100644 --- a/llvm/utils/gn/secondary/compiler-rt/lib/BUILD.gn +++ b/llvm/utils/gn/secondary/compiler-rt/lib/BUILD.gn @@ -1,13 +1,15 @@ group("lib") { deps = [ "//compiler-rt/lib/profile" ] if (current_os == "linux") { - deps += [ "//compiler-rt/lib/msan" ] + deps += [ + "//compiler-rt/lib/msan", + "//compiler-rt/lib/ubsan_minimal", + ] } if (current_os != "win") { deps += [ "//compiler-rt/lib/asan", "//compiler-rt/lib/builtins", - "//compiler-rt/lib/ubsan_minimal", ] if (current_cpu == "x64" || current_cpu == "arm64") { deps += [ "//compiler-rt/lib/tsan" ] |