Use launcher script to run smalltalk jv
authorJan Vrany <jan.vrany@fit.cvut.cz>
Wed, 12 Feb 2020 15:01:48 +0000
branchjv
changeset 563 9dda25363094
parent 533 1bed627ec135
child 564 089cc2fa6c6c
Use launcher script to run smalltalk ...rather than binary. This makes it work in both, in-tree builds and (new) out-of-tree builds.
reports/report-runner.bat
reports/report-runner.sh
--- a/reports/report-runner.bat	Wed Nov 14 12:50:40 2018 +0100
+++ b/reports/report-runner.bat	Wed Feb 12 15:01:48 2020 +0000
@@ -1,1 +1,1 @@
-call %~dp0\..\..\..\projects\smalltalk\stx -Mold:64000 -I --abortOnSEGV  --execute %~dp0\report-runner.st %*
\ No newline at end of file
+call %~dp0\..\..\..\projects\smalltalk\smalltalk -Mold:64000 -I --abortOnSEGV  --execute %~dp0\report-runner.st %*
--- a/reports/report-runner.sh	Wed Nov 14 12:50:40 2018 +0100
+++ b/reports/report-runner.sh	Wed Feb 12 15:01:48 2020 +0000
@@ -1,3 +1,3 @@
 #!/bin/sh
 DIR=`dirname $0`
-exec "$DIR/../../../projects/smalltalk/stx" -Mold:64000 -I --abortOnSEGV --execute "$DIR/report-runner.st" "$@"
+exec "$DIR/../../../projects/smalltalk/smalltalk" -Mold:64000 -I --abortOnSEGV --execute "$DIR/report-runner.st" "$@"