diff options
author | Rob Herring <[email protected]> | 2017-05-03 14:35:15 -0500 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2017-05-11 13:52:20 +0100 |
commit | 4eec1cfa8ef250609699c8fc658e8fe58d6fab61 (patch) | |
tree | ff740b904b90d80903cbe5cf746565c90838d292 /src/gallium/drivers/r600/Android.mk | |
parent | f21454eaa57fb930dcd9e602a11385bcb39b58cf (diff) |
Android: remove remaining explicit libcxx includes
Explicitly including libcxx includes is not necessary at least on
Android M and later. It appears that libc++ was made the default in
commit "Make libc++ the default STL." in Android build system post L.
However, if L support is still needed, using "LOCAL_CXX_STL=libc++" is
the preferred way.
Signed-off-by: Rob Herring <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/Android.mk')
-rw-r--r-- | src/gallium/drivers/r600/Android.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gallium/drivers/r600/Android.mk b/src/gallium/drivers/r600/Android.mk index 7be3614c03e..a2fa6236088 100644 --- a/src/gallium/drivers/r600/Android.mk +++ b/src/gallium/drivers/r600/Android.mk @@ -30,8 +30,7 @@ include $(CLEAR_VARS) LOCAL_SRC_FILES := $(C_SOURCES) $(CXX_SOURCES) -LOCAL_C_INCLUDES := $(MESA_TOP)/src/amd/common \ - external/libcxx/include +LOCAL_C_INCLUDES := $(MESA_TOP)/src/amd/common LOCAL_STATIC_LIBRARIES := libmesa_amd_common LOCAL_SHARED_LIBRARIES := libdrm_radeon |