Remove the distinction between inline/outline storage for bytevectors.
[bpt/guile.git] / benchmark-guile.in
CommitLineData
dd897aaf
DH
1#! /bin/sh
2# Usage: benchmark-guile [-i GUILE-INTERPRETER] [GUILE-BENCHMARK-ARGS]
3# If `-i GUILE-INTERPRETER' is omitted, use ${top_builddir}/pre-inst-guile.
4# See ${top_srcdir}/benchmark-suite/guile-benchmark for documentation on GUILE-BENCHMARK-ARGS.
5#
6# Example invocations:
7# ./benchmark-guile
8# ./benchmark-guile numbers.bm
9# ./benchmark-guile -i /usr/local/bin/guile
10# ./benchmark-guile -i /usr/local/bin/guile numbers.bm
11
12set -e
13
14top_builddir=@top_builddir_absolute@
15top_srcdir=@top_srcdir_absolute@
16
17BENCHMARK_SUITE_DIR=${top_srcdir}/benchmark-suite
18
19if [ x"$1" = x-i ] ; then
20 guile=$2
21 shift
22 shift
23else
24 guile=${top_builddir}/pre-inst-guile
25fi
26
27GUILE_LOAD_PATH=$BENCHMARK_SUITE_DIR
28export GUILE_LOAD_PATH
29
30if [ -f "$guile" -a -x "$guile" ] ; then
31 echo Benchmarking $guile ... "$@"
32 echo with GUILE_LOAD_PATH=$GUILE_LOAD_PATH
33else
34 echo ERROR: Cannot execute $guile
35 exit 1
36fi
37
38# documentation searching ignores GUILE_LOAD_PATH.
39if [ ! -f guile-procedures.txt ] ; then
40 @LN_S@ libguile/guile-procedures.txt .
41fi
42
43exec $guile \
44 -e main -s "$BENCHMARK_SUITE_DIR/guile-benchmark" \
45 --benchmark-suite "$BENCHMARK_SUITE_DIR/benchmarks" \
46 --log-file benchmark-guile.log "$@"
47
48# benchmark-guile ends here