diff options
Diffstat (limited to 'cross/ubuntu-mingw.txt')
-rw-r--r-- | cross/ubuntu-mingw.txt | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/cross/ubuntu-mingw.txt b/cross/ubuntu-mingw.txt index 76a15a8..2f2fa34 100644 --- a/cross/ubuntu-mingw.txt +++ b/cross/ubuntu-mingw.txt @@ -1,8 +1,22 @@ -name = 'windows' +# Something crazy: compiling on Linux a crosscompiler that +# runs on Windows and generates code for OSX. + +[binaries] exe_wrapper = 'wine' # A command used to run generated executables. c = '/usr/bin/i686-w64-mingw32-gcc' cpp = '/usr/bin/i686-w64-mingw32-g++' ar = '/usr/bin/i686-w64-mingw32-ar' strip = '/usr/bin/i686-w64-mingw32-strip' +[properties] root = '/usr/i686-w64-mingw32' + +[host_machine] +name = 'windows' +cpu = 'x86' +endian = 'little' + +[target_machine] +name = 'darwin' +cpu = 'arm' +endian = 'little' |