• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1language: c
2
3compiler:
4  - gcc
5  - clang
6
7os:
8  - linux
9  - osx
10
11env:
12  - CONFIG=""
13  - CONFIG="--enable-assertions"
14  - CONFIG="--enable-fixed-point"
15  - CONFIG="--enable-fixed-point --disable-float-api"
16  - CONFIG="--enable-fixed-point --enable-assertions"
17
18script:
19  - ./autogen.sh
20  - ./configure $CONFIG
21  - make distcheck
22