aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCole Faust <colefaust@google.com>2024-01-09 17:54:49 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2024-01-09 17:54:49 +0000
commit3abcf1d80af40c26639571c7af1f1b3573dcf306 (patch)
tree003f7313aebeb2d6aa14f51fbccf16853eeebd6e
parenteb0d26b5d9f59abe522bcd0e4ffe43187fab7ac9 (diff)
parentcac8f158d4542f5122e23684598861704ae186a7 (diff)
downloadllvm-3abcf1d80af40c26639571c7af1f1b3573dcf306.tar.gz
Merge "Remove recursive rule variable reference" into main
-rw-r--r--soong/tblgen.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/soong/tblgen.go b/soong/tblgen.go
index b0067be36d0a..f1565a406535 100644
--- a/soong/tblgen.go
+++ b/soong/tblgen.go
@@ -37,10 +37,10 @@ var (
tblgenRule = pctx.StaticRule("tblgenRule", blueprint.RuleParams{
Depfile: "${out}.d",
Deps: blueprint.DepsGCC,
- Command: "${llvmTblgen} ${includes} ${genopt} -d ${depfile} -o ${out} ${in}",
+ Command: "${llvmTblgen} ${includes} ${genopt} -d ${out}.d -o ${out} ${in}",
CommandDeps: []string{"${llvmTblgen}"},
Description: "LLVM TableGen $in => $out",
- }, "includes", "depfile", "genopt")
+ }, "includes", "genopt")
)
type tblgenProperties struct {