Skip to content

Commit a2db7a1

Browse files
Biztactix-Ryanalejandromgk
authored andcommitted
Update to Documentation for Windows Build (#6)
* Update build-windows.md Libtool is also required * Update build-windows.md Automake is needed too * Update build-windows.md Closest I've gotten to a build.... * Update build-windows.md Needs g++ too
1 parent b07d7a1 commit a2db7a1

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

doc/build-windows.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -16,24 +16,28 @@ These steps can be performed on, for example, an Ubuntu VM. The depends system
1616
will also work on other Linux distributions, however the commands for
1717
installing the toolchain will be different.
1818

19+
For Ubuntu 14.04.05 - This has been tested from FreshInstall of Desktop Ubuntu 14.04.05
20+
1921
First install the toolchains:
2022

21-
sudo apt-get install g++-mingw-w64-i686 mingw-w64-i686-dev g++-mingw-w64-x86-64 mingw-w64-x86-64-dev
23+
sudo apt-get install g++ g++-mingw-w64-i686 mingw-w64-i686-dev g++-mingw-w64-x86-64 mingw-w64-x86-64-dev libtool automake libdb++-dev
2224

2325
To build executables for Windows 32-bit:
2426

2527
cd depends
2628
make HOST=i686-w64-mingw32 -j4
2729
cd ..
28-
./configure --prefix=`pwd`/depends/i686-w64-mingw32
30+
./autogen.sh
31+
./configure --with-incompatible-bdb --prefix=`pwd`/depends/i686-w64-mingw32
2932
make
3033

3134
To build executables for Windows 64-bit:
3235

3336
cd depends
3437
make HOST=x86_64-w64-mingw32 -j4
3538
cd ..
36-
./configure --prefix=`pwd`/depends/x86_64-w64-mingw32
39+
./autogen.sh
40+
./configure --with-incompatible-bdb --prefix=`pwd`/depends/x86_64-w64-mingw32
3741
make
3842

3943
For further documentation on the depends system see [README.md](../depends/README.md) in the depends directory.

0 commit comments

Comments
 (0)