[gn build] Port a928d127a5

This commit is contained in:
LLVM GN Syncbot 2020-01-28 18:39:09 +00:00
parent 987aa3435f
commit e7d5a8d0b4
1 changed files with 6 additions and 1 deletions

View File

@ -29,7 +29,9 @@ if (llvm_install_binutils_symlinks) {
}
foreach(target, symlinks) {
symlink_or_copy(target) {
deps = [ ":llvm-objcopy" ]
deps = [
":llvm-objcopy",
]
source = "llvm-objcopy"
output = "$root_out_dir/bin/$target"
}
@ -70,5 +72,8 @@ executable("llvm-objcopy") {
"MachO/MachOWriter.cpp",
"MachO/Object.cpp",
"llvm-objcopy.cpp",
"wasm/Reader.cpp",
"wasm/WasmObjcopy.cpp",
"wasm/Writer.cpp",
]
}