mirror of
https://github.com/openzfs/zfs.git
synced 2025-10-02 04:33:38 +00:00

It turns out the gcc option -Wframe-larger-than=<size> which I recently added to the build system is not supported in older versions of gcc. Since this is just a flag to ensure I keep stack usage under control I've added a configure check to detect if gcc supports it. If it's available we use it in the proper places, if it's not we don't.
23 lines
484 B
Plaintext
23 lines
484 B
Plaintext
dnl #
|
|
dnl # Check if gcc supports -Wframe-larger-than=<size> option.
|
|
dnl #
|
|
AC_DEFUN([ZFS_AC_CONFIG_USER_FRAME_LARGER_THAN], [
|
|
AC_MSG_CHECKING([for -Wframe-larger-than=<size> support])
|
|
|
|
saved_flags="$CFLAGS"
|
|
CFLAGS="$CFLAGS -Wframe-larger-than=1024"
|
|
|
|
AC_RUN_IFELSE(AC_LANG_PROGRAM( [], []),
|
|
[
|
|
FRAME_LARGER_THAN=-Wframe-larger-than=1024
|
|
AC_MSG_RESULT([yes])
|
|
],
|
|
[
|
|
FRAME_LARGER_THAN=
|
|
AC_MSG_RESULT([no])
|
|
])
|
|
|
|
CFLAGS="$saved_flags"
|
|
AC_SUBST([FRAME_LARGER_THAN])
|
|
])
|