Does anyone know how to cross compile an application for windows?
I have tried to compile under windows using Cygwin but it doesnt work.
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Which language? Easiest way… use Java.
Good luck.
On 02/09/2010 01:56 PM, buddhadakid wrote:
>
> Does anyone know how to cross compile an application for windows?
> I have tried to compile under windows using Cygwin but it doesnt work.
>
>
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.12 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
iQIcBAEBAgAGBQJLcc9JAAoJEF+XTK08PnB5CKoP/iZTN5zqWQaIxN6x/IHhEH7s
riynCc33vNBKx7qA+J4v0vPOgfYIB586x4W/cKKQEX6DEUhzjfD4kLiTM5nuL4ak
BZrHNVYG4ccXe1Q1vYM/16l1V6XuABrlD5yh5ohJu2zHbNz5ZsO1Wn00wZwDUe33
5Ajo4h4hw8wxcZM2C9XM/D/qF9LDejSKKns7Jg1cCcsB86VYLjr1XDkyK1uKN2Gj
Ij45pIShY9Zd8nXsx8pRuT+ZzdIiB++to82W7PH0mvORpQDy5jLKwVTtJh3OhCxb
lmqloVZFXSPs1Hd1Vfvw5bTCKhxErdbYd+XKIVUyU+5A3JOKdaG4+xpLSfa82Kha
zoy7nO1U5eMKVfFbiuv4BL6bYMUVuNGTLqsUVISna7vm9vtEWpmIP6c/PslqK5Pf
O0U/vM5j5Ij3koJfcvoZKGECWiS/M+1NJqzL7f3JaQA/sIiyoUqXs1YHBDSFKU52
D03Kzk+FIu3JYWGXhT4LC9E3dtI1kY3MI42VBEaPEcqwo7SYxBOkiH77CcFF4ugP
NufMDRc5ewkL4qkdj99YLjaway7hxhgAqWDCDS9b6ySnJ2OdvA+ezPBwlAJtSVTI
Rm8ePF1QwrgNoeXe6nFGw1fozCvK7CQWFaFabsehc9iZ9thrBV6bR8TsQQ5a2kTg
YAEa7O6KjbumAIewkPtR
=waZS
-----END PGP SIGNATURE-----
C+ or C++ i believe. its Banshee
Banshee is written in C#. You can compile C# into Bytecode that will run on all of the supported platforms/systems (no need of cross-compiling). I never had to work with this, so sorry for no further advice (and eventually wrong information…), but as far as I know there are some troubles between the Linux-implementation “Mono” and the Microsoft-implementation “.net”. Perhaps try to install Mono on Windows and see if it works.
I’ve found a link that will perhaps help a little:
Cross-platform Development – Lessons Learned from Banshee/Mono
Edit: There is no “C+” language out there.
It is “C” and “C++”. It’s a worplay due to the increment-operator “++” in C.
mingw for linux
Index of /repositories/windows:/mingw:/win32:/legacy/openSUSE_11.2/i586
Edit: Note this works for c/c++
Oknay i think i know what i need to do. I am using Cygwin to compile on windows for windows but everytime i do it Banshee cant find the (previously compiled) dependencies because they were built for windows. If i build the dependencies for linux using Cygwin, then build Banshee for windows it should find the proper dependencies and build.
So now my question is how do i compile under Cygwin for linux?