Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | wiki tweaks regarding MinGW build enhancements |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
4e93e84e55cf3744029f52add0d9260a |
| User & Date: | jan.nijtmans 2012-08-24 08:13:51.486 |
Context
|
2012-08-25
| ||
| 01:48 | Update the built-in SQLite to the latest version from the SQLite trunk. check-in: d7736649cd user: drh tags: trunk | |
|
2012-08-24
| ||
| 13:15 | Better support for unicode filenames on Win32 (Not tested on other platforms yet, will not work!) [01a2f3a346] check-in: d8e1431fc0 user: jan.nijtmans tags: ticket-01a2f3a346 | |
| 08:16 | Merge in the mingw build enhancements check-in: abbc00fc5b user: jan.nijtmans tags: eclipse-project | |
| 08:13 | wiki tweaks regarding MinGW build enhancements check-in: 4e93e84e55 user: jan.nijtmans tags: trunk | |
| 05:56 | One more minor Win32 resource tweak. check-in: 02bff595e1 user: mistachkin tags: trunk | |
Changes
Changes to BUILD.txt.
| ︙ | ︙ | |||
8 9 10 11 12 13 14 | If you wish to use the original Makefile with no configuration, you can instead use: make -f Makefile.classic On a windows box, use one of the Makefiles in the win/ subdirectory, | | | > | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | If you wish to use the original Makefile with no configuration, you can instead use: make -f Makefile.classic On a windows box, use one of the Makefiles in the win/ subdirectory, according to your compiler and environment. If you have MinGW or MinGW-w64 installed on your system (Msys or Cygwin, or as cross-compile environment on Linux or Darwin), then consider: make -f win/Makefile.mingw If you have VC++ installed on your system, then consider: cd win; nmake /f Makefile.msc |
| ︙ | ︙ | |||
39 40 41 42 43 44 45 | For example: mkdir build cd build ../configure make | | | 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | For example: mkdir build cd build ../configure make This will now keep all generates files separate from the maintained source code. -------------------------------------------------------------------------- Here are some notes on what is happening behind the scenes: * The configure script (if used) examines the options given |
| ︙ | ︙ |
Changes to www/build.wiki.
| ︙ | ︙ | |||
88 89 90 91 92 93 94 | <li><p><i>Unix</i> → the configure-generated Makefile should work on all unix and unix-like systems. Simply type "<b>make</b>". <li><p><i>Unix without running "configure"</i> → if you prefer to avoid running configure, you can also use: <b>make -f Makefile.classic</b>. You may want to make minor edits to Makefile.classic to configure the build for your system. | | | > > > | 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 |
<li><p><i>Unix</i> → the configure-generated Makefile should work on
all unix and unix-like systems. Simply type "<b>make</b>".
<li><p><i>Unix without running "configure"</i> → if you prefer to avoid running configure, you
can also use: <b>make -f Makefile.classic</b>. You may want to make minor
edits to Makefile.classic to configure the build for your system.
<li><p><i>MinGW/MinGW-w64</i> → Use the mingw makefile:
"<b>make -f win/Makefile.mingw</b>". On a Windows box you will
need either Cygwin or Msys as build environment. On Cygwin, Linux
or Darwin you may want to make minor edits to win/Makefile.mingw
to configure the cross-compile environment.
<li><p><i>VC++</i> → Use the msc makefile. First
change to the "win/" subdirectory ("<b>cd win</b>") then run
"<b>nmake /f Makefile.msc</b>".
</ol>
</ol>
|
| ︙ | ︙ |