summaryrefslogtreecommitdiff
path: root/.travis.sh
blob: ad646783857250e92e15fbd714096650ec593792 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh -ex
make clean
make travis CC=gcc
make travis CC=clang
make travis CC=gcc CFLAGS="-m32 -g -O2" HOST="--host=i386-linux-gnu"
make travis CC=i686-w64-mingw32-gcc HOST="--host=i686-w64-mingw32" TEST="unittest/run.exe"
make travis CC=clang CFLAGS="-fsanitize=undefined" ASAN_OPTIONS="detect_leaks=0"
make travis CC=clang CFLAGS="-fsanitize=address -g" ASAN_OPTIONS="detect_leaks=0"
make travis CC=/usr/bin/clang TEST=analyze