Changeset 144


Ignore:
Timestamp:
02/13/09 13:56:57 (15 years ago)
Author:
tim
Message:

updated MinGW build documentation

Location:
trunk
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/INSTALL

    r25 r144  
    1010 - GNU Make
    1111 - GCC
     12
     13Note 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
     15natively, in which case you may need to install libiconv from:
     16  http://www.gnu.org/software/libiconv/
    1217
    1318
     
    4449
    4550For more information, see the Makefiles.
     51
     52Primitive build features have been added to support cross-compiling to
     53Windows binaries using MinGW.  For more information on this, see:
     54  doc/mingw-build.txt
  • trunk/Makefile

    r143 r144  
    2323endif
    2424
     25
     26################################################################################
     27# MinGW cross-compiling build settings
    2528ifdef BUILD_MINGW
     29
     30## These may need to be changed
    2631CC=i586-mingw32msvc-cc
     32LIBICONV_PATH=/usr/local/src/libiconv-1.9.2-1-lib
     33
     34## These probably do not need to be changed
    2735BIN_EXT=.exe
    28 LIBICONV_PATH=/usr/local/src/libiconv-1.9.2-1-lib
    2936INC:=$(INC) -I$(LIBICONV_PATH)/include
    3037EXTRA_OBJ=$(LIBICONV_PATH)/lib/libiconv.dll.a
     38
    3139endif
     40################################################################################
     41
    3242
    3343BUILD=$(CURDIR)/build
Note: See TracChangeset for help on using the changeset viewer.