2 dnl # Enabled -fsanitize=address if supported by gcc.
4 dnl # LDFLAGS needs -fsanitize=address at all times so libraries compiled with
5 dnl # it will be linked successfully. CFLAGS will vary by binary being built.
7 dnl # The ASAN_OPTIONS environment variable can be used to further control
8 dnl # the behavior of binaries and libraries build with -fsanitize=address.
10 AC_DEFUN([ZFS_AC_CONFIG_ALWAYS_CC_ASAN], [
11 AC_MSG_CHECKING([whether to build with -fsanitize=address support])
13 [AS_HELP_STRING([--enable-asan],
14 [Enable -fsanitize=address support @<:@default=no@:>@])],
18 AM_CONDITIONAL([ASAN_ENABLED], [test x$enable_asan = xyes])
19 AC_SUBST([ASAN_ENABLED], [$enable_asan])
20 AC_MSG_RESULT($enable_asan)
22 AS_IF([ test "$enable_asan" = "yes" ], [
23 AC_MSG_CHECKING([whether $CC supports -fsanitize=address])
24 saved_cflags="$CFLAGS"
25 CFLAGS="$CFLAGS -Werror -fsanitize=address"
27 AC_LANG_SOURCE([[ int main() { return 0; } ]])
29 ASAN_CFLAGS="-fsanitize=address"
30 ASAN_LDFLAGS="-fsanitize=address"
34 AC_MSG_ERROR([$CC does not support -fsanitize=address])
36 CFLAGS="$saved_cflags"
40 ASAN_ZFS="_without_asan"
43 AC_SUBST([ASAN_CFLAGS])
44 AC_SUBST([ASAN_LDFLAGS])
49 dnl # Check if gcc supports -Wframe-larger-than=<size> option.
51 AC_DEFUN([ZFS_AC_CONFIG_ALWAYS_CC_FRAME_LARGER_THAN], [
52 AC_MSG_CHECKING([whether $CC supports -Wframe-larger-than=<size>])
55 CFLAGS="$CFLAGS -Werror -Wframe-larger-than=4096"
57 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [])], [
58 FRAME_LARGER_THAN="-Wframe-larger-than=4096"
66 AC_SUBST([FRAME_LARGER_THAN])
70 dnl # Check if gcc supports -Wno-format-truncation option.
72 AC_DEFUN([ZFS_AC_CONFIG_ALWAYS_CC_NO_FORMAT_TRUNCATION], [
73 AC_MSG_CHECKING([whether $CC supports -Wno-format-truncation])
76 CFLAGS="$CFLAGS -Werror -Wno-format-truncation"
78 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [])], [
79 NO_FORMAT_TRUNCATION=-Wno-format-truncation
87 AC_SUBST([NO_FORMAT_TRUNCATION])
91 dnl # Check if gcc supports -Wno-format-truncation option.
93 AC_DEFUN([ZFS_AC_CONFIG_ALWAYS_CC_NO_FORMAT_ZERO_LENGTH], [
94 AC_MSG_CHECKING([whether $CC supports -Wno-format-zero-length])
97 CFLAGS="$CFLAGS -Werror -Wno-format-zero-length"
99 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [])], [
100 NO_FORMAT_ZERO_LENGTH=-Wno-format-zero-length
103 NO_FORMAT_ZERO_LENGTH=
107 CFLAGS="$saved_flags"
108 AC_SUBST([NO_FORMAT_ZERO_LENGTH])
113 dnl # Check if gcc supports -Wno-bool-compare option.
115 dnl # We actually invoke gcc with the -Wbool-compare option
116 dnl # and infer the 'no-' version does or doesn't exist based upon
117 dnl # the results. This is required because when checking any of
118 dnl # no- prefixed options gcc always returns success.
120 AC_DEFUN([ZFS_AC_CONFIG_ALWAYS_CC_NO_BOOL_COMPARE], [
121 AC_MSG_CHECKING([whether $CC supports -Wno-bool-compare])
123 saved_flags="$CFLAGS"
124 CFLAGS="$CFLAGS -Werror -Wbool-compare"
126 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [])], [
127 NO_BOOL_COMPARE=-Wno-bool-compare
134 CFLAGS="$saved_flags"
135 AC_SUBST([NO_BOOL_COMPARE])
139 dnl # Check if gcc supports -Wno-unused-but-set-variable option.
141 dnl # We actually invoke gcc with the -Wunused-but-set-variable option
142 dnl # and infer the 'no-' version does or doesn't exist based upon
143 dnl # the results. This is required because when checking any of
144 dnl # no- prefixed options gcc always returns success.
146 AC_DEFUN([ZFS_AC_CONFIG_ALWAYS_CC_NO_UNUSED_BUT_SET_VARIABLE], [
147 AC_MSG_CHECKING([whether $CC supports -Wno-unused-but-set-variable])
149 saved_flags="$CFLAGS"
150 CFLAGS="$CFLAGS -Werror -Wunused-but-set-variable"
152 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [])], [
153 NO_UNUSED_BUT_SET_VARIABLE=-Wno-unused-but-set-variable
156 NO_UNUSED_BUT_SET_VARIABLE=
160 CFLAGS="$saved_flags"
161 AC_SUBST([NO_UNUSED_BUT_SET_VARIABLE])
165 dnl # Check if gcc supports -fno-omit-frame-pointer option.
167 AC_DEFUN([ZFS_AC_CONFIG_ALWAYS_CC_NO_OMIT_FRAME_POINTER], [
168 AC_MSG_CHECKING([whether $CC supports -fno-omit-frame-pointer])
170 saved_flags="$CFLAGS"
171 CFLAGS="$CFLAGS -Werror -fno-omit-frame-pointer"
173 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [])], [
174 NO_OMIT_FRAME_POINTER=-fno-omit-frame-pointer
177 NO_OMIT_FRAME_POINTER=
181 CFLAGS="$saved_flags"
182 AC_SUBST([NO_OMIT_FRAME_POINTER])
186 dnl # Check if cc supports -fno-ipa-sra option.
188 AC_DEFUN([ZFS_AC_CONFIG_ALWAYS_CC_NO_IPA_SRA], [
189 AC_MSG_CHECKING([whether $CC supports -fno-ipa-sra])
191 saved_flags="$CFLAGS"
192 CFLAGS="$CFLAGS -Werror -fno-ipa-sra"
194 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [])], [
195 NO_IPA_SRA=-fno-ipa-sra
202 CFLAGS="$saved_flags"
203 AC_SUBST([NO_IPA_SRA])