1 dnl SMB Build Environment CC Checks
2 dnl -------------------------------------------------------
3 dnl Copyright (C) Stefan (metze) Metzmacher 2004
4 dnl Released under the GNU GPL
5 dnl -------------------------------------------------------
8 AC_LIBREPLACE_CC_CHECKS
11 # Set the debug symbol option if we have
12 # --enable-*developer or --enable-debug
13 # and the compiler supports it
15 if test x$ac_cv_prog_cc_g = xyes -a x$debug = xyes; then
19 ############################################
20 # check if the compiler handles c99 struct initialization
21 LIBREPLACE_C99_STRUCT_INIT(samba_cv_c99_struct_initialization=yes,
22 samba_cv_c99_struct_initialization=no)
24 if test x"$samba_cv_c99_struct_initialization" != x"yes"; then
25 AC_MSG_WARN([C compiler does not support c99 struct initialization!])
26 AC_MSG_ERROR([Please Install gcc from http://gcc.gnu.org/])
29 ############################################
30 # check if the compiler can handle negative enum values
31 # and don't truncate the values to INT_MAX
32 # a runtime test is needed here
33 AC_CACHE_CHECK([that the C compiler understands negative enum values],samba_cv_CC_NEGATIVE_ENUM_VALUES, [
37 enum negative_values { NEGATIVE_VALUE = 0xFFFFFFFF };
39 enum negative_values v1 = NEGATIVE_VALUE;
40 unsigned v2 = 0xFFFFFFFF;
42 printf("v1=0x%08x v2=0x%08x\n", v1, v2);
48 samba_cv_CC_NEGATIVE_ENUM_VALUES=yes,
49 samba_cv_CC_NEGATIVE_ENUM_VALUES=no,
50 samba_cv_CC_NEGATIVE_ENUM_VALUES=yes)])
51 if test x"$samba_cv_CC_NEGATIVE_ENUM_VALUES" != x"yes"; then
52 AC_DEFINE(USE_UINT_ENUMS, 1, [Whether the compiler has uint enum support])
55 AC_MSG_CHECKING([for test routines])
56 AC_TRY_RUN([#include "${srcdir-.}/../tests/trivial.c"],
58 AC_MSG_ERROR([cant find test code. Aborting config]),
59 AC_MSG_WARN([cannot run when cross-compiling]))
62 # Check if the compiler support ELF visibility for symbols
65 visibility_attribute=no
67 if test x"$GCC" = x"yes" ; then
68 AX_CFLAGS_GCC_OPTION([-fvisibility=hidden], VISIBILITY_CFLAGS)
71 if test -n "$VISIBILITY_CFLAGS"; then
72 AC_MSG_CHECKING([whether the C compiler supports the visibility attribute])
75 CFLAGS="$CFLAGS $VISIBILITY_CFLAGS"
77 void vis_foo1(void) {}
78 __attribute__((visibility("default"))) void vis_foo2(void) {}
82 AC_DEFINE(HAVE_VISIBILITY_ATTR,1,[Whether the C compiler supports the visibility attribute])
83 visibility_attribute=yes
89 AC_SUBST(visibility_attribute)
92 # Check if the compiler can handle the options we selected by
96 if test x$developer = xyes; then
97 OLD_CFLAGS="${CFLAGS}"
99 CFLAGS="${CFLAGS} -D_SAMBA_DEVELOPER_DONNOT_USE_O2_"
100 DEVELOPER_CFLAGS="-DDEBUG_PASSWORD -DDEVELOPER"
101 if test x"$GCC" = x"yes" ; then
103 # warnings we want...
105 AX_CFLAGS_GCC_OPTION(-Wall, DEVELOPER_CFLAGS)
106 AX_CFLAGS_GCC_OPTION(-Wshadow, DEVELOPER_CFLAGS)
107 AX_CFLAGS_GCC_OPTION(-Werror-implicit-function-declaration, DEVELOPER_CFLAGS)
108 AX_CFLAGS_GCC_OPTION(-Wstrict-prototypes, DEVELOPER_CFLAGS)
109 AX_CFLAGS_GCC_OPTION(-Wpointer-arith, DEVELOPER_CFLAGS)
110 AX_CFLAGS_GCC_OPTION(-Wcast-qual, DEVELOPER_CFLAGS)
111 AX_CFLAGS_GCC_OPTION(-Wcast-align, DEVELOPER_CFLAGS)
112 AX_CFLAGS_GCC_OPTION(-Wwrite-strings, DEVELOPER_CFLAGS)
113 AX_CFLAGS_GCC_OPTION(-Wmissing-format-attribute, DEVELOPER_CFLAGS)
114 AX_CFLAGS_GCC_OPTION(-Wformat=2, DEVELOPER_CFLAGS)
115 AX_CFLAGS_GCC_OPTION(-Wdeclaration-after-statement, DEVELOPER_CFLAGS)
116 AX_CFLAGS_GCC_OPTION(-Wunused-macros, DEVELOPER_CFLAGS)
117 # AX_CFLAGS_GCC_OPTION(-Wextra, DEVELOPER_CFLAGS)
118 # AX_CFLAGS_GCC_OPTION(-Wc++-compat, DEVELOPER_CFLAGS)
119 # AX_CFLAGS_GCC_OPTION(-Wmissing-prototypes, DEVELOPER_CFLAGS)
120 # AX_CFLAGS_GCC_OPTION(-Wmissing-declarations, DEVELOPER_CFLAGS)
121 # AX_CFLAGS_GCC_OPTION(-Wmissing-field-initializers, DEVELOPER_CFLAGS)
123 # warnings we don't want...
125 AX_CFLAGS_GCC_OPTION(-Wno-format-y2k, DEVELOPER_CFLAGS)
126 AX_CFLAGS_GCC_OPTION(-Wno-unused-parameter, DEVELOPER_CFLAGS)
128 # warnings we don't want just for some files e.g. swig bindings
130 AX_CFLAGS_GCC_OPTION(-Wno-cast-qual, CFLAG_NO_CAST_QUAL)
131 AC_SUBST(CFLAG_NO_CAST_QUAL)
132 AX_CFLAGS_GCC_OPTION(-Wno-unused-macros, CFLAG_NO_UNUSED_MACROS)
133 AC_SUBST(CFLAG_NO_UNUSED_MACROS)
135 AX_CFLAGS_IRIX_OPTION(-fullwarn, DEVELOPER_CFLAGS)
138 CFLAGS="${OLD_CFLAGS}"
140 if test -n "$DEVELOPER_CFLAGS"; then
141 OLD_CFLAGS="${CFLAGS}"
142 CFLAGS="${CFLAGS} ${DEVELOPER_CFLAGS}"
143 AC_MSG_CHECKING([that the C compiler can use the DEVELOPER_CFLAGS])
144 AC_TRY_COMPILE([],[],
146 DEVELOPER_CFLAGS=""; AC_MSG_RESULT(no))
147 CFLAGS="${OLD_CFLAGS}"
150 # allow for --with-hostcc=gcc
151 AC_ARG_WITH(hostcc,[ --with-hostcc=compiler choose host compiler],
154 if test z"$cross_compiling" = "yes"; then
162 AC_PATH_PROG(GCOV,gcov)