From: fennecdjay Date: Thu, 23 May 2019 12:16:57 +0000 (+0200) Subject: :wrench: Travis testing (fix windows/clan complex) X-Git-Tag: nightly~2445^2~30 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=3ff17688eb4c3bbbfb54e68382d3586b1577c4cb;p=gwion.git :wrench: Travis testing (fix windows/clan complex) --- diff --git a/.travis.yml b/.travis.yml index fcbb137a..3d84f019 100644 --- a/.travis.yml +++ b/.travis.yml @@ -61,10 +61,10 @@ script: then make && make test; else { if [ "$CC" = "clang" ]; - then export CFLAGS+="-DSSIZE_T=ssize_t -D_USE_MATH_DEFINES"; + then export CFLAGS+=" -DSSIZE_T=ssize_t -D_USE_MATH_DEFINES"; if [ "$USE_DOUBLE" = 0 ]; - then export CFLAGS+="-Dm_uint='struct _C_float_complex'"; - else export CFLAGS+="-Dm_uint='struct _C_double_complex'"; + then export CFLAGS+=" -Dm_uint='struct _C_float_complex'"; + else export CFLAGS+=" -Dm_uint='struct _C_double_complex'"; fi fi; make.exe && make.exe test;