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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
|
dnl -------------------------------------------------------------------------
dnl $Id$
dnl
dnl compiler.m4
dnl
dnl ACE M4 include file which contains ACE specific M4 macros
dnl that set/determine compiler configurations for ACE.
dnl
dnl -------------------------------------------------------------------------
dnl Copyright (C) 1998, 1999 Ossama Othman
dnl
dnl All Rights Reserved
dnl
dnl This library is free software; you can redistribute it and/or
dnl modify it under the current ACE distribution terms.
dnl
dnl This library is distributed in the hope that it will be useful,
dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
dnl Macros to set flags for a given compiler on a given platform.
dnl The flags set here are generally only useful for _KNOWN_ compilers.
dnl ACE_SET_COMPILER_FLAGS
dnl Usage: ACE_SET_COMPILER_FLAGS
AC_DEFUN(ACE_SET_COMPILER_FLAGS, dnl
[
AC_BEFORE([$0], [AM_PROG_LIBTOOL]) dnl
dnl Make sure we know what C++ compiler and preprocessor we have!
AC_REQUIRE([AC_PROG_CXX])
AC_REQUIRE([AC_PROG_CXXCPP])
AC_REQUIRE([AC_LANG_CPLUSPLUS])
if test -n "$GXX"; then
dnl Temporarily change M4 quotes to prevent "regex []" from being eaten
changequote(, )dnl
if $GXX --version | egrep -v '^2\.[0-7]' > /dev/null; then
changequote([, ])dnl
: # Do nothing
else
AC_DEFINE(ACE_HAS_GNUG_PRE_2_8)dnl
AC_DEFINE(ACE_HAS_GNUC_BROKEN_TEMPLATE_INLINE_FUNCTIONS)dnl
fi
fi
dnl Compiler Flag Key
dnl CXXFLAGS - C++ flags to use during the configure script run and
dnl during ACE compilation. The user may set this prior to
dnl running the configure script. As such, it is important
dnl not to replace the existing value of CXXFLAGS; rather
dnl one should only add to it.
dnl ACE_CXXFLAGS
dnl - General C++ flags the configure script should set before
dnl CXXFLAGS to allow the user override them.
dnl DCXXFLAGS - C++ debugging flags
dnl OCXXFLAGS - C++ optimization flags
dnl CPPFLAGS - C++ preprocessor flags
dnl ACE_CPPFLAGS
dnl - General C++ preprocessor flags the configure
dnl script should set before CPPFLAGS to allow the
dnl user override them.
dnl WERROR - Compiler flag that converts warnings to errors
if test -n "$GXX"; then
WERROR="-Werror"
fi
case "$target" in
*aix*)
dnl In case anything here or in the config depends on OS
dnl version number, grab it here and pass it all to the
dnl compiler as well.
AIX_MAJOR_VERS=`uname -v`
AIX_MINOR_VERS=`uname -r`
ACE_CPPFLAGS="$ACE_CPPFLAGS -DACE_AIX_MAJOR_VERS=$AIX_MAJOR_VERS"
ACE_CPPFLAGS="$ACE_CPPFLAGS -DACE_AIX_MINOR_VERS=$AIX_MINOR_VERS"
case "$CXX" in
xlC*)
dnl IBM C/C++ compiler 3.6.x produces a bazillion warnings about
dnl 0-valued preprocessor defs. Since both 3.1 and 3.4 could
dnl be installed, don't ask lslpp for one or the
dnl other. Instead, compile a file and see which compiler the
dnl user has set up for use. This trick was submitted by
dnl Craig Rodrigues <rodrigc@mediaone.net>, originally from
dnl the vacpp compiler newsgroup. It relies on the
dnl preprocessor defining __xlC__ to the proper version
dnl number of the compiler.
AC_EGREP_CPP(0x0306,
[
__xlC__
],
[
CXXFLAGS="$CXXFLAGS -qflag=e:e"
],
[
CXXFLAGS="$CXXFLAGS -qflag=w:w"
])
;;
esac
;;
esac
case "$target" in
*aix4.2* | *aix4.3*)
case "$CXX" in
xlC*)
CXXFLAGS="$CXXFLAGS"
ACE_CXXFLAGS="$ACE_CXXFLAGS "
DCXXFLAGS="-g -qcheck=nobounds:div:null"
OCXXFLAGS="-qarch=com"
CPPFLAGS="$CPPFLAGS -qlanglvl=ansi"
;;
*)
if test -n "$GXX"; then
ACE_CXXFLAGS="-mcpu=common"
fi
;;
esac
;;
*aix4.1*)
case "$CXX" in
xlC*)
CXXFLAGS="$CXXFLAGS"
ACE_CXXFLAGS="$ACE_CXXFLAGS -qxcall -qtempinc"
DCXXFLAGS="-g"
OCXXFLAGS="-qarch=ppc -qtune=604"
;;
*)
if test -n "$GXX"; then
ACE_CXXFLAGS="-mcpu=common"
fi
;;
esac
;;
*chorus*)
;;
*cray*)
;;
*dgux*)
case "$CXX" in
ec++)
CXXFLAGS="$CXXFLAGS"
ACE_CXXFLAGS="$ACE_CXXFLAGS -relax -v -eh"
DCXXFLAGS="-g"
OCXXFLAGS=""
;;
*)
if test -n "$GXX"; then
ACE_CXXFLAGS="$ACE_CXXFLAGS"
fi
;;
esac
;;
*freebsd*)
case "$CXX" in
*)
if test -n "$GXX"; then
CXXFLAGS="$CXXFLAGS"
ACE_CXXFLAGS="$ACE_CXXFLAGS -w -fno-strict-prototypes"
DCXXFLAGS=""
OCXXFLAGS=""
fi
;;
esac
;;
*hpux*)
case "$CXX" in
CC)
CXXFLAGS="$CXXFLAGS -pta -ti,/bin/true -tr,/bin/true"
ACE_CXXFLAGS="$ACE_CXXFLAGS -Aa -z +a1"
DCXXFLAGS="-g"
OCXXFLAGS=""
;;
aCC)
CXXFLAGS="$CXXFLAGS"
ACE_CXXFLAGS="$ACE_CXXFLAGS +W829,302"
DCXXFLAGS="-g"
OCXXFLAGS=""
;;
*)
if test -n "$GXX"; then
ACE_CXXFLAGS="$ACE_CXXFLAGS -w"
fi
;;
esac
;;
*irix5*)
case "$CXX" in
CC)
CXXFLAGS="$CXXFLAGS -ptused -prelink +pp -woff 3203,3209,3161,3262,3665"
ACE_CXXFLAGS="$ACE_CXXFLAGS "
DCXXFLAGS="-g"
OCXXFLAGS=""
;;
*)
;;
esac
;;
*irix6*)
case "$CXX" in
CC)
CPPFLAGS="$CPPFLAGS -D_SGI_MP_SOURCE"
CXXFLAGS="$CXXFLAGS -exceptions -ptnone -no_prelink -Wl,-woff,15 -Wl,-woff,84 -Wl,-woff,85 -Wl,-woff,133"
ACE_CXXFLAGS="$ACE_CXXFLAGS "
DCXXFLAGS="-g"
OCXXFLAGS="-O -OPT:Olimit=0"
;;
esac
;;
*linux*)
case "$CXX" in
*)
if test -n "$GXX"; then
CXXFLAGS="$CXXFLAGS"
ACE_CXXFLAGS="$ACE_CXXFLAGS"
DCXXFLAGS="$DCXXFLAGS"
OCXXFLAGS="-O3"
fi
;;
esac
;;
*lynxos*)
;;
*m88k*)
;;
*mvs*)
;;
*netbsd*)
;;
*osf*)
;;
*psos*)
;;
*sco*)
;;
*sunos4*)
;;
*solaris2*)
case "$CXX" in
CC)
WERROR="-xwe"
if test "$ace_user_enable_exceptions" != yes; then
CXXFLAGS="$CXXFLAGS -noex"
fi
dnl Some flags only work with Sun C++ 4.2
if (CC -V 2>&1 | egrep 'Compilers 4\.2' > /dev/null); then
CXXFLAGS="$CXXFLAGS -features=castop"
if test "$ace_user_enable_rtti" = yes; then
CXXFLAGS="$CXXFLAGS -features=rtti"
fi
fi
dnl Sun C++ 5.0 weirdness
if (CC -V 2>&1 | egrep 'Compilers 5\.0' > /dev/null); then
CXXFLAGS="$CXXFLAGS -library=iostream,no%Cstd -instances=explicit"
if test "$ace_user_enable_exceptions" != yes; then
dnl See /opt/SUNWspro_5.0/SC5.0/include/CC/stdcomp.h.
AC_DEFINE(_RWSTD_NO_EXCEPTIONS)
fi
fi
CXXFLAGS="$CXXFLAGS"
ACE_CXXFLAGS="$ACE_CXXFLAGS"
DCXXFLAGS="$DCXXFLAGS -g"
OCXXFLAGS="$OCXXFLAGS -O"
;;
esac
;;
*tandem*)
;;
*unixware*)
;;
*vxworks*)
;;
*)
CXXFLAGS="$CXXFLAGS"
ACE_CXXFLAGS="$ACE_CXXFLAGS"
DCXXFLAGS="-g"
OCXXFLAGS="-O"
;;
esac
])
|