summaryrefslogtreecommitdiff
path: root/include/makeinclude/platform_lynxos.GNU
diff options
context:
space:
mode:
Diffstat (limited to 'include/makeinclude/platform_lynxos.GNU')
-rw-r--r--include/makeinclude/platform_lynxos.GNU142
1 files changed, 0 insertions, 142 deletions
diff --git a/include/makeinclude/platform_lynxos.GNU b/include/makeinclude/platform_lynxos.GNU
deleted file mode 100644
index 717c4d25b04..00000000000
--- a/include/makeinclude/platform_lynxos.GNU
+++ /dev/null
@@ -1,142 +0,0 @@
-# $Id$
-#
-# LynxOS with g++. Defaults to LynxOS Version 3.0.0. For Version 3.1.0,
-# for example, add "VERSION=3.1.0" to your make invocation.
-
-#### NOTE: It's best to create a file that includes this one, instead
-#### of symlinking it. That way, you can easily override the default
-#### configuration. For example, to configure for a PowerPC target, I
-#### use a include/makeinclude/platform_macros.GNU that contains the
-#### following lines (without comment markers):
-####
-#### LYNXTARGET = ppc
-#### include $(ACE_ROOT)/include/makeinclude/platform_lynxos.GNU
-####
-#### Similarly, the default VERSION and HOST_OS settings (see below)
-#### can be overridden for your particular platform.
-
-
-ifeq ($(debug),)
- debug = 1
-endif
-ifeq ($(shared_libs_only),1)
- shared_libs = 1
- static_libs =
-endif
-ifeq ($(static_libs_only),1)
- shared_libs =
- static_libs = 1
-endif
-
-#### optimize is defined below because it is version-dependent.
-
-ifneq ($(shell uname -s),LynxOS)
- CROSS-COMPILE = 1
-
- PACE_SYSNAME = LynxOS
-
- #### The following may need to be customized for your host or target type.
- #### Or, you can source the appropriate (for your shell) Lynx SETUP file
- #### before running "make".
-
- ifeq (,$(VERSION))
- export VERSION=3.0.0
- endif # VERSION
-
- PACE_SYSVER = 0x$(VERSION)
-
- ifeq (,$(LYNXTARGET))
- export LYNXTARGET = x86
- endif # LYNXTARGET
-
- ifeq (,$(OBJSFORMAT))
- ifeq (x86,$(LYNXTARGET))
- OBJSFORMAT = coff
- else # ! x86
- OBJSFORMAT = xcoff
- endif # ! x86
- export OBJSFORMAT
- endif # OBJSFORMAT
-
- ifeq (,$(HOST_OS))
- export HOST_OS = sunos
- endif # HOST_OS
-
- ifeq (,$(HOST_OS_REVISION))
- #### Added for 3.1.0
- export HOST_OS_REVISION = `uname -r`
- endif # HOST_OS_REVISION
-
- ifeq (,$(HOST_OS_TYPE))
- #### Added for 3.1.0
- export HOST_OS_TYPE = solaris
- endif # HOST_OS_TYPE
-
- ifeq (,$(ENV_PREFIX))
- export ENV_PREFIX = /usr/lynx/$(VERSION)/$(LYNXTARGET)
- endif # ENV_PREFIX
-
- ifeq (,$(findstring $(ENV_PREFIX),$(PATH)))
- export PATH:=\
-$(ENV_PREFIX)/cdk/$(HOST_OS)-$(OBJSFORMAT)-$(LYNXTARGET)/bin:$(ENV_PREFIX)/cdk/$(HOST_OS)-$(OBJSFORMAT)-$(LYNXTARGET)/usr/bin:$(PATH)
- endif # PATH
-endif # ! LynxOS
-
-ifeq (2.5.0,$(VERSION))
- # NOTE: On LynxOS Version 2.5.0, optimization causes these warnings:
- # warning: internal compiler error: debugging info corrupted
- optimize = 0
- ACE_HAS_GNUG_PRE_2_8 = 1
-else
- ifeq ($(optimize),)
- optimize = 1
- endif
-
- #### Even though the g++ version is 2.7-97r1, it supports nested
- #### classes, so it can build the TAO tests.
- ACE_HAS_GNUG_PRE_2_8 = 0
-endif # VERSION
-
-PLATFORM_XT_CPPFLAGS=
-PLATFORM_XT_LIBS=-lXm -lXt
-PLATFORM_XT_LDFLAGS=
-
-PLATFORM_X11_CPPFLAGS=
-PLATFORM_X11_LIBS=-lXpm -lXext -lX11 -lSM -lICE
-PLATFORM_X11_LDFLAGS=
-
-pipes ?= 1
-
-CC = gcc
-CXX = g++
-CFLAGS += -mthreads -Wpointer-arith -Wall
-#### -Winline complains a lot with -O2.
-#### CFLAGS += -Winline
-
-DCFLAGS += -g
-PIC = -fPIC
-DLD = $(CXX)
-LD = $(CXX)
-LIBS += -lnetinet -lnsl
-OCFLAGS += -O2
-AR = ar
-ARFLAGS = ruv
-RANLIB = @true
-SOFLAGS += $(CPPFLAGS) -shared
-SOBUILD = $(COMPILE.cc) $(PIC) -o $(VSHDIR)$*.so $<; \
- $(SOLINK.cc) -o $@ $(LDFLAGS) $(VSHDIR)$*.o
-PRELIB = @true
-
-# Test for template instantiation, add to SOFLAGS if SONAME set,
-# add -E to LDFLAGS if using GNU ld
-#
-include $(ACE_ROOT)/include/makeinclude/platform_g++_common.GNU
-
-CCFLAGS += $(CFLAGS) $(TEMPLATES_FLAG)
-
-# To save much disk space, strip all executables. Comment the
-# following line out if you want to debug. Or, add "POSTLINK="
-# to your make invocation.
-ifeq ($(static_libs),1)
- POSTLINK = ; strip $@
-endif