Lines Matching +full:gcc +full:- +full:g

25 # https://docs.travis-ci.com/user/languages/minimal-and-generic/
34 - |-
35 if test -f "./scripts/$TRAVIS_OS_NAME/before_install.sh"; then
40 - |-
41 if test -f "./scripts/$TRAVIS_OS_NAME/before_script.sh"; then
49 make -j3
50 make -j3 tests
54 - |-
55 if test -f "./scripts/$TRAVIS_OS_NAME/script.sh"; then
100 # The 'default' configuration is gcc, on linux, with no compiler or configure
101 # flags. We also test with clang, -m32, --enable-debug, --enable-prof,
102 # --disable-stats, and --with-malloc-conf=tcache:false. To avoid abusing
109 GCC = Option.as_compiler('CC=gcc CXX=g++') variable
122 '--enable-debug',
123 '--enable-prof',
124 '--disable-stats',
125 '--disable-libdl',
126 '--enable-opt-safety-checks',
127 '--with-lg-page=16',
148 # For non-CL compilers under Windows (for now it's only MinGW-GCC),
149 # -fcommon needs to be specified to correctly handle multiple
151 # Weak symbols don't work with MinGW-GCC.
153 return ['-fcommon']
157 # We get some spurious errors when -Warray-bounds is enabled.
158 extra_cflags = ['-Werror', '-Wno-array-bounds']
161 '-Wno-unknown-warning-option',
162 '-Wno-ignored-attributes'
166 '-Wno-deprecated-declarations',
181 configure_flags.append('--with-malloc-conf=' + ','.join(malloc_conf))
184 compiler = GCC.value
191 compiler_flags.append('-m32')
204 job = ' - os: {}\n'.format(os)
212 Generates different combinations of non-standard compilers, compiler flags,
262 [Option.as_configure_flag('--enable-prof')] +
273 Option.as_configure_flag('--enable-debug'),
285 Option.as_configure_flag('--enable-debug'),
286 Option.as_configure_flag('--enable-prof --enable-prof-libunwind'),
287 Option.as_configure_flag('--with-lg-page=16 --with-malloc-conf=tcache:false'),
297 - os: linux
298 env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-debug \
299 --disable-cache-oblivious --enable-stats --enable-log --enable-prof" \
300 EXTRA_CFLAGS="-Werror -Wno-array-bounds"
301 # --enable-expermental-smallocx:
302 - os: linux
303 env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-debug \
304 --enable-experimental-smallocx --enable-stats --enable-prof" \
305 EXTRA_CFLAGS="-Werror -Wno-array-bounds"