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 ca8b14d commit f94df98Copy full SHA for f94df98
llvm/utils/gn/secondary/llvm/test/BUILD.gn
@@ -266,6 +266,7 @@ group("test") {
266
"//llvm/tools/llvm-cat",
267
"//llvm/tools/llvm-cfi-verify",
268
"//llvm/tools/llvm-cov",
269
+ "//llvm/tools/llvm-ctxprof-util",
270
"//llvm/tools/llvm-cvtres",
271
"//llvm/tools/llvm-cxxdump",
272
"//llvm/tools/llvm-cxxfilt",
llvm/utils/gn/secondary/llvm/tools/llvm-ctxprof-util/BUILD.gn
@@ -0,0 +1,11 @@
1
+import("//llvm/utils/gn/build/driver_executable.gni")
2
+
3
+driver_executable("llvm-ctxprof-util") {
4
+ deps = [
5
+ "//llvm/lib/IR",
6
+ "//llvm/lib/Object",
7
+ "//llvm/lib/ProfileData",
8
+ "//llvm/lib/Support",
9
+ ]
10
+ sources = [ "llvm-ctxprof-util.cpp" ]
11
+}
0 commit comments