Skip to content
crcn edited this page Mar 9, 2012 · 8 revisions

Special Notes

  • Do NOT use cygwin - apps compiled in cygwin depend on cygwin. Apps compiled in mingw can run without mingw.

Prerequisits

My Environment

Installation

You'll need to first manually download curl: http://curl.haxx.se/download/curl-7.20.0.tar.gz

Next, copy the following shell script to C:\Users\Administrator\Documents\Development\bootstrap\install-devel.sh:

#!/bin/bash

echo "Installing Dev Dependencies"

# first install curl 

cd /c/Users/Administrator/Downloads
tar -xf curl-7.20.0.tar.gz
cd curl-7.20.0
./configure --prefix=/mingw
make
make install

next, open mingw, and call:

cd ~/Documents/Development/bootstrap
./install-devel.sh
Clone this wiki locally