summaryrefslogtreecommitdiff
path: root/include/makeinclude/platform_sunos5_x86_g++.GNU
diff options
context:
space:
mode:
Diffstat (limited to 'include/makeinclude/platform_sunos5_x86_g++.GNU')
-rw-r--r--include/makeinclude/platform_sunos5_x86_g++.GNU23
1 files changed, 0 insertions, 23 deletions
diff --git a/include/makeinclude/platform_sunos5_x86_g++.GNU b/include/makeinclude/platform_sunos5_x86_g++.GNU
deleted file mode 100644
index e95b7f53893..00000000000
--- a/include/makeinclude/platform_sunos5_x86_g++.GNU
+++ /dev/null
@@ -1,23 +0,0 @@
-# SunOS 5.x (Solaris 2.x) with g++ *not* using Orbix
-#
-# SOBUILD - compile into .so directly
-#
-CC = gcc
-CXX = gcc -I. -fno-strict-prototypes -D__ACE_INLINE__ # -frepo
-DLD = $(CXX)
-LD = $(CXX)
-LDFLAGS += -L $(WRAPPER_ROOT)/ace -L ./ # -z muldefs
-LIBS += -lsocket -ldl -lstdc++ -lgen -lnsl -lthread -lw -lm
-PIC = -fpic
-AR = ar
-ARFLAGS = ruv
-RANLIB = /bin/true
-SOFLAGS = -G $(CPPFLAGS)
-SOBUILD = $(COMPILE.cc) $(PIC) -o $(VSHDIR)$*.so $<
-# SOLINK = cp $< $@
-# SOLINK = ln -s $< $@
-# SOLINK = $(SOLINK.cc) -o $@ $(LDFLAGS) $<
-PRELIB = (echo "int main() { return 0; }" > gcctemp.c && \
- $(COMPILE.cc) -o gcctemp.o gcctemp.c && \
- $(LINK.cc) -o gcctemp gcctemp.o $^ $(LDFLAGS) $(LIBS); \
- status=$$?; rm -f gcctemp*; exit $$status)