blob: 571e02b7b4397fb2d24fe658feef148a95fba63a (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/bash
set -e
export CCACHE_CPP2=yes
# -Wfloat-conversion not available for gcc 4.8
CC="ccache gcc" CFLAGS="-g -Wall -Wextra -Werror -Wunused-parameter -Wmissing-prototypes -Wmissing-declarations -Wformat -Werror=format-security -Wshadow -O2" ./travis/install.sh
|