Changes between Version 1 and Version 2 of DevWikiMingW64_Setup
- Timestamp:
- 06/23/13 17:35:04 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DevWikiMingW64_Setup
v1 v2 84 84 85 85 {{{ 86 #if you are building for 32-bit change ming64 to ming32 87 export PROJECTS=/c/ming64/projects 88 #for a 64-bit build 89 export MINGHOST=x86_64-w64-mingw32 90 #if you are building for 32-bit change to this 91 #export MINGHOST=i686-w64-mingw32 92 93 #this part is not necessary 94 #but we like to prefix our binary folders with 95 #version 96 export OS_BUILD=64 #change to 32 if building for 32 86 export OS_BUILD=64 87 if [[ "${OS_BUILD}" == "64" ]] ; then 88 export MINGHOST=x86_64-w64-mingw32 89 else 90 export MINGHOST=i686-w64-mingw32 91 fi 97 92 }}} 98 93 … … 144 139 }}} 145 140 141 For CUnit 142 143 {{{ 144 cd ${PROJECTS} 145 wget http://iweb.dl.sourceforge.net/project/cunit/CUnit/2.1-2/CUnit-2.1-2-src.tar.bz2 146 tar -xvf CUnit-2.1-2-src.tar.bz2 147 cd CUnit-2.1-2 148 ./configure --build=${MINGHOST} --prefix=/mingw/${MINGHOST} 149 make clean 150 make && make install 151 make check 152 exit; 153 }}} 154 155