107
edits
Ccawley2011 (talk | contribs) |
(Updated console patch) |
||
Line 447: | Line 447: | ||
By default ScummVM is compiled as a Windows subsystem application with no console output. If you need the console, you will need to apply the following patch: | By default ScummVM is compiled as a Windows subsystem application with no console output. If you need the console, you will need to apply the following patch: | ||
<syntaxhighlight lang="diff"> | <syntaxhighlight lang="diff"> | ||
--- a/configure | --- a/configure | ||
+++ b/configure | +++ b/configure | ||
@@ - | @@ -6037,6 +6037,7 @@ | ||
if test "$_windows_unicode" = yes; then | |||
append_var DEFINES "-DUNICODE -D_UNICODE" | |||
fi | |||
+ LIBS=`echo $LIBS | sed -e 's/-mconsole//g' -e 's/-mwindows//g' | |||
;; | ;; | ||
riscos) | |||
append_var CXXFLAGS "-mno-poke-function-name" | |||
</syntaxhighlight> | </syntaxhighlight> | ||
edits