diff options
author | Kostya Serebryany <kcc@google.com> | 2012-12-04 07:00:35 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@gcc.gnu.org> | 2012-12-04 07:00:35 +0000 |
commit | 8c4d267c6e834ccc20632d2c9077d7622b8145cf (patch) | |
tree | ffc5f7302fa16d7a7c53d7de59d3edaae370fbd3 /libsanitizer/configure.ac | |
parent | 3fa057a43770dbb23a0fb21a94cab1789df3277c (diff) | |
download | gcc-8c4d267c6e834ccc20632d2c9077d7622b8145cf.tar.gz |
[libsanitizer] Fix PR55521 by switching libsanitizer from mach_override to mac interpose functions on darwin
From-SVN: r194120
Diffstat (limited to 'libsanitizer/configure.ac')
-rw-r--r-- | libsanitizer/configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libsanitizer/configure.ac b/libsanitizer/configure.ac index 2d62ec4ecc0..49f9cd730c3 100644 --- a/libsanitizer/configure.ac +++ b/libsanitizer/configure.ac @@ -81,10 +81,10 @@ unset TSAN_SUPPORTED AM_CONDITIONAL(TSAN_SUPPORTED, [test "x$TSAN_SUPPORTED" = "xyes"]) case "$host" in - *-*-darwin*) MACH_OVERRIDE=true ;; - *) MACH_OVERRIDE=false ;; + *-*-darwin*) MAC_INTERPOSE=true ;; + *) MAC_INTERPOSE=false ;; esac -AM_CONDITIONAL(USING_MACH_OVERRIDE, $MACH_OVERRIDE) +AM_CONDITIONAL(USING_MAC_INTERPOSE, $MAC_INTERPOSE) AC_CONFIG_FILES([Makefile]) |