summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2023-02-20 16:28:53 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2023-02-20 16:28:53 +0100
commit9740e05c8e2f2c906444bf6b4ae01dd24e39cf39 (patch)
tree2b3cbce96082b1695e2c5a4151d324a5d251d121
parent46e095cc536cb302af7bef33c79f3c93977df343 (diff)
downloadATCD-9740e05c8e2f2c906444bf6b4ae01dd24e39cf39.tar.gz
Enable C++14 for clang 5/6/7/8
* ACE/include/makeinclude/platform_linux_clang.GNU:
-rw-r--r--ACE/include/makeinclude/platform_linux_clang.GNU16
1 files changed, 12 insertions, 4 deletions
diff --git a/ACE/include/makeinclude/platform_linux_clang.GNU b/ACE/include/makeinclude/platform_linux_clang.GNU
index 1bc22c06a02..48a5e346241 100644
--- a/ACE/include/makeinclude/platform_linux_clang.GNU
+++ b/ACE/include/makeinclude/platform_linux_clang.GNU
@@ -18,10 +18,18 @@ else
CXX_MAJOR_VERSION := $(shell $(CXX) -dumpversion | sed -e 's/[^0-9\.]//g' | sed -e 's/\..*$$//')
endif
-# clang5 has C++03 as default C++ version, enable this to be C++11
-# the older clang versions all return 4.2.1 as part of dumpversion
-ifeq ($(findstring $(CXX_MAJOR_VERSION),4),$(CXX_MAJOR_VERSION))
- c++11 ?= 1
+# clang5/6/7/8 have C++11 as default C++ version, enable this to be C++14
+ifeq ($(findstring $(CXX_MAJOR_VERSION),5),$(CXX_MAJOR_VERSION))
+ c++14 ?= 1
+endif
+ifeq ($(findstring $(CXX_MAJOR_VERSION),6),$(CXX_MAJOR_VERSION))
+ c++14 ?= 1
+endif
+ifeq ($(findstring $(CXX_MAJOR_VERSION),7),$(CXX_MAJOR_VERSION))
+ c++14 ?= 1
+endif
+ifeq ($(findstring $(CXX_MAJOR_VERSION),8),$(CXX_MAJOR_VERSION))
+ c++14 ?= 1
endif
CCFLAGS += $(CFLAGS)