]> git.proxmox.com Git - mirror_zfs.git/commit - config/zfs-build.m4
Support -fsanitize=address with --enable-asan
authorBrian Behlendorf <behlendorf1@llnl.gov>
Wed, 10 Jan 2018 18:49:27 +0000 (10:49 -0800)
committerGitHub <noreply@github.com>
Wed, 10 Jan 2018 18:49:27 +0000 (10:49 -0800)
commitfed90353d799acbc5e81b0dfadc6d649b0f2e8b5
tree6044e9667665988684013d8bed32d17c0b488d54
parent7e7f5132779a04da0070cf6e6ffd8e9b5f7692de
Support -fsanitize=address with --enable-asan

When --enable-asan is provided to configure then build all user
space components with fsanitize=address.  For kernel support
use the Linux KASAN feature instead.

https://github.com/google/sanitizers/wiki/AddressSanitizer

When using gcc version 4.8 any test case which intentionally
generates a core dump will fail when using --enable-asan.
The default behavior is to disable core dumps and only newer
versions allow this behavior to be controled at run time with
the ASAN_OPTIONS environment variable.

Additionally, this patch includes some build system cleanup.

* Rules.am updated to set the minimum AM_CFLAGS, AM_CPPFLAGS,
  and AM_LDFLAGS.  Any additional flags should be added on a
  per-Makefile basic.  The --enable-debug and --enable-asan
  options apply to all user space binaries and libraries.

* Compiler checks consolidated in always-compiler-options.m4
  and renamed for consistency.

* -fstack-check compiler flag was removed, this functionality
  is provided by asan when configured with --enable-asan.

* Split DEBUG_CFLAGS in to DEBUG_CFLAGS, DEBUG_CPPFLAGS, and
  DEBUG_LDFLAGS.

* Moved default kernel build flags in to module/Makefile.in and
  split in to ZFS_MODULE_CFLAGS and ZFS_MODULE_CPPFLAGS.  These
  flags are set with the standard ccflags-y kbuild mechanism.

* -Wframe-larger-than checks applied only to binaries or
  libraries which include source files which are built in
  both user space and kernel space.  This restriction is
  relaxed for user space only utilities.

* -Wno-unused-but-set-variable applied only to libzfs and
  libzpool.  The remaining warnings are the result of an
  ASSERT using a variable when is always declared.

* -D_POSIX_PTHREAD_SEMANTICS and -D__EXTENSIONS__ dropped
  because they are Solaris specific and thus not needed.

* Ensure $GDB is defined as gdb by default in zloop.sh.

Signed-off-by: DHE <git@dehacked.net>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #7027
40 files changed:
cmd/raidz_test/Makefile.am
cmd/zdb/Makefile.am
cmd/ztest/Makefile.am
config/Rules.am
config/always-compiler-options.m4 [new file with mode: 0644]
config/always-no-bool-compare.m4 [deleted file]
config/always-no-unused-but-set-variable.m4 [deleted file]
config/kernel.m4
config/user-frame-larger-than.m4 [deleted file]
config/user-no-format-truncation.m4 [deleted file]
config/user.m4
config/zfs-build.m4
lib/libavl/Makefile.am
lib/libefi/Makefile.am
lib/libicp/Makefile.am
lib/libnvpair/Makefile.am
lib/libshare/Makefile.am
lib/libspl/Makefile.am
lib/libtpool/Makefile.am
lib/libunicode/Makefile.am
lib/libuutil/Makefile.am
lib/libzfs/Makefile.am
lib/libzfs_core/Makefile.am
lib/libzpool/Makefile.am
module/Makefile.in
module/avl/Makefile.in
module/icp/Makefile.in
module/nvpair/Makefile.in
module/unicode/Makefile.in
module/zcommon/Makefile.in
module/zfs/Makefile.in
rpm/generic/zfs-kmod.spec.in
rpm/generic/zfs.spec.in
rpm/redhat/zfs-kmod.spec.in
scripts/zloop.sh
tests/zfs-tests/tests/functional/checksum/Makefile.am
tests/zfs-tests/tests/functional/cli_root/zfs/zfs_002_pos.ksh
tests/zfs-tests/tests/functional/cli_root/zpool/zpool_002_pos.ksh
tests/zfs-tests/tests/functional/cli_root/zpool/zpool_003_pos.ksh
tests/zfs-tests/tests/functional/hkdf/Makefile.am