summaryrefslogtreecommitdiffstats
path: root/src/freedreno
diff options
context:
space:
mode:
authorJohn Stultz <[email protected]>2019-07-03 22:37:45 +0000
committerJohn Stultz <[email protected]>2019-08-07 02:18:19 +0000
commit96baf052b2001bb9adf8d7eced411cd124060384 (patch)
treed0e985b6bc118d0805e834047a743a887c241014 /src/freedreno
parent16edd56fccad7ba0e1b938a60f0f5e927a104585 (diff)
mesa: Add ir3/ir3_nir_imul.c generation to Android.mk
With current master we're seeing build failures with AOSP: error: undefined symbol: ir3_nir_lower_imul This is due to the ir3_nir_imul.c file not being generated in the Android.mk files. This patch simply adds it to the Android build, after which thigns build and book ok on db410c. Cc: Rob Clark <[email protected]> Cc: Emil Velikov <[email protected]> Cc: Amit Pundir <[email protected]> Cc: Sumit Semwal <[email protected]> Cc: Alistair Strachan <[email protected]> Cc: Greg Hartman <[email protected]> Cc: Tapani Pälli <[email protected]> Reviewed-by: Rob Clark <[email protected]> Reviewed-by: Eric Anholt <[email protected]> Signed-off-by: John Stultz <[email protected]>
Diffstat (limited to 'src/freedreno')
-rw-r--r--src/freedreno/Makefile.sources3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/freedreno/Makefile.sources b/src/freedreno/Makefile.sources
index 5b983266a62..cf3ac7bdba4 100644
--- a/src/freedreno/Makefile.sources
+++ b/src/freedreno/Makefile.sources
@@ -48,4 +48,5 @@ ir3_SOURCES := \
ir3/ir3_sun.c
ir3_GENERATED_FILES := \
- ir3/ir3_nir_trig.c
+ ir3/ir3_nir_trig.c \
+ ir3/ir3_nir_imul.c