[PATCH] D60155: [gn] Use "$link /lib" for archives instead of lib.exe
Reid Kleckner via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 3 17:30:50 PDT 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL357660: [gn] Use "$link /lib" for archives instead of lib.exe (authored by rnk, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D60155?vs=193369&id=193634#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D60155/new/
https://reviews.llvm.org/D60155
Files:
llvm/trunk/utils/gn/build/toolchain/BUILD.gn
Index: llvm/trunk/utils/gn/build/toolchain/BUILD.gn
===================================================================
--- llvm/trunk/utils/gn/build/toolchain/BUILD.gn
+++ llvm/trunk/utils/gn/build/toolchain/BUILD.gn
@@ -241,7 +241,7 @@
}
tool("alink") {
- command = "lib /nologo {{arflags}} /out:{{output}} {{inputs}}"
+ command = "$link /lib /nologo {{arflags}} /out:{{output}} {{inputs}}"
description = "LIB {{output}}"
outputs = [
"{{output_dir}}/{{target_output_name}}.lib",
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D60155.193634.patch
Type: text/x-patch
Size: 512 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190404/dca43788/attachment.bin>
More information about the llvm-commits
mailing list