Skip to content

Commit

Permalink
[asan] Disable CreateSigAltStack from Unix/Signals.inc for asan builds
Browse files Browse the repository at this point in the history
Summary: Asan fails to UnsetAlternateSignalStack if it set by Unix/Signals.inc

Reviewers: kcc

Subscribers: llvm-commits

Differential Revision: https://reviews.llvm.org/D23864

llvm-svn: 279717
  • Loading branch information
vitalybuka committed Aug 25, 2016
1 parent 30c18ec commit d212456
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion llvm/cmake/config-ix.cmake
Expand Up @@ -170,7 +170,8 @@ if( HAVE_SETJMP_H )
check_symbol_exists(siglongjmp setjmp.h HAVE_SIGLONGJMP)
check_symbol_exists(sigsetjmp setjmp.h HAVE_SIGSETJMP)
endif()
if( HAVE_SIGNAL_H )
// AddressSanitizer conflicts with lib/Support/Unix/Signals.inc
if( HAVE_SIGNAL_H AND NOT LLVM_USE_SANITIZER MATCHES ".*Address.*")
check_symbol_exists(sigaltstack signal.h HAVE_SIGALTSTACK)
endif()
if( HAVE_SYS_UIO_H )
Expand Down

0 comments on commit d212456

Please sign in to comment.