Merge "Move up to C++14."

This commit is contained in:
Dan Albert 2015-08-10 23:45:48 +00:00 committed by Gerrit Code Review
commit a3c01467ec
6 changed files with 3 additions and 7 deletions

View File

@ -29,7 +29,6 @@ benchmark_cflags := \
-Wunused \
benchmark_cppflags := \
-std=gnu++11 \
benchmarklib_src_files := \
Benchmark.cpp \

View File

@ -623,7 +623,6 @@ libc_common_conlyflags := \
# Define some common cppflags
libc_common_cppflags := \
-std=gnu++11
# Define some common includes
# ========================================================

View File

@ -42,7 +42,6 @@ LOCAL_CONLYFLAGS += \
-std=gnu99 \
LOCAL_CPPFLAGS += \
-std=gnu++11 \
-Wold-style-cast \
ifeq ($(TARGET_IS_64_BIT),true)

View File

@ -23,7 +23,7 @@ LOCAL_MODULE_STEM_64 := $(LOCAL_MODULE)64
LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
LOCAL_CFLAGS += -g -Wall -Wextra -Wunused -Werror -std=gnu++11
LOCAL_CFLAGS += -g -Wall -Wextra -Wunused -Werror
LOCAL_C_INCLUDES := $(LOCAL_PATH)/../../libc/
LOCAL_SRC_FILES := \

View File

@ -46,8 +46,7 @@ else
test_cflags += -DUSE_JEMALLOC
endif
test_cppflags = \
-std=gnu++11 \
test_cppflags := \
libBionicStandardTests_src_files := \
arpa_inet_test.cpp \

View File

@ -17,7 +17,7 @@
LOCAL_PATH := $(call my-dir)
TEST_PATH := $(LOCAL_PATH)/..
common_cppflags += -std=gnu++11
common_cppflags :=
common_additional_dependencies := \
$(LOCAL_PATH)/Android.mk \
$(LOCAL_PATH)/Android.build.dt_runpath.mk \