Imported Upstream version 2.9.0
[debian/cc1111] / support / scripts / sdcc_cygwin_mingw32
1 #!/bin/sh
2 # Script to "cross" compile with mingw32 under Cygwin
3
4 ./configure -C \
5 --prefix="/sdcc" \
6 --datarootdir="/sdcc" \
7 docdir="\${datarootdir}/doc" \
8 include_dir_suffix="include" \
9 lib_dir_suffix="lib" \
10 sdccconf_h_dir_separator="\\\\" \
11 CC="gcc -mno-cygwin" \
12 CXX="g++ -mno-cygwin"
13
14 make 2>&1 | tee make.log