Skip to content

Commit

Permalink
Removed support for c++11=1, we require C++14 as minimum
Browse files Browse the repository at this point in the history
    * ACE/include/makeinclude/platform_gcc_clang_common.GNU:
    * ACE/include/makeinclude/platform_linux_clang.GNU:
    * ACE/include/makeinclude/platform_linux_icc.GNU:
    * ACE/include/makeinclude/platform_qnx_gcc.GNU:
  • Loading branch information
jwillemsen committed Sep 15, 2023
1 parent 4e5ea53 commit 0e37c17
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 13 deletions.
4 changes: 0 additions & 4 deletions ACE/include/makeinclude/platform_gcc_clang_common.GNU
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,6 @@ else
else
ifeq ($(c++14),1)
CCFLAGS += -std=c++14
else
ifeq ($(c++11),1)
CCFLAGS += -std=c++11
endif # c++11
endif # c++14
endif #c++17
endif #c++20
Expand Down
4 changes: 0 additions & 4 deletions ACE/include/makeinclude/platform_linux_clang.GNU
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,6 @@ ifeq ($(optimize),0)
CPPFLAGS += -O0
endif

ifeq ($(c++11),1)
CCFLAGS += -std=c++11
endif

ifeq ($(c++14),1)
CCFLAGS += -std=c++14
endif
Expand Down
4 changes: 0 additions & 4 deletions ACE/include/makeinclude/platform_linux_icc.GNU
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,6 @@ ifeq ($(ipo),1)
CPPFLAGS += -ipo
endif

ifeq ($(c++11),1)
CCFLAGS += -std=c++11
endif

CFLAGS += -w1
ifeq ($(threads),1)
CPPFLAGS += -D_REENTRANT
Expand Down
2 changes: 1 addition & 1 deletion ACE/include/makeinclude/platform_qnx_gcc.GNU
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ SOFLAGS += $(CPPFLAGS) -shared
SOBUILD = $(COMPILE.cc) $(PIC) -o $(VSHDIR)$*.so $<
PRELIB = @true

# Test for template instantiation, add to SOFLAGS if SONAME set,
# Test for template instantiation, add to SOFLAGS if SONAME set,
# add -E to LDFLAGS if using GNU ld
#
include $(ACE_ROOT)/include/makeinclude/platform_g++_common.GNU

0 comments on commit 0e37c17

Please sign in to comment.