.travis.yml: avoid Valgrind bug with '-march=native'

This commit is contained in:
Philipp A. Hartmann 2014-10-23 19:03:03 +02:00
parent 89fa782240
commit 48a9854e33

View File

@ -24,7 +24,10 @@ before_install:
install: true
before_script:
- pushd build && premake4 'gmake' && popd
- (cd build && premake4 'gmake')
# hack to avoid Valgrind bug (https://bugs.kde.org/show_bug.cgi?id=326469),
# exposed by merging PR#163 (using -march=native)
- (cd build/gmake && sed -i 's/march=native/msse4.2/' *.make)
script:
- make -C build/gmake -f test.make config=${CONF}${BITS}