Skip to content

Commit 66efcfa

Browse files
committed
tools/repro-build.sh: do not turn on address-sanitizer by default.
@cdecker reports that this gives warnings on exit; and we can't suppress them by setting ASAN_OPTIONS within the binary itself, unfortunately. So for 0.7, disable it by default. I'll work through the errors for 0.7.1. Signed-off-by: Rusty Russell <[email protected]>
1 parent d98fb0f commit 66efcfa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/repro-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ $INST $(cut -c66- < /tmp/SHASUMS)
123123

124124
# Build ready for packaging.
125125
# Once everyone has gcc8, we can use CC="gcc -ffile-prefix-map=$(pwd)=/home/clightning"
126-
./configure --prefix=/usr --enable-address-sanitizer CC="gcc -fdebug-prefix-map=$(pwd)=/home/clightning"
126+
./configure --prefix=/usr CC="gcc -fdebug-prefix-map=$(pwd)=/home/clightning"
127127
# libwally wants "python". Seems to work to force it here.
128128
make PYTHON_VERSION=3
129129
make install DESTDIR=inst/

0 commit comments

Comments
 (0)