Changeset 1232


Ignore:
Timestamp:
29/12/2006 23:49:13 (5 years ago)
Author:
chris
Message:

Updated docs for building MinGW builds on Linux (refs #3)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • box/chris/general/docs/backup/win32_build_on_linux_using_mingw.txt

    r574 r1232  
    2929        tar xzvf openssl-0.9.8b.tar.gz 
    3030        cd openssl-0.9.8b 
    31         ./Configure mingw 
     31        ./Configure --prefix=/usr/local/i386-mingw32 mingw 
    3232        make makefile.one 
    3333        wget http://bbdev.fluffy.co.uk/svn/box/chris/win32/support/openssl-0.9.8b-mingw-cross.patch 
    3434        patch -p1 < openssl-0.9.8b-mingw-cross.patch 
    3535        make -f makefile.one 
     36        make -f makefile.one install 
     37 
     38Download PCRE from  
     39[http://prdownloads.sourceforge.net/pcre/pcre-6.3.tar.bz2?download] 
     40 
     41Unpack: 
     42 
     43        tar xjvf pcre-6.3.tar.bz2 
     44        cd pcre-6.3 
     45 
     46Configure and make: 
     47 
     48        ./configure --host=i586-mingw32msvc --prefix=/usr/i386-mingw32/ 
     49        make winshared wininstall 
     50        cp .libs/libpcreposix.a /usr/i386-pc-mingw32/lib 
     51        cp pcreposix.h /usr/i386-pc-mingw32/include/regex.h 
    3652 
    3753Configure Box with: 
Note: See TracChangeset for help on using the changeset viewer.