diff options
author | Russ Cox <rsc@swtch.com> | 2020-12-30 08:38:55 -0500 |
---|---|---|
committer | Russ Cox <rsc@swtch.com> | 2020-12-30 08:38:57 -0500 |
commit | 4692dd4786f8847494d3f020bc3c05ba210adc0d (patch) | |
tree | 8f6f0ac70c42e66152ab9d5e0c35501a27ba3259 | |
parent | 74577741c856c145811061a438d5a52ea7055f39 (diff) | |
download | plan9port-4692dd4786f8847494d3f020bc3c05ba210adc0d.tar.gz plan9port-4692dd4786f8847494d3f020bc3c05ba210adc0d.tar.bz2 plan9port-4692dd4786f8847494d3f020bc3c05ba210adc0d.zip |
9c: drop PLAN9PORT_ASAN
It is no longer special.
-rwxr-xr-x | bin/9c | 9 |
1 files changed, 0 insertions, 9 deletions
@@ -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() |