diff options
author | 2014-03-06 03:38:14 -0800 | |
---|---|---|
committer | 2014-03-06 03:38:14 -0800 | |
commit | 566e944f39ede694fb85944ee7321926ff2dba46 (patch) | |
tree | 00e339f41f4b1381d6171d59a4fc21e1a6187047 /tools | |
parent | e5cac373190d29645c1fc11bd0ca1bfcdaa9f07e (diff) | |
parent | ca0a0da8640d1469cb460120ff0aede2322c6802 (diff) | |
download | latinime-566e944f39ede694fb85944ee7321926ff2dba46.tar.gz latinime-566e944f39ede694fb85944ee7321926ff2dba46.tar.xz latinime-566e944f39ede694fb85944ee7321926ff2dba46.zip |
am ca0a0da8: Switch to C++11
* commit 'ca0a0da8640d1469cb460120ff0aede2322c6802':
Switch to C++11
Diffstat (limited to 'tools')
-rw-r--r-- | tools/dicttool/NativeLib.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/dicttool/NativeLib.mk b/tools/dicttool/NativeLib.mk index 05e5841d3..26b677447 100644 --- a/tools/dicttool/NativeLib.mk +++ b/tools/dicttool/NativeLib.mk @@ -33,6 +33,10 @@ endif #HOST_JDK_IS_64BIT_VERSION LOCAL_CFLAGS += -DHOST_TOOL -fPIC -Wno-deprecated LOCAL_NO_DEFAULT_COMPILER_FLAGS := true +# For C++11 +# TODO: Change this to -std=c++11 +LOCAL_CFLAGS += -std=gnu++0x + LATINIME_NATIVE_JNI_DIR := $(LATINIME_DIR_RELATIVE_TO_DICTTOOL)/native/jni LATINIME_NATIVE_SRC_DIR := $(LATINIME_DIR_RELATIVE_TO_DICTTOOL)/native/jni/src LOCAL_C_INCLUDES := $(LOCAL_PATH)/$(LATINIME_NATIVE_SRC_DIR) |