Signed-off-by: Rich Salz <rsalz@akamai.com>
Reviewed-by: Andy Polyakov <appro@openssl.org>
language: c
addons:
- apt_packages:
- - binutils-mingw-w64
- - gcc-mingw-w64
+ apt:
+ packages:
+ - gcc-5
+ - binutils-mingw-w64
+ - gcc-mingw-w64
+ sources:
+ - ubuntu-toolchain-r-test
os:
- linux
compiler:
- clang
- gcc
+ - gcc-5
- i686-w64-mingw32-gcc
- x86_64-w64-mingw32-gcc
- CONFIG_OPTS="--debug --strict-warnings"
matrix:
+ include:
+ - os: linux
+ compiler: gcc-5
+ env: CONFIG_OPTS="--debug --strict-warnings -fsanitize=address"
exclude:
+ - os: osx
+ compiler: gcc-5
- os: osx
compiler: i686-w64-mingw32-gcc
- os: osx
my $ecc = $cc;
$ecc = "clang" if `$cc --version 2>&1` =~ /clang/;
my $wopt;
- die "ERROR --strict-warnings requires gcc or clang" unless ($ecc =~ /gcc$/ or $ecc =~ /clang$/);
+ die "ERROR --strict-warnings requires gcc or clang" unless ($ecc =~ /gcc(-\d(\.\d)*)?$/ or $ecc =~ /clang$/);
foreach $wopt (split /\s+/, $gcc_devteam_warn)
{
$cflags .= " $wopt" unless ($cflags =~ /$wopt/)