From 48a9854e33c38e23446565c344ca819f317a47ce Mon Sep 17 00:00:00 2001 From: "Philipp A. Hartmann" Date: Thu, 23 Oct 2014 19:03:03 +0200 Subject: [PATCH] .travis.yml: avoid Valgrind bug with '-march=native' --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 4330132..145dc73 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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}