blob: d84fdd52b3e91cad69d6f9cce7984c01a6bb0e8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
#
# Skeleton for continuous integration testing.
##############################################################################
set -x
export CFLAGS="-DITERATE=400 -DPAIRS_S=100 -DITERATIONS=24 -DSTEPS=10000"
./configure $@
if [ `uname -s` = "FreeBSD" ]; then
make -j $(sysctl -n hw.ncpu)
else
make -j
fi
|