/usr/share/doc/stalin/benchmarks/compile-gambit-fixnum-benchmark is in stalin 0.11-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 | #!/bin/sh
unset noclobber
ulimit -s unlimited
ulimit -c 0
echo compile $1
sed -f gambit-fixnum.sed $1.sc >$1-gambit.scm
time gsc $1-gambit
time gcc -O3 -fomit-frame-pointer -freg-struct-return\
-D___SINGLE_HOST -o $1-gambit $1-gambit.c $1-gambit_.c -lgambc
|