summaryrefslogtreecommitdiff
path: root/include/makeinclude/platform_aix4_g++.GNU
diff options
context:
space:
mode:
Diffstat (limited to 'include/makeinclude/platform_aix4_g++.GNU')
-rw-r--r--include/makeinclude/platform_aix4_g++.GNU63
1 files changed, 0 insertions, 63 deletions
diff --git a/include/makeinclude/platform_aix4_g++.GNU b/include/makeinclude/platform_aix4_g++.GNU
deleted file mode 100644
index 9da6ad1d96e..00000000000
--- a/include/makeinclude/platform_aix4_g++.GNU
+++ /dev/null
@@ -1,63 +0,0 @@
-# $Id$
-#
-# Platform macros for building on AIX 4.x with g++. This has been tested on
-# AIX 4.3 with egcs 1.1.2.
-#
-# Original contributed by Ian Wright <I.Wright@elsevier.co.uk>. Updated for
-# AIX 4 and egcs by Steve Huston <shuston@riverace.com>.
-
-
-ifeq (,$(debug))
- debug = 1
-endif
-ifeq (,$(distrib))
- distrib = 0
-endif
-ifeq (,$(optimize))
- optimize = 0
-endif
-ifeq (,$(threads))
- threads = 1
-endif
-
-# In case anything here or in the config depends on OS version number,
-# grab it here and pass it all to the compiler as well.
-AIX_MAJOR_VERS := $(shell uname -v)
-AIX_MINOR_VERS := $(shell uname -r)
-
-CC = gcc
-CXX = g++
-CFLAGS += -W -Wall -pipe -mcpu=common -DACE_AIX_MAJOR_VERS=$(AIX_MAJOR_VERS) -DACE_AIX_MINOR_VERS=$(AIX_MINOR_VERS)
-ifeq ($(threads),1)
-CFLAGS += -mthreads
-endif
-CCFLAGS += $(CFLAGS) -fno-implicit-templates
-DCFLAGS += -g
-DLD = $(CXX)
-LD = $(CXX)
-LDFLAGS += -Wl,-bI:/lib/pse.exp
-# Linking TAO_IDL runs out of TOC space unless -bbigtoc is given to ld.
-# Don't do it for everything because it decreases run-time performance.
-ifeq ($(notdir $(shell pwd)), TAO_IDL)
-LDFLAGS += -Wl,-bbigtoc
-endif
-OCFLAGS = -O2
-OCCFLAGS = $(OCFLAGS)
-ifeq ($(threads),1)
-SOFLAGS += -mthreads
-endif
-SOFLAGS += -shared -Wl,-bexpall # -Wl,-bloadmap:lib.map
-LIBS += -ltli_r -ldl
-ARFLAGS = cruv
-RANLIB = ranlib
-
-# On AIX, shared libraries are not generally left in .so form to link against.
-# To do so requires the run-time linker and that is an unnecessary evil.
-# So build the .so as usual, but then put in an archive library to link
-# against. The archive lib is the one installed for run-time use also, though
-# if you want to use ACE's dynamic loading features, you'll also need the
-# .so file.
-ifeq ($(shared_libs),1)
-ACELIB = -lACEshr
-SHLIBA = $(SHLIB:lib%.so=lib%shr.a)
-endif