diff options
| -rwxr-xr-x | contrib/run-one | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/run-one b/contrib/run-one index b2dc0ff..c623fb1 100755 --- a/contrib/run-one +++ b/contrib/run-one @@ -1,7 +1,7 @@ #!/bin/sh -cargo build --release +RUSTFLAGS="-C target-cpu=native" cargo build --release echo "-- New session started $(date --iso-8601=seconds) --" >> output.log nice -n 19 ./target/release/wwb game.bin | tee -ai output.log -echo "-- End session started $(date --iso-8601=seconds) --" >> output.log
\ No newline at end of file +echo "-- End session started $(date --iso-8601=seconds) --" >> output.log |
