aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSpandan Das <spandandas@google.com>2021-06-22 23:20:29 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2021-06-22 23:20:29 +0000
commit340a01ef4f3b63b0318af76128b6d9b038fa61e8 (patch)
treeef29511fc930a28ce99342780c679b7cbae23001
parentbc9c4103f6b3016e4526a4ca4d5605a538c3e1ee (diff)
parent3b77a5efd66f3be225fa7ebca792643a2829be15 (diff)
downloadmesa3d-340a01ef4f3b63b0318af76128b6d9b038fa61e8.tar.gz
Merge "Generate parser file in out/ instead of root of source tree" am: fbd7f08ae7 am: 3b77a5efd6android-s-v2-preview-2android-s-v2-preview-1android-s-v2-beta-2android-s-v2-preview-1
Original change: https://android-review.googlesource.com/c/platform/external/mesa3d/+/1740054 Change-Id: I0255e67254762f406105b2df816dfedd25d4ca69
-rw-r--r--src/freedreno/Android.ir3.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/freedreno/Android.ir3.mk b/src/freedreno/Android.ir3.mk
index 50ad0faf8c9..c46564e55af 100644
--- a/src/freedreno/Android.ir3.mk
+++ b/src/freedreno/Android.ir3.mk
@@ -96,8 +96,8 @@ $(intermediates)/ir3/ir3_parser.c: $(ir3_parser_deps) $(BISON) $(BISON_DATA) $(M
$(intermediates)/ir3/ir3_parser.h: $(ir3_parser_deps) $(BISON) $(BISON_DATA) $(M4)
@mkdir -p $(dir $@)
@echo "Gen Header: $(PRIVATE_MODULE) <= $(notdir $(@))"
- $(hide) $(BISON) $< --name-prefix=ir3_yy --defines=$@
- $(hide) M4=$(M4) $(BISON) $< --name-prefix=ir3_yy --defines=$@
+ $(hide) $(BISON) $< --name-prefix=ir3_yy --defines=$@ --output=$@.tab.c
+ $(hide) M4=$(M4) $(BISON) $< --name-prefix=ir3_yy --defines=$@ --output=$@.tab.c
include $(MESA_COMMON_MK)
include $(BUILD_STATIC_LIBRARY)