summaryrefslogtreecommitdiff
path: root/scripts/flags.sh
blob: 0b1f69ae1ca93a29b1b4a759b49d2dd348c5345b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/env bash

if [[ ${TRAVIS_OS_NAME} == "linux" ]]; then
    export DISPLAY=:99.0

    sh -e /etc/init.d/xvfb start

    # use g++ that supports c++11
    if [[ ${CXX} == "g++" ]]; then
        export CXX="g++-4.8"
        export CC="gcc-4.8"
    fi

    # If building in debug then turn on sanitizers.
    # They should both work with latest g++/clang++
    # but it's not worth a standalone matrix so here
    # we just test address->gcc and thread->clang for
    # some limited coverage
    # if [[ ${BUILDTYPE} == "Debug" ]]; then
    #     if [[ ${CXX} == "g++" ]]; then
    #         export CXXFLAGS="-fsanitize=address -g ${CXXFLAGS}"
    #         export CFLAGS="-fsanitize=address -g ${CFLAGS}"
    #         export LDFLAGS="-fsanitize=address  ${LDFLAGS}"
    #     elif [[ ${CXX} == "clang++" ]]; then
    #         export CXXFLAGS="-fsanitize=thread -g -fPIC ${CXXFLAGS}"
    #         export CFLAGS="-fsanitize=thread -g ${CFLAGS}"
    #         export LDFLAGS="-fsanitize=thread -pie ${LDFLAGS}"
    #     fi
    # fi
fi

# turn off a few warnings
export CXXFLAGS="-Wno-unknown-warning-option -Wno-unused-local-typedefs -Wno-unknown-pragmas ${CXXFLAGS}";