Changes between Version 22 and Version 23 of DevWikiWinMingW64


Ignore:
Timestamp:
Apr 13, 2011, 4:48:52 AM (13 years ago)
Author:
robe
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • DevWikiWinMingW64

    v22 v23  
    4949 * http://ftp.gnu.org/gnu/autoconf/autoconf-2.65.tar.gz
    5050 * 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
    5452
    5553
     
    5856tar -xvf autoconf-2.65.tar.gz
    5957cd 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)
    6159make && make install
    6260autoconf --version
     
    6563repeat same exercise for automake
    6664
    67 For libtool -- GOT STUCK HERE/
     65For libtool
    6866{{{
    6967cd /c/projects
    70 tar -xvf libtool-2.2.10.tar.gz
     68tar -xvf libtool-2.4.10.tar.gz
    7169cd 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
     72make clean && make && make install
     73libtool --version
    7474
    7575}}}