Skip to content

Commit

Permalink
Enable optimization. Closes #7.
Browse files Browse the repository at this point in the history
  • Loading branch information
burner1024 committed Jul 14, 2019
1 parent 0ab2602 commit f6d2df7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extra/buildall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function process_file() {
script_name="$(echo "$f" | tr "[A-Z]" "[a-z]" | sed 's|\.ssl$|.int|')" # lowercase
WINEARCH=win32 WINEDEBUG=-all wine "$bin_dir/wcc386.exe" "$f" -p -fo="$f.tmp" -w # preprocess
sed -i '/^[[:space:]]*$/d' "$f.tmp" # delete empty lines
WINEARCH=win32 WINEDEBUG=-all wine "$bin_dir/compile.exe" -n -l -q "$f.tmp" -o "$dst/$script_name" # compile
WINEARCH=win32 WINEDEBUG=-all wine "$bin_dir/compile.exe" -n -l -q -O2 "$f.tmp" -o "$dst/$script_name" # compile
rm -f "$f.tmp"
}
# compile all
Expand Down

0 comments on commit f6d2df7

Please sign in to comment.