From 36c8181460d8ce1a9307db1e001cf288ca33861c Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Thu, 26 Jan 2017 10:43:08 +0300 Subject: [PATCH] Travis CI: compile for host CPU (to test double-wide primitives) (Cherry-pick part of commits d9f88cd, 8268b62 from 'master' branch.) --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 6228382..439fe09 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,7 +10,9 @@ compiler: env: - CFLAGS_EXTRA_M= + - CFLAGS_EXTRA="-O3 -march=native" - CFLAGS_EXTRA_M=-m32 + CFLAGS_EXTRA="-march=native" matrix: exclude: @@ -29,4 +31,4 @@ install: - ./configure script: - - make -j check CFLAGS_EXTRA="$CFLAGS_EXTRA_M" + - make -j check CFLAGS_EXTRA="$CFLAGS_EXTRA $CFLAGS_EXTRA_M" -- 2.7.4