Re: [Chicken-users] cross compilation setup

2008-09-04 Thread felix winkelmann
On Wed, Sep 3, 2008 at 12:22 PM, Jörg F. Wittenberger [EMAIL PROTECTED] wrote: PATH=yourmingwpath:$PATH make PLATFORM=cross-linux-mingw PREFIX=yourprefix install What is this supposed to build? The host system, the target system or both? The target system. It did not work for me: looks

Re: [Chicken-users] cross compilation setup

2008-09-04 Thread F. Wittenberger
Am Donnerstag, den 04.09.2008, 10:57 +0200 schrieb felix winkelmann: On Wed, Sep 3, 2008 at 12:22 PM, Jörg F. Wittenberger [EMAIL PROTECTED] wrote: PATH=yourmingwpath:$PATH make PLATFORM=cross-linux-mingw PREFIX=yourprefix install What is this supposed to build? The host system, the

Re: [Chicken-users] cross compilation setup

2008-09-04 Thread felix winkelmann
On Thu, Sep 4, 2008 at 2:11 PM, Jörg F. Wittenberger [EMAIL PROTECTED] wrote: Well, in the second step I tried to build a cross compiler to create windows binaries from the chicken host. Eventually I tried mingw-chicken-setup - the cross compile thingy - to set up easiffy. Since that's a

Re: [Chicken-users] cross compilation setup

2008-09-03 Thread F. Wittenberger
Am Dienstag, den 02.09.2008, 10:01 +0200 schrieb felix winkelmann: Hi! Try: PATH=yourmingwpath:$PATH make PLATFORM=cross-linux-mingw PREFIX=yourprefix install What is this supposed to build? The host system, the target system or both? It did not work for me: looks for chicken.exe

Re: [Chicken-users] cross compilation setup

2008-09-02 Thread felix winkelmann
Hi! Try: PATH=yourmingwpath:$PATH make PLATFORM=cross-linux-mingw PREFIX=yourprefix install !!! Use -host-extension - not -host as the wiki said. -host is the same as -H and changes the download host name! Right, thanks for mentioning this. cheers, felix

[Chicken-users] cross compilation setup

2008-09-01 Thread F. Wittenberger
Hi all, I'm trying to set up a cross compilation environment following the steps details in http://chicken.wiki.br/cross-compilation . This did not fully apply, here is what I did: I want to compile on Linux (Ubuntu 8.04) and build Windows executables. 1. I installed the mingw32 package. 2.