Changes between Version 22 and Version 23 of DevWikiWinMingW64
- Timestamp:
- 04/13/11 04:48:52 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DevWikiWinMingW64
v22 v23 49 49 * http://ftp.gnu.org/gnu/autoconf/autoconf-2.65.tar.gz 50 50 * http://ftp.gnu.org/gnu/automake/automake-1.11.tar.gz 51 * http://ftp.gnu.org/gnu/libtool/libtool-2.2.10.tar.gz 52 53 51 * http://ftp.gnu.org/gnu/libtool/libtool-2.4.tar.xz 54 52 55 53 … … 58 56 tar -xvf autoconf-2.65.tar.gz 59 57 cd autoconf-2.65 60 ./configure --build=i686-w64-mingw32 (if you are building for 64-bit then use --build=x86_64-w64-mingw32)58 ./configure --build=i686-w64-mingw32 --host=i686-w64-mingw32 (if you are building for 64-bit then use --build=x86_64-w64-mingw32) 61 59 make && make install 62 60 autoconf --version … … 65 63 repeat same exercise for automake 66 64 67 For libtool -- GOT STUCK HERE/65 For libtool 68 66 {{{ 69 67 cd /c/projects 70 tar -xvf libtool-2. 2.10.tar.gz68 tar -xvf libtool-2.4.10.tar.gz 71 69 cd libtool-2.2.10 72 ./configure --host=i686-w64-mingw32 --build=i686-w64-mingw32 (if you are building for 64-bit then use --host=x86_64-w64-mingw32) 73 make 70 ./configure --build=i686-w64-mingw32 --host=i686-w64-mingw32 --target=i686-w64-mingw32 --disable-shared 71 #if you are building for 64-bit then use --host=x86_64-w64-mingw32 for the build,host,target 72 make clean && make && make install 73 libtool --version 74 74 75 75 }}}