plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

commit 4692dd4786f8847494d3f020bc3c05ba210adc0d
parent 74577741c856c145811061a438d5a52ea7055f39
Author: Russ Cox <rsc@swtch.com>
Date:   Wed, 30 Dec 2020 08:38:55 -0500

9c: drop PLAN9PORT_ASAN

It is no longer special.

Diffstat:
Mbin/9c | 9---------
1 file changed, 0 insertions(+), 9 deletions(-)

diff --git a/bin/9c b/bin/9c @@ -26,10 +26,6 @@ usegcc() # that option only works with gcc3+ it seems cflags="$cflags -ggdb" cflags="$cflags $CC9FLAGS" - case "$cflags" in - *sanitize=address*) - cflags="$cflags -DPLAN9PORT_ASAN" - esac } quiet() @@ -87,11 +83,6 @@ useclang() " cflags="$cflags -g" cflags="$cflags $CC9FLAGS" - - case "$cflags" in - *sanitize=address*) - cflags="$cflags -DPLAN9PORT_ASAN" - esac } usexlc()