Fix lowercase/uppercase in docs

This commit is contained in:
Volker Diels-Grabsch 2017-02-17 12:58:40 +01:00
parent ad6146ca01
commit a027d71cc1
1 changed files with 5 additions and 5 deletions

View File

@ -137,20 +137,20 @@
<p>
How to choose MXE target:
<ol>
<li>if you want a 64 bit Windows executable,
<li>If you want a 64 bit Windows executable,
statically linked into one big executable:
use MXE_TARGET x86_64-w64-mingw32.static;</li>
<li>if you want a 64 bit Windows executable,
<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>
<li>if you want a 32 bit Windows executable,
<li>If you want a 32 bit Windows executable,
statically linked into one big executable:
use MXE_TARGET i686-w64-mingw32.static;</li>
<li>if you want a 32 bit Windows executable,
<li>If you want a 32 bit Windows executable,
split into an executable and dependant dlls
use MXE_TARGET i686-w64-mingw32.shared.</li>
</ol>
Remark: the 'w64-mingw32' in those names are left-overs from
Remark: The 'w64-mingw32' in those names are left-overs from
historical evolutions in the open source cross-compilation world
and refer in no way to the result being 64 or 32 bit Windows.
</p>