File: compile-and-run-bigloo-benchmark

package info (click to toggle)
stalin 0.11-10
  • links: PTS
  • area: main
  • in suites: forky, trixie
  • size: 71,700 kB
  • sloc: ansic: 1,327,976; lisp: 88,332; sh: 1,517; makefile: 229; sed: 100; csh: 28
file content (11 lines) | stat: -rwxr-xr-x 315 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
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