1 #!/bin/tcsh 2 3 autoconf 4 # We don't perfectly track freebsd stdlib.h definitions. This is fine when 5 # we count as a system header, but breaks otherwise, like during these 6 # tests. 7 ./configure --with-jemalloc-prefix=ci_ ${COMPILER_FLAGS:+ CC="$CC $COMPILER_FLAGS" CXX="$CXX $COMPILER_FLAGS"} $CONFIGURE_FLAGS 8 JE_NCPUS=`sysctl -n kern.smp.cpus` 9 gmake -j${JE_NCPUS} 10 gmake -j${JE_NCPUS} tests 11