Changeset e2472dd
- Timestamp:
- 2014-11-24T05:16:05Z (10 years ago)
- Branches:
- master
- Children:
- b38d399
- Parents:
- aa6bcd8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure
raa6bcd8 re2472dd 40 40 strip=1 41 41 gcov=0 42 asan=0 42 43 plugins=1 43 44 otr=0 … … 89 90 --pie=0/1 Build position independent executable $pie 90 91 --gcov=0/1 Disable/enable test coverage reporting $gcov 92 --asan=0/1 Disable/enable AddressSanitizer $asan 91 93 --plugins=0/1 Disable/enable plugins support $plugins 92 94 --otr=0/1/auto/plugin … … 200 202 fi 201 203 204 if [ "$asan" = "1" ]; then 205 CFLAGS="$CFLAGS -fsanitize=address" 206 LDFLAGS="$LDFLAGS -fsanitize=address" 207 debug=1 208 fi 202 209 203 210 if [ "$debug" = "1" ]; then 204 211 echo 'DEBUG=1' >> Makefile.settings 205 CFLAGS="$CFLAGS -g -DDEBUG"212 CFLAGS="$CFLAGS -g3 -DDEBUG -O0" 206 213 else 207 214 [ -z "$CFLAGS" ] && CFLAGS="-O2 -fno-strict-aliasing" … … 827 834 fi 828 835 836 if [ "$asan" = "1" ]; then 837 echo ' AddressSanitizer (ASAN) enabled.' 838 else 839 echo ' AddressSanitizer (ASAN) disabled.' 840 fi 841 829 842 if [ "$pie" = "1" ]; then 830 843 echo ' Building PIE executable'
Note: See TracChangeset
for help on using the changeset viewer.