Skip to content
Snippets Groups Projects
Commit ff85f00f authored by Simon Marlow's avatar Simon Marlow
Browse files

[project @ 1999-07-15 09:56:04 by simonmar]

Use +RTS -S<file> rather than +RTS -s<file>, since the latter only
gives summary statistics now.
parent 8ba1296c
No related branches found
No related tags found
No related merge requests found
...@@ -158,7 +158,7 @@ foreach $a ( @PgmArgs ) { ...@@ -158,7 +158,7 @@ foreach $a ( @PgmArgs ) {
# deal with system-specific timing options # deal with system-specific timing options
$TimingMagic = ''; $TimingMagic = '';
if ( $SysSpecificTiming =~ /^ghc/ ) { if ( $SysSpecificTiming =~ /^ghc/ ) {
$TimingMagic = "+RTS -s$StatsFile -RTS" $TimingMagic = "+RTS -S$StatsFile -RTS"
} elsif ( $SysSpecificTiming eq 'hbc' ) { } elsif ( $SysSpecificTiming eq 'hbc' ) {
$TimingMagic = "-S$StatsFile"; $TimingMagic = "-S$StatsFile";
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment