1
dnl Copyright (C) 2009 Sun Microsystems, Inc.
2
dnl This file is free software; Sun Microsystems, Inc.
3
dnl gives unlimited permission to copy and/or distribute it,
4
dnl with or without modifications, as long as this notice is preserved.
6
dnl AC_PANDORA_WARNINGS([less-warnings|warnings-always-on])
7
dnl less-warnings turn on a limited set of warnings
8
dnl warnings-always-on always set warnings=error regardless of tarball/vc
10
dnl @TODO: remove less-warnings option as soon as Drizzle is clean enough to
13
AC_DEFUN([PANDORA_WARNINGS],[
14
m4_define([PW_LESS_WARNINGS],[no])
15
m4_define([PW_WARN_ALWAYS_ON],[no])
16
ifdef([m4_define],,[define([m4_define], defn([define]))])
17
ifdef([m4_undefine],,[define([m4_undefine], defn([undefine]))])
18
m4_foreach([pw_arg],[$*],[
21
m4_undefine([PW_LESS_WARNINGS])
22
m4_define([PW_LESS_WARNINGS],[yes])
24
[warnings-always-on],[
25
m4_undefine([PW_WARN_ALWAYS_ON])
26
m4_define([PW_WARN_ALWAYS_ON],[yes])
30
AC_REQUIRE([PANDORA_BUILDING_FROM_VC])
31
m4_if(PW_WARN_ALWAYS_ON, [yes],
32
[ac_cv_warnings_as_errors=yes],
33
AS_IF([test "$pandora_building_from_vc" = "yes"],
34
[ac_cv_warnings_as_errors=yes],
35
[ac_cv_warnings_as_errors=no]))
37
AC_ARG_ENABLE([gcc-profile-mode],
38
[AS_HELP_STRING([--enable-gcc-profile-mode],
39
[Toggle gcc profile mode @<:@default=off@:>@])],
40
[ac_gcc_profile_mode="$enableval"],
41
[ac_gcc_profile_mode="no"])
43
AC_ARG_ENABLE([profiling],
44
[AS_HELP_STRING([--enable-profiling],
45
[Toggle profiling @<:@default=off@:>@])],
46
[ac_profiling="$enableval"],
49
AC_ARG_ENABLE([coverage],
50
[AS_HELP_STRING([--enable-coverage],
51
[Toggle coverage @<:@default=off@:>@])],
52
[ac_coverage="$enableval"],
55
AS_IF([test "$GCC" = "yes"],[
57
AS_IF([test "$ac_profiling" = "yes"],[
59
GCOV_LIBS="-pg -lgcov"
62
AC_CHECK_LIB(c_p, read)
70
AS_IF([test "$ac_coverage" = "yes"],
72
CC_COVERAGE="--coverage"
78
AS_IF([test "$ac_cv_warnings_as_errors" = "yes"],
81
AC_CACHE_CHECK([whether it is safe to use -fdiagnostics-show-option],
82
[ac_cv_safe_to_use_fdiagnostics_show_option_],
83
[save_CFLAGS="$CFLAGS"
84
CFLAGS="-fdiagnostics-show-option ${AM_CFLAGS} ${CFLAGS}"
86
[AC_LANG_PROGRAM([],[])],
87
[ac_cv_safe_to_use_fdiagnostics_show_option_=yes],
88
[ac_cv_safe_to_use_fdiagnostics_show_option_=no])
89
CFLAGS="$save_CFLAGS"])
91
AS_IF([test "$ac_cv_safe_to_use_fdiagnostics_show_option_" = "yes"],
93
F_DIAGNOSTICS_SHOW_OPTION="-fdiagnostics-show-option"
96
AC_CACHE_CHECK([whether it is safe to use -floop-parallelize-all],
97
[ac_cv_safe_to_use_floop_parallelize_all_],
98
[save_CFLAGS="$CFLAGS"
99
CFLAGS="-floop-parallelize-all ${AM_CFLAGS} ${CFLAGS}"
101
[AC_LANG_PROGRAM([],[])],
102
[ac_cv_safe_to_use_floop_parallelize_all_=yes],
103
[ac_cv_safe_to_use_floop_parallelize_all_=no])
104
CFLAGS="$save_CFLAGS"])
106
AS_IF([test "$ac_cv_safe_to_use_floop_parallelize_all_" = "yes"],
108
F_LOOP_PARALLELIZE_ALL="-floop-parallelize-all"
111
NO_STRICT_ALIASING="-fno-strict-aliasing -Wno-strict-aliasing"
112
NO_SHADOW="-Wno-shadow"
114
AS_IF([test "$INTELCC" = "yes"],[
115
m4_if(PW_LESS_WARNINGS,[no],[
116
BASE_WARNINGS="-w1 -Werror -Wcheck -Wp64 -Woverloaded-virtual -Wcast-qual -diag-disable 188"
118
dnl 2203 is like old-style-cast
119
dnl 1684 is like strict-aliasing
120
dnl 188 is about using enums as bitfields
121
dnl 1683 is a warning about _EXPLICIT_ casting, which we want
122
BASE_WARNINGS="-w1 -Werror -Wcheck -Wp64 -Woverloaded-virtual -Wcast-qual -diag-disable 188,981,2259,2203,1683,1684"
124
CC_WARNINGS="${BASE_WARNINGS}"
125
CXX_WARNINGS="${BASE_WARNINGS}"
126
PROTOSKIP_WARNINGS="-diag-disable 188,981,967,2259,1683,1684,2203"
129
m4_if(PW_LESS_WARNINGS,[no],[
130
BASE_WARNINGS_FULL="${W_CONVERSION} -Wstrict-aliasing"
131
CC_WARNINGS_FULL="-Wswitch-default -Wswitch-enum -Wwrite-strings"
132
CXX_WARNINGS_FULL="-Weffc++ -Wold-style-cast"
133
NO_OLD_STYLE_CAST="-Wno-old-style-cast"
134
NO_EFF_CXX="-Wno-effc++"
136
BASE_WARNINGS_FULL="${NO_STRICT_ALIASING}"
139
AS_IF([test "${ac_cv_assert}" = "no"],
140
[NO_UNUSED="-Wno-unused-variable -Wno-unused-parameter"])
142
AC_CACHE_CHECK([whether it is safe to use -Wextra],
143
[ac_cv_safe_to_use_Wextra_],
144
[save_CFLAGS="$CFLAGS"
145
CFLAGS="${W_FAIL} -pedantic -Wextra ${AM_CFLAGS} ${CFLAGS}"
152
[ac_cv_safe_to_use_Wextra_=yes],
153
[ac_cv_safe_to_use_Wextra_=no])
154
CFLAGS="$save_CFLAGS"])
156
BASE_WARNINGS="${W_FAIL} -pedantic -Wall -Wundef -Wshadow ${NO_UNUSED} ${F_DIAGNOSTICS_SHOW_OPTION} ${F_LOOP_PARALLELIZE_ALL} ${BASE_WARNINGS_FULL}"
157
AS_IF([test "$ac_cv_safe_to_use_Wextra_" = "yes"],
158
[BASE_WARNINGS="${BASE_WARNINGS} -Wextra"],
159
[BASE_WARNINGS="${BASE_WARNINGS} -W"])
161
AC_CACHE_CHECK([whether it is safe to use -Wformat],
162
[ac_cv_safe_to_use_wformat_],
163
[save_CFLAGS="$CFLAGS"
164
dnl Use -Werror here instead of ${W_FAIL} so that we don't spew
165
dnl conversion warnings to all the tarball folks
166
CFLAGS="-Wformat -Werror -pedantic ${AM_CFLAGS} ${CFLAGS}"
171
#include <inttypes.h>
176
printf("This is a %" PRIu64 "test\n", test_u);
181
[ac_cv_safe_to_use_wformat_=yes],
182
[ac_cv_safe_to_use_wformat_=no])
183
CFLAGS="$save_CFLAGS"])
184
AS_IF([test "$ac_cv_safe_to_use_wformat_" = "yes"],[
185
BASE_WARNINGS="${BASE_WARNINGS} -Wformat -Wno-format-nonliteral -Wno-format-security"
186
BASE_WARNINGS_FULL="${BASE_WARNINGS_FULL} -Wformat=2 -Wno-format-nonliteral -Wno-format-security"
188
BASE_WARNINGS="${BASE_WARNINGS} -Wno-format"
189
BASE_WARNINGS_FULL="${BASE_WARNINGS_FULL} -Wno-format"
194
AC_CACHE_CHECK([whether it is safe to use -Wconversion],
195
[ac_cv_safe_to_use_wconversion_],
196
[save_CFLAGS="$CFLAGS"
197
dnl Use -Werror here instead of ${W_FAIL} so that we don't spew
198
dnl conversion warnings to all the tarball folks
199
CFLAGS="-Wconversion -Werror -pedantic ${AM_CFLAGS} ${CFLAGS}"
210
[ac_cv_safe_to_use_wconversion_=yes],
211
[ac_cv_safe_to_use_wconversion_=no])
212
CFLAGS="$save_CFLAGS"])
214
AS_IF([test "$ac_cv_safe_to_use_wconversion_" = "yes"],
215
[W_CONVERSION="-Wconversion"
216
AC_CACHE_CHECK([whether it is safe to use -Wconversion with htons],
217
[ac_cv_safe_to_use_Wconversion_],
218
[save_CFLAGS="$CFLAGS"
219
dnl Use -Werror here instead of ${W_FAIL} so that we don't spew
220
dnl conversion warnings to all the tarball folks
221
CFLAGS="-Wconversion -Werror -pedantic ${AM_CFLAGS} ${CFLAGS}"
225
#include <netinet/in.h>
227
uint16_t x= htons(80);
229
[ac_cv_safe_to_use_Wconversion_=yes],
230
[ac_cv_safe_to_use_Wconversion_=no])
231
CFLAGS="$save_CFLAGS"])
233
AS_IF([test "$ac_cv_safe_to_use_Wconversion_" = "no"],
234
[NO_CONVERSION="-Wno-conversion"])
237
CC_WARNINGS="${BASE_WARNINGS} -Wstrict-prototypes -Wmissing-prototypes -Wredundant-decls -Wmissing-declarations -Wcast-align ${CC_WARNINGS_FULL}"
238
CXX_WARNINGS="${BASE_WARNINGS} -Woverloaded-virtual -Wnon-virtual-dtor -Wctor-dtor-privacy -Wno-long-long ${CXX_WARNINGS_FULL}"
240
AC_CACHE_CHECK([whether it is safe to use -Wmissing-declarations from C++],
241
[ac_cv_safe_to_use_Wmissing_declarations_],
243
save_CXXFLAGS="$CXXFLAGS"
244
CXXFLAGS="-Werror -pedantic -Wmissing-declarations ${AM_CXXFLAGS}"
251
[ac_cv_safe_to_use_Wmissing_declarations_=yes],
252
[ac_cv_safe_to_use_Wmissing_declarations_=no])
253
CXXFLAGS="$save_CXXFLAGS"
256
AS_IF([test "$ac_cv_safe_to_use_Wmissing_declarations_" = "yes"],
257
[CXX_WARNINGS="${CXX_WARNINGS} -Wmissing-declarations"])
259
AC_CACHE_CHECK([whether it is safe to use -Wframe-larger-than],
260
[ac_cv_safe_to_use_Wframe_larger_than_],
262
save_CXXFLAGS="$CXXFLAGS"
263
CXXFLAGS="-Werror -pedantic -Wframe-larger-than=32768 ${AM_CXXFLAGS}"
270
[ac_cv_safe_to_use_Wframe_larger_than_=yes],
271
[ac_cv_safe_to_use_Wframe_larger_than_=no])
272
CXXFLAGS="$save_CXXFLAGS"
275
AS_IF([test "$ac_cv_safe_to_use_Wframe_larger_than_" = "yes"],
276
[CXX_WARNINGS="${CXX_WARNINGS} -Wframe-larger-than=32768"])
278
AC_CACHE_CHECK([whether it is safe to use -Wlogical-op],
279
[ac_cv_safe_to_use_Wlogical_op_],
280
[save_CFLAGS="$CFLAGS"
281
CFLAGS="${W_FAIL} -pedantic -Wlogical-op ${AM_CFLAGS} ${CFLAGS}"
288
[ac_cv_safe_to_use_Wlogical_op_=yes],
289
[ac_cv_safe_to_use_Wlogical_op_=no])
290
CFLAGS="$save_CFLAGS"])
291
AS_IF([test "$ac_cv_safe_to_use_Wlogical_op_" = "yes"],
292
[CC_WARNINGS="${CC_WARNINGS} -Wlogical-op"])
294
AC_CACHE_CHECK([whether it is safe to use -Wredundant-decls from C++],
295
[ac_cv_safe_to_use_Wredundant_decls_],
297
save_CXXFLAGS="${CXXFLAGS}"
298
CXXFLAGS="${W_FAIL} -pedantic -Wredundant-decls ${AM_CXXFLAGS}"
301
template <typename E> struct C { void foo(); };
302
template <typename E> void C<E>::foo() { }
303
template <> void C<int>::foo();
304
AC_INCLUDES_DEFAULT])],
305
[ac_cv_safe_to_use_Wredundant_decls_=yes],
306
[ac_cv_safe_to_use_Wredundant_decls_=no])
307
CXXFLAGS="${save_CXXFLAGS}"
309
AS_IF([test "$ac_cv_safe_to_use_Wredundant_decls_" = "yes"],
310
[CXX_WARNINGS="${CXX_WARNINGS} -Wredundant-decls"],
311
[CXX_WARNINGS="${CXX_WARNINGS} -Wno-redundant-decls"])
313
AC_CACHE_CHECK([whether it is safe to use -Wattributes from C++],
314
[ac_cv_safe_to_use_Wattributes_],
316
save_CXXFLAGS="${CXXFLAGS}"
317
CXXFLAGS="${W_FAIL} -pedantic -Wattributes -fvisibility=hidden ${AM_CXXFLAGS}"
320
#include <google/protobuf/message.h>
321
#include <google/protobuf/descriptor.h>
324
const ::google::protobuf::EnumDescriptor* Table_TableOptions_RowType_descriptor();
325
enum Table_TableOptions_RowType {
326
Table_TableOptions_RowType_ROW_TYPE_DEFAULT = 0,
327
Table_TableOptions_RowType_ROW_TYPE_FIXED = 1,
328
Table_TableOptions_RowType_ROW_TYPE_DYNAMIC = 2,
329
Table_TableOptions_RowType_ROW_TYPE_COMPRESSED = 3,
330
Table_TableOptions_RowType_ROW_TYPE_REDUNDANT = 4,
331
Table_TableOptions_RowType_ROW_TYPE_COMPACT = 5,
332
Table_TableOptions_RowType_ROW_TYPE_PAGE = 6
338
inline const EnumDescriptor* GetEnumDescriptor<Table_TableOptions_RowType>() {
339
return Table_TableOptions_RowType_descriptor();
344
[ac_cv_safe_to_use_Wattributes_=yes],
345
[ac_cv_safe_to_use_Wattributes_=no])
346
CXXFLAGS="${save_CXXFLAGS}"
348
AC_CACHE_CHECK([whether it is safe to use -Wno-attributes],
349
[ac_cv_safe_to_use_Wno_attributes_],
350
[save_CFLAGS="$CFLAGS"
351
CFLAGS="${W_FAIL} -pedantic -Wno_attributes_ ${AM_CFLAGS} ${CFLAGS}"
358
[ac_cv_safe_to_use_Wno_attributes_=yes],
359
[ac_cv_safe_to_use_Wno_attributes_=no])
360
CFLAGS="$save_CFLAGS"])
362
dnl GCC 3.4 doesn't have -Wno-attributes, so we can't turn them off
364
AS_IF([test "$ac_cv_safe_to_use_Wattributes_" != "yes"],[
365
AS_IF([test "$ac_cv_safe_to_use_Wno_attributes_" = "yes"],[
366
CC_WARNINGS="${CC_WARNINGS} -Wno-attributes"
367
NO_ATTRIBUTES="-Wno-attributes"])])
370
NO_REDUNDANT_DECLS="-Wno-redundant-decls"
371
dnl TODO: Figure out a better way to deal with this:
372
PROTOSKIP_WARNINGS="-Wno-effc++ -Wno-shadow -Wno-missing-braces ${NO_ATTRIBUTES}"
373
NO_WERROR="-Wno-error"
374
PERMISSIVE_WARNINGS="-Wno-error -Wno-unused-function -fpermissive"
375
PERMISSIVE_C_WARNINGS="-Wno-error -Wno-redundant-decls"
376
AS_IF([test "$host_vendor" = "apple"],[
377
BOOSTSKIP_WARNINGS="-Wno-uninitialized"
382
AS_IF([test "$SUNCC" = "yes"],[
384
AS_IF([test "$ac_profiling" = "yes"],
385
[CC_PROFILING="-xinstrument=datarace"])
387
AS_IF([test "$ac_cv_warnings_as_errors" = "yes"],
388
[W_FAIL="-errwarn=%all"])
390
AC_CACHE_CHECK([whether E_PASTE_RESULT_NOT_TOKEN is usable],
391
[ac_cv_paste_result],
393
save_CFLAGS="${CFLAGS}"
394
CFLAGS="-errwarn=%all -erroff=E_PASTE_RESULT_NOT_TOKEN ${CFLAGS}"
400
[ac_cv_paste_result=yes],
401
[ac_cv_paste_result=no])
402
CFLAGS="${save_CFLAGS}"
404
AS_IF([test $ac_cv_paste_result = yes],
405
[W_PASTE_RESULT=",E_PASTE_RESULT_NOT_TOKEN"])
408
m4_if(PW_LESS_WARNINGS, [no],[
409
CC_WARNINGS_FULL="-erroff=E_STATEMENT_NOT_REACHED,E_INTEGER_OVERFLOW_DETECTED${W_PASTE_RESULT}"
410
CXX_WARNINGS_FULL="-erroff=inllargeuse"
412
CC_WARNINGS_FULL="-erroff=E_ATTRIBUTE_NOT_VAR,E_STATEMENT_NOT_REACHED"
413
CXX_WARNINGS_FULL="-erroff=attrskipunsup,doubunder,reftotemp,inllargeuse,truncwarn1,signextwarn,inllargeint"
416
CC_WARNINGS="-v -errtags=yes ${W_FAIL} ${CC_WARNINGS_FULL}"
417
CXX_WARNINGS="+w +w2 -xwe -xport64 -errtags=yes ${CXX_WARNINGS_FULL} ${W_FAIL}"
418
PROTOSKIP_WARNINGS="-erroff=attrskipunsup,doubunder,reftotemp,wbadinitl,identexpected,inllargeuse,truncwarn1,signextwarn,partinit,notused,badargtype2w,wbadinit"
419
BOOSTSKIP_WARNINGS="-erroff=attrskipunsup,doubunder,reftotemp,inllargeuse,truncwarn1,signextwarn,inllargeint,hidef,wvarhidenmem"
420
PERMISSIVE_WARNINGS="-erroff=attrskipunsup,doubunder,reftotemp,inllargeuse,truncwarn1,signextwarn,inllargeint,hidef,wvarhidenmem,notused,badargtype2w,wunreachable"
421
INNOBASE_SKIP_WARNINGS="-erroff=attrskipunsup,doubunder,reftotemp,wbadinitl,identexpected,inllargeuse,truncwarn1,signextwarn,partinit,notused,badargtype2w,wbadinit,wunreachable"
422
NO_UNREACHED="-erroff=E_STATEMENT_NOT_REACHED"
423
NO_WERROR="-errwarn=%none"
427
AC_SUBST(NO_CONVERSION)
428
AC_SUBST(NO_REDUNDANT_DECLS)
429
AC_SUBST(NO_UNREACHED)
431
AC_SUBST(NO_STRICT_ALIASING)
433
AC_SUBST(NO_OLD_STYLE_CAST)
434
AC_SUBST(PROTOSKIP_WARNINGS)
435
AC_SUBST(INNOBASE_SKIP_WARNINGS)
436
AC_SUBST(BOOSTSKIP_WARNINGS)
437
AC_SUBST(PERMISSIVE_WARNINGS)
438
AC_SUBST(PERMISSIVE_C_WARNINGS)
440
AC_SUBST([GCOV_LIBS])