Skip to content
Snippets Groups Projects
Commit 3ee3c3d3 authored by Uwe Schulzweida's avatar Uwe Schulzweida
Browse files

config/default: add gnu_sanitize

parent a4a230b4
No related branches found
No related tags found
1 merge request!104M214003/develop
Pipeline #40134 passed
...@@ -225,6 +225,14 @@ case "${HOSTNAME}" in ...@@ -225,6 +225,14 @@ case "${HOSTNAME}" in
CPPFLAGS="-DWARN_UNUSED" \ CPPFLAGS="-DWARN_UNUSED" \
CXX=g++ CXXFLAGS="-g -pipe -Wall -Wextra -Wshadow -Wfloat-equal -pedantic -O3 -march=native -flto" \ CXX=g++ CXXFLAGS="-g -pipe -Wall -Wextra -Wshadow -Wfloat-equal -pedantic -O3 -march=native -flto" \
CC=gcc CFLAGS="-g -pipe -Wall -Wextra -Wshadow -Wfloat-equal -pedantic -O3 -march=native -flto" CC=gcc CFLAGS="-g -pipe -Wall -Wextra -Wshadow -Wfloat-equal -pedantic -O3 -march=native -flto"
elif test "$COMP" = gnu_sanitize ; then
${CONFPATH}configure --prefix=$HOME/local \
--enable-maintainer-mode \
$CDOLIBS \
LDFLAGS="$LDFLAGS" \
CPPFLAGS="-DWARN_UNUSED" \
CXX=g++ CXXFLAGS="-g -pipe -Wall -Wextra -Wshadow -Wfloat-equal -pedantic -O3 -march=native -fsanitize=address" \
CC=gcc CFLAGS="-g -pipe -Wall -Wextra -Wshadow -Wfloat-equal -pedantic -O3 -march=native -fsanitize=address"
elif test "$COMP" = gnu ; then elif test "$COMP" = gnu ; then
${CONFPATH}configure --prefix=$HOME/local \ ${CONFPATH}configure --prefix=$HOME/local \
--enable-maintainer-mode \ --enable-maintainer-mode \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment