Hash :
6239c287
Author :
Date :
2018-03-13T22:13:44
---
sudo: required
language: cpp
os:
- linux
compiler:
- gcc
- clang
env:
- CONFIGURE_OPTIONS=--disable-shared
- CONFIGURE_OPTIONS=
matrix:
include:
- os: linux
compiler: gcc
env: HOST=i386-pc-linux-gnu
- os: linux
compiler: gcc
env: HOST=moxie-elf
install:
- ./.travis/install.sh
script:
- ./autogen.sh
- if test x"$HOST" = x"i386-pc-linux-gnu"; then CC="$CC -m32"; CXX="$CXX -m32"; fi
- if test x"$HOST" = x"moxie-unknown-elf"; then LDFLAGS="-Tsim.ld"; RUNTESTFLAGS="--target_board moxie-sim"; fi
- ./configure ${HOST+--host=$HOST} ${CONFIGURE_OPTIONS}
- make
- make dist
- DEJAGNU=$TRAVIS_BUILD_DIR/.travis make check
- cat */testsuite/libffi.log