blob: 2c77f7aac917c30c30358fdf5304a5e94969d0fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
executable("c-arcmt-test") {
configs += [ "//llvm/utils/gn/build:clang_code" ]
deps = [
"//clang/tools/libclang",
]
sources = [
"c-arcmt-test.c",
]
# See comment at top of clang/tools/libclang/BUILD.gn for why this isn't
# needed on Linux.
if (host_os == "mac") {
ldflags = [ "-Wl,-rpath,@loader_path/../lib" ]
}
}
|