118 | | #this currently fails at linker phase with a whole bunch of errors like this without the platform.h |
| 118 | this fails at linker phase with a whole bunch of errors if you compile without doing |
| 119 | #linking errors seems to be caused by as described here [http://www.gaia-gis.it/spatialite-3.0.0-BETA/mingw64_how_to.html#env] |
| 120 | mingw64 is picking up the 32-bit dlls from syswow64 instead of the 64-bit dlss from windows/system32 |
| 121 | I may have over-copied, but to remedy before evening starting configure |
| 122 | with windows explorer copy the files from windows/system32 |
| 123 | |
| 124 | {{{ |
| 125 | ws2_32.dll, kernel32.dll, advapi32.dll, mscvrt.dll, user32.dll |
| 126 | }}} |
| 127 | |
| 128 | To your folder: C:\mingw\mingw64\x86_64-w64-mingw32\lib |
| 129 | and then rename them adding a lib extensions so you have |
| 130 | {{{ |
| 131 | libws2_32.dll, libkernel32.dll, libadvapi32.dll, libmscvrt.dll, libuser32.dll |
| 132 | }}} |
| 133 | |