summaryrefslogtreecommitdiff
path: root/tools/configure
diff options
context:
space:
mode:
authorMaurus Cuelenaere <mcuelenaere@gmail.com>2009-02-04 20:59:27 +0000
committerMaurus Cuelenaere <mcuelenaere@gmail.com>2009-02-04 20:59:27 +0000
commite8da4477297ffb12603680f09fa9b2cd30d0b7b5 (patch)
treebb26896c839fd6a901ae8b4cd6223d824d592c27 /tools/configure
parentb0a3a563a139507cc8c1b679df9b6dd37dee3ec1 (diff)
downloadrockbox-e8da4477297ffb12603680f09fa9b2cd30d0b7b5.tar.gz
rockbox-e8da4477297ffb12603680f09fa9b2cd30d0b7b5.zip
Commit FS#9494 by Yoshihisa Uchida: add support for building the simulators under Windows using MingW
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19923 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/configure')
-rwxr-xr-xtools/configure10
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/configure b/tools/configure
index 3c1975d4de..9ea5f9f739 100755
--- a/tools/configure
+++ b/tools/configure
@@ -133,6 +133,16 @@ simcc () {
133 output="rockboxui.exe" # use this as output binary name 133 output="rockboxui.exe" # use this as output binary name
134 ;; 134 ;;
135 135
136 MINGW*)
137 echo "MinGW host detected"
138
139 # sdl version
140 GCCOPTS="$GCCOPTS `sdl-config --cflags`"
141 LDOPTS="`sdl-config --libs` -mconsole"
142
143 output="rockboxui.exe" # use this as output binary name
144 ;;
145
136 Linux) 146 Linux)
137 echo "Linux host detected" 147 echo "Linux host detected"
138 if [ "0" != `sdl-config --libs |grep -c mwindows` ]; then 148 if [ "0" != `sdl-config --libs |grep -c mwindows` ]; then