homepage: s/MXE_TARGET/MXE_TARGETS/

This commit is contained in:
Boris Nagaev 2017-07-01 04:15:54 +02:00
parent cf385c6a2f
commit 2f399b8f60
1 changed files with 4 additions and 4 deletions

View File

@ -139,16 +139,16 @@
<ol>
<li>If you want a 64 bit Windows executable,
statically linked into one big executable:
use MXE_TARGET x86_64-w64-mingw32.static;</li>
use MXE_TARGETS x86_64-w64-mingw32.static;</li>
<li>If you want a 64 bit Windows executable,
split into an executable and dependant dlls
use MXE_TARGET x86_64-w64-mingw32.shared;</li>
use MXE_TARGETS x86_64-w64-mingw32.shared;</li>
<li>If you want a 32 bit Windows executable,
statically linked into one big executable:
use MXE_TARGET i686-w64-mingw32.static;</li>
use MXE_TARGETS i686-w64-mingw32.static;</li>
<li>If you want a 32 bit Windows executable,
split into an executable and dependant dlls
use MXE_TARGET i686-w64-mingw32.shared.</li>
use MXE_TARGETS i686-w64-mingw32.shared.</li>
</ol>
Remark: The 'w64-mingw32' in those names are left-overs from
historical evolutions in the open source cross-compilation world