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.
2 parents 4850d8b + a5a6a4f commit 02e84e0Copy full SHA for 02e84e0
core/BUILD
@@ -38,7 +38,6 @@ cc_library(
38
"static_analysis.cpp",
39
"string_utils.cpp",
40
"vm.cpp",
41
- "//stdlib:std.jsonnet.h",
42
],
43
hdrs = [
44
"ast.h",
@@ -54,6 +53,7 @@ cc_library(
54
53
":common",
55
":lexer",
56
"//include:libjsonnet",
+ "//stdlib:std",
57
58
linkopts = ["-lm"],
59
includes = ["."],
stdlib/BUILD
@@ -1,8 +1,11 @@
1
package(default_visibility = ["//visibility:public"])
2
3
-filegroup(
+cc_library(
4
name = "std",
5
- srcs = ["std.jsonnet"],
+ hdrs = ["std.jsonnet.h"],
6
+ srcs = [":gen-std-jsonnet-h"],
7
+ includes = ["."],
8
+ linkstatic = 1,
9
)
10
11
genrule(
0 commit comments