forked from OSchip/llvm-project
[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
This commit is contained in:
parent
6569cf2a44
commit
e8c8ce0974
|
@ -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" ]
|
||||
|
|
Loading…
Reference in New Issue