- Timestamp:
- 02/13/09 13:56:57 (16 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/INSTALL
r25 r144 10 10 - GNU Make 11 11 - GCC 12 13 Note that iconv support is required, as specified in IEEE Std 1003.1 14 (POSIX.1-2001). Some platforms still do not contain support for this 15 natively, in which case you may need to install libiconv from: 16 http://www.gnu.org/software/libiconv/ 12 17 13 18 … … 44 49 45 50 For more information, see the Makefiles. 51 52 Primitive build features have been added to support cross-compiling to 53 Windows binaries using MinGW. For more information on this, see: 54 doc/mingw-build.txt -
trunk/Makefile
r143 r144 23 23 endif 24 24 25 26 ################################################################################ 27 # MinGW cross-compiling build settings 25 28 ifdef BUILD_MINGW 29 30 ## These may need to be changed 26 31 CC=i586-mingw32msvc-cc 32 LIBICONV_PATH=/usr/local/src/libiconv-1.9.2-1-lib 33 34 ## These probably do not need to be changed 27 35 BIN_EXT=.exe 28 LIBICONV_PATH=/usr/local/src/libiconv-1.9.2-1-lib29 36 INC:=$(INC) -I$(LIBICONV_PATH)/include 30 37 EXTRA_OBJ=$(LIBICONV_PATH)/lib/libiconv.dll.a 38 31 39 endif 40 ################################################################################ 41 32 42 33 43 BUILD=$(CURDIR)/build
Note: See TracChangeset
for help on using the changeset viewer.