diff options
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 2e6c260..ce019f6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,7 +10,7 @@ before_install: - wget http://ftp.gnu.org/gnu/make/make-${MAKE_VER}.tar.bz2 -O - | bunzip2 | tar -xvC /tmp install: - sudo apt-get install -yq libpcre3-dev valgrind - - pushd /tmp/make-${MAKE_VER} && ./configure && make -j2 && sudo make install ; popd + - pushd /tmp/make-${MAKE_VER} && `test "$CC" = clang && echo "CFLAGS='-g -O0'"` ./configure && make -j2 && sudo make install ; popd - sudo pip install cpp-coveralls script: if test "$CC" = gcc; then /usr/local/bin/make check 'CFLAGS=-Wall -g -fprofile-arcs -ftest-coverage' 'GNUMAKE4=valgrind -q --error-exitcode=125 /usr/local/bin/make'; else /usr/local/bin/make check 'GNUMAKE4=valgrind -q --error-exitcode=125 /usr/local/bin/make'; fi after_success: |