From: Ivan Maidanski Date: Mon, 28 Nov 2016 10:11:35 +0000 (+0300) Subject: Travis CI configuration: test also pointer backtracing X-Git-Tag: v7.4.6~161 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bb5c0b914c597e9478ff4eac02d33e91e2d884eb;p=gc Travis CI configuration: test also pointer backtracing (Cherry-pick commits 3130765, b475ea9 from 'master' branch.) --- diff --git a/.travis.yml b/.travis.yml index d3bb6592..b0fffe10 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,11 +11,14 @@ compiler: env: - CFLAGS_EXTRA_M= - CFLAGS_EXTRA_M=-m32 + - CONF_GC_DEBUG=--enable-gc-debug matrix: exclude: - os: osx compiler: gcc + - compiler: clang + env: CONF_GC_DEBUG=--enable-gc-debug sudo: required @@ -31,5 +34,5 @@ install: - ./autogen.sh script: - - ./configure $CONF_CPP --enable-munmap + - ./configure $CONF_CPP $CONF_GC_DEBUG --enable-munmap - make -j check CFLAGS_EXTRA="$CFLAGS_EXTRA_M"