home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 3
/
AACD03.BIN
/
AACD
/
Programming
/
sofa
/
archive
/
SmallEiffel.lha
/
SmallEiffel
/
misc
/
benchmarks
/
collection
/
bench5
/
bench.csh
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Linux/UNIX/POSIX Shell Script
|
1999-06-05
|
199 b
|
12 lines
#!/bin/csh -f
#
# Run this file to have a comparison
#
foreach b (*_bench.e)
set cmd="compile -clean $b make -no_split -boost -O3"
$cmd
echo "$b : "
time a.out
/bin/rm -f a.out
end