diff options
author | Ramakant Singh <ramakant@codeaurora.org> | 2019-10-18 10:34:35 +0530 |
---|---|---|
committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2019-10-21 04:11:41 -0700 |
commit | baf3c5023f4fecc1f4c18c25da9959c3d5bfc7ca (patch) | |
tree | 508ecdf97a289cc3fb49572b2cccb0e6ace9e144 /libdrmutils | |
parent | 1fd52d423fdddda61bdf8b8550c54f2ea7b12ff6 (diff) |
display: Remove C++ standard flags
Some headers included by display modules require c++17 now in newer
builds. Remove the forced standard setting to let the build pick
the latest C++ version
Change-Id: I76f9e0c03ce08100c3dd7caf5932eaa941fff0c8
Diffstat (limited to 'libdrmutils')
-rw-r--r-- | libdrmutils/Android.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdrmutils/Android.mk b/libdrmutils/Android.mk index 97c052b1..172233f9 100644 --- a/libdrmutils/Android.mk +++ b/libdrmutils/Android.mk @@ -8,7 +8,7 @@ LOCAL_C_INCLUDES := external/libdrm \ $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr/include LOCAL_HEADER_LIBRARIES := display_headers LOCAL_SHARED_LIBRARIES := libdrm libdl libdisplaydebug -LOCAL_CFLAGS := -DLOG_TAG=\"DRMUTILS\" -Wall -std=c++11 -Werror -fno-operator-names +LOCAL_CFLAGS := -DLOG_TAG=\"DRMUTILS\" -Wall -Werror -fno-operator-names LOCAL_CLANG := true LOCAL_ADDITIONAL_DEPENDENCIES := $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr LOCAL_SRC_FILES := drm_master.cpp drm_res_mgr.cpp drm_lib_loader.cpp |