File: compile-and-run-bigloo-benchmark

package info (click to toggle)
stalin 0.11-6
  • links: PTS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 110,396 kB
  • ctags: 163,122
  • sloc: ansic: 1,757,574; lisp: 88,332; sh: 1,514; makefile: 229; sed: 100; csh: 30
file content (11 lines) | stat: -rwxr-xr-x 313 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
unset noclobber
ulimit -s unlimited
ulimit -c 0
echo compile $1
sed -f bigloo.sed $1.sc >$1-bigloo.scm
time bigloo2.0e -call/cc -unsafe -Obench -O6 -fstack $2\
     -copt "-O3 -fomit-frame-pointer -freg-struct-return"\
     -o $1-bigloo -suffix scm $1-bigloo.scm
echo run $1
time ./$1-bigloo >/dev/null