summaryrefslogtreecommitdiff
path: root/include/makeinclude/platform_hpux_aCC.GNU
diff options
context:
space:
mode:
Diffstat (limited to 'include/makeinclude/platform_hpux_aCC.GNU')
-rw-r--r--include/makeinclude/platform_hpux_aCC.GNU38
1 files changed, 0 insertions, 38 deletions
diff --git a/include/makeinclude/platform_hpux_aCC.GNU b/include/makeinclude/platform_hpux_aCC.GNU
deleted file mode 100644
index e8793a8001d..00000000000
--- a/include/makeinclude/platform_hpux_aCC.GNU
+++ /dev/null
@@ -1,38 +0,0 @@
-# $Id$
-#
-# This is for the HP-UX aC++ compiler. Most of the difference for threaded
-# vs. non-threaded is contained in ace/config-hpux-10.x.h. However, there
-# is a line to verify in this file - if you are using DCE threads, "-lcma"
-# needs to be on the SHLIBBUILD line, below. If you are not using DCE threads,
-# then use the SHLIBBUILD without -lcma.
-
-debug = 1
-
-# First, extract the OS version number.
-HPVERS_WORDS := $(subst ., ,$(shell uname -r))
-HPUX_VERS := $(join $(word 2,$(HPVERS_WORDS)),$(word 3,$(HPVERS_WORDS)))
-#
-CC = /bin/cc
-CXX = /opt/aCC/bin/aCC
-CCFLAGS += $(CFLAGS) -D_THREAD_SAFE -D_REENTRANT -DHPUX_VERS=$(HPUX_VERS)
-DCFLAGS += -g
-DLD = $(CXX)
-LD = $(CXX)
-PIC = +Z
-ARFLAGS = ruv
-RANLIB = echo
-LDFLAGS = -Wl,+s
-PRELIB = $(CXX) -c -g +inst_close $^
-PRELIB_USES_OBJ_ONLY = 1
-SOFLAGS = -b +inst_none -g
-SOEXT = sl
-SHLIBBUILD = $(SOLINK.cc) -o $@ $(VSHOBJS) $(LDFLAGS) -lxti -lcma
-#SHLIBBUILD = $(SOLINK.cc) -o $@ $(VSHOBJS) $(LDFLAGS) -lxti
-SOBUILD = @echo ""; \
- echo "$(COMPILE.cc) $(PIC) -o $(VSHDIR)$*.o $<"; \
- $(COMPILE.cc) $(PIC) -o $(VSHDIR)$*.o $<
-
-# No need to instantiate templates in each .o file - wait and do all of
-# them at once with +inst_close
-# echo "$(SOLINK.cc) -o $@ ./$(VSHDIR)$*.o"; \
-# $(SOLINK.cc) -o $@ ./$(VSHDIR)$*.o