mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-02 03:32:04 +00:00
Fix asan script (thx zlul)
This commit is contained in:
parent
b57092a7cf
commit
bd6f7b27b2
@ -5,8 +5,8 @@ echo 'int main(){return 0;}' > .a.c
|
||||
[ -z "${CC}" ] && CC=gcc
|
||||
${CC} ${CFLAGS} ${LDFLAGS} -o .a.out .a.c
|
||||
RET=$?
|
||||
rm -rf .a.out .a.c
|
||||
if [ $? != 0 ]; then
|
||||
rm -f .a.out .a.c
|
||||
if [ $RET != 0 ]; then
|
||||
echo "Your compiler doesn't supports ASAN."
|
||||
exit 1
|
||||
fi
|
||||
|
Loading…
x
Reference in New Issue
Block a user