Re: [Chicken-users] cross compilation

2007-04-26 Thread felix winkelmann

On 4/26/07, john [EMAIL PROTECTED] wrote:

Thanks for the work on this. Look forward to trying it out.



You're welcome. The process may not be completely smooth,
but the general way of doing cross-development should be
clear. Suggestions are welcome.


cheers,
felix


___
Chicken-users mailing list
Chicken-users@nongnu.org
http://lists.nongnu.org/mailman/listinfo/chicken-users


Re: [Chicken-users] chicken-setup feature-request

2007-04-26 Thread Graham Fawcett

On 4/25/07, foobar [EMAIL PROTECTED] wrote:

The thing is that i want to be able to specifiy the path where
eggs are fetched and built into. At the moment i have a separate
directory where i need to change into prior to a chicken-setup-call
in order to not pollute my filesystem (my homedir most of the time)
with the eggs being spread everywhere :)


On Unix, pending a fix, you could always write a script like:

#!/bin/bash
pushd .  /dev/null
cd /tmp
chicken-setup $@
popd  /dev/null

call it csetup or something like that; you'll get the effect you
want. (I'm sure there's a better way to write the script, but this
would do the trick.)

cheers,
Graham


___
Chicken-users mailing list
Chicken-users@nongnu.org
http://lists.nongnu.org/mailman/listinfo/chicken-users