1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
|
# $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
|