summaryrefslogtreecommitdiff
path: root/ACE/include/makeinclude/platform_linux_pgi.GNU
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/include/makeinclude/platform_linux_pgi.GNU')
-rw-r--r--ACE/include/makeinclude/platform_linux_pgi.GNU48
1 files changed, 0 insertions, 48 deletions
diff --git a/ACE/include/makeinclude/platform_linux_pgi.GNU b/ACE/include/makeinclude/platform_linux_pgi.GNU
deleted file mode 100644
index 9233d146f1d..00000000000
--- a/ACE/include/makeinclude/platform_linux_pgi.GNU
+++ /dev/null
@@ -1,48 +0,0 @@
-# $Id$
-
-# This file should allow ACE to be built on Linux, using the
-# Portland Group PGI compilers
-#
-# This is just a copy of platform_linux.GNU, with a few things changed.
-
-include $(ACE_ROOT)/include/makeinclude/platform_linux_common.GNU
-
-static_libs_only ?= 1
-
-CC ?= pgcc
-CXX ?= pgCC
-
-CFLAGS += --one_instantiation_per_object --prelink_objects -Wc,-tused
-ifeq ($(threads),1)
- CPPFLAGS += -D_REENTRANT $(PLATFORM_AIO_SUPPORT)
-endif # threads
-
-CCFLAGS += $(CFLAGS) $(IMPLICIT_TEMPLATES_FLAG)
-DCFLAGS += -g
-DLD = $(CXX)
-LD = $(CXX)
-LIBS += -ldl
-
-ifeq ($(threads),1)
- LIBS += -lpthread
- ifeq (-DACE_HAS_AIO_CALLS,$(PLATFORM_AIO_SUPPORT))
- LIBS += -lrt
- endif
-endif
-
-OCFLAGS += -O3
-
-SOFLAGS += $(CPPFLAGS) -shared $(PIC) --one_instantiation_per_object --prelink_objects
-SOBUILD = $(COMPILE.cc) $(PIC) --one_instantiation_per_object --prelink_objects -o $(VSHDIR)$*.so $<; \
- $(SOLINK.cc) -o $@ $(LDFLAGS) $(VSHDIR)$*.o
-PRELIB = @true
-
-# Added line below to support "Executable Shared Object" files (as
-# needed by the service configurator).
-# Marius Kjeldahl <mariusk@sn.no, marius@funcom.com>
-ifeq ($(threads),1)
- ESOBUILD = $(COMPILEESO.cc) $(PIC) -shared -o $(VSHDIR)$*.so $<
- ifndef PRELIB
- PRELIB = @true
- endif # ! PRELIB
-endif