diff options
author | Eric Anholt <[email protected]> | 2017-04-13 15:09:16 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2017-05-02 13:35:23 -0700 |
commit | a373f77662c557662a675139ea6121b05c1f2b72 (patch) | |
tree | 4cb255fbf16e1e81d25201c05ccc5fab9000942e /src/gallium/drivers/vc4/Android.mk | |
parent | 463b7d0332c59d7115642c9922915d097535b4d9 (diff) |
vc4: Use a wrapper file to set VC4_BUILD_NEON instead of CFLAGS.
Android.mk was setting the flag across the entire driver, so we didn't
have non-NEON versions getting built. This was going to be a problem with
the next commit, when I start auto-detecting NEON support and use the
non-NEON version when appropriate.
Reviewed-by: Rob Herring <[email protected]>
Diffstat (limited to 'src/gallium/drivers/vc4/Android.mk')
-rw-r--r-- | src/gallium/drivers/vc4/Android.mk | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/gallium/drivers/vc4/Android.mk b/src/gallium/drivers/vc4/Android.mk index fdc06744e5a..de9d5e3f5b3 100644 --- a/src/gallium/drivers/vc4/Android.mk +++ b/src/gallium/drivers/vc4/Android.mk @@ -25,8 +25,6 @@ include $(LOCAL_PATH)/Makefile.sources include $(CLEAR_VARS) -LOCAL_CFLAGS_arm := -DVC4_BUILD_NEON - LOCAL_SRC_FILES := \ $(C_SOURCES) |