diff options
author | Rob Clark <[email protected]> | 2016-11-30 14:01:12 -0500 |
---|---|---|
committer | Rob Clark <[email protected]> | 2016-11-30 17:32:54 -0500 |
commit | ef30e91fe657438828a9a41b5da1170ceee2d913 (patch) | |
tree | c36cacfbdd8dd326d11444fe0c06b6394c86f7dd /src/gallium/drivers/freedreno/Android.mk | |
parent | 8b6f8f2576e3358d3da9c072d134f40e9a3332fc (diff) |
freedreno: fix android build with a5xx
Android doesn't build all the files that normal linux/autotools build
does (mainly standalond ir3_compiler).. but possibly we should pull
C_SOURCES + aNxx_SOURCES into a single variable picked up by both
Android.mk and Makefile.am? (Suggested by Rob H.)
Signed-off-by: Rob Clark <[email protected]>
Diffstat (limited to 'src/gallium/drivers/freedreno/Android.mk')
-rw-r--r-- | src/gallium/drivers/freedreno/Android.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/freedreno/Android.mk b/src/gallium/drivers/freedreno/Android.mk index e901b366712..5c97d9ef290 100644 --- a/src/gallium/drivers/freedreno/Android.mk +++ b/src/gallium/drivers/freedreno/Android.mk @@ -30,6 +30,7 @@ LOCAL_SRC_FILES := \ $(a2xx_SOURCES) \ $(a3xx_SOURCES) \ $(a4xx_SOURCES) \ + $(a5xx_SOURCES) \ $(ir3_SOURCES) #LOCAL_CFLAGS := \ |