Changes between Version 88 and Version 89 of UsersWikiWinCompile
- Timestamp:
- 11/23/09 16:51:39 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UsersWikiWinCompile
v88 v89 51 51 Run each file and be sure to change the install directory to c:\MinGW 52 52 53 == 5. Installing LibIconf == 54 55 For iconv we are going to compile our own instead of install from GNUWin since GNUWin changed some constants. 56 57 1. download source from http://ftp.gnu.org/gnu/libiconv (we are going to use libiconv-1.13.1.tar.gz) 58 2. gzip -d -c libiconv-1.13.1.tar.gz | tar xvf - 59 3. cd libiconv-1.13.1 60 4. ./configure --prefix=/c/mingw 61 5. make && make install 62 6. verify you are running the latest with -- iconv --version 63 64 == 6. Update m4 == 53 == 5. Update m4 == 65 54 66 55 1. download from: http://downloads.sourceforge.net/mingw/m4-1.4.7-MSYS.tar.bz2 67 56 2. untar and copy the m4.exe-file in the end of the path to C:\msys\1.0\bin 68 57 69 == 7. Update environment variables ==58 == 6. Update environment variables == 70 59 71 60 The below is copied direct from http://www.mingw.org/wiki/HOWTO_Install_the_MinGW_GCC_Compiler_Suite#toc33 … … 85 74 86 75 Set the environment variable HOME to C:\msys\1.0\home 76 77 == 7. Installing !LibIconv == 78 79 For iconv we are going to compile our own copy instead of installing from GNUWin. 80 81 * http://ftp.gnu.org/gnu/libiconv/libiconv-1.13.1.tar.gz 82 83 Save the source in your C:\thesrc directory. Open up the MSYS terminal. 84 {{{ 85 # cd /c/thesrc 86 # tar xvfz libiconv-1.13.1.tar.gz 87 # cd libiconv-1.13.1 88 # ./configure --prefix=/c/mingw 89 # make 90 # make install 91 }}} 92 Verify you are running the latest version of iconv 93 {{{ 94 # iconv --version 95 }}} 87 96 88 97 == 8. Installing Autoconf, Automake and Libtool ==