We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 086370f commit 325a561Copy full SHA for 325a561
llvm/utils/gn/secondary/llvm/tools/llvm-strings/BUILD.gn
@@ -1,6 +1,12 @@
1
import("//llvm/tools/binutils_symlinks.gni")
2
+import("//llvm/utils/TableGen/tablegen.gni")
3
import("//llvm/utils/gn/build/symlink_or_copy.gni")
4
5
+tablegen("Opts") {
6
+ visibility = [ ":llvm-strings" ]
7
+ args = [ "-gen-opt-parser-defs" ]
8
+}
9
+
10
if (llvm_install_binutils_symlinks) {
11
symlink_or_copy("strings") {
12
deps = [ ":llvm-strings" ]
@@ -19,8 +25,10 @@ group("symlinks") {
19
25
20
26
executable("llvm-strings") {
21
27
deps = [
28
+ ":Opts",
22
29
"//llvm/lib/IR",
23
30
"//llvm/lib/Object",
31
+ "//llvm/lib/Option",
24
32
"//llvm/lib/Support",
33
]
34
sources = [ "llvm-strings.cpp" ]
0 commit comments