summaryrefslogtreecommitdiff
path: root/include/makeinclude/platform_g++_common.GNU
diff options
context:
space:
mode:
Diffstat (limited to 'include/makeinclude/platform_g++_common.GNU')
-rw-r--r--include/makeinclude/platform_g++_common.GNU50
1 files changed, 0 insertions, 50 deletions
diff --git a/include/makeinclude/platform_g++_common.GNU b/include/makeinclude/platform_g++_common.GNU
deleted file mode 100644
index 13db5c1e966..00000000000
--- a/include/makeinclude/platform_g++_common.GNU
+++ /dev/null
@@ -1,50 +0,0 @@
-# $Id$
-#
-# Common file help turn on/off explicit template instantiation
-
-CXX_VERSION := $(shell $(CXX) -dumpversion)
-
-# If no option has been specified, try to enable templates based on the
-# version of the compiler.
-#
-ifeq ($(templates),)
- ifeq (2.95,$(findstring 2.95,$(CXX_VERSION)))
- templates = automatic
- else
- ifeq (3.,$(findstring 3.,$(CXX_VERSION)))
- templates = automatic
- else
- ifeq (2.96,$(findstring 2.96,$(CXX_VERSION)))
- templates = automatic
- else
- ifeq (egcs, $(findstring egcs, $(CXX_VERSION)))
- templates = explicit
- else
- templates = explicit
- endif
- endif
- endif
- endif
-endif
-
-# Turn on the proper flags for explicit template instantiation.
-#
-ifeq ($(templates),explicit)
- ifeq ($(TEMPLATES_FLAG),) # Turn on flags if none is speficied.
- TEMPLATES_FLAG=-fno-implicit-templates
- endif
- CPPFLAGS += -DACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION
-endif
-
-# The correct flags to pass to the linker for ELF dynamic shared library
-# versioning
-#
-ifneq ($(SONAME),)
- ifeq ($(with_ld),hpux)
- SOFLAGS += -Wl,+h -Wl,$(SONAME)
- else
- ifneq ($(with_ld),aix)
- SOFLAGS += -Wl,-h -Wl,$(SONAME)
- endif
- endif
-endif