Tomas Hlavaty scripsit: > However, it seems that the compiled csc has a bug, where it treats the > env var value as executable name instead of letting the shell interpret it:
Letting the shell interpret things is a Bad Idea. I recommend that you put a script somewhere that looks like this: #!/bin/sh exec /usr/bin/gcc -m32 "$@" and reference that as your compiler. -- John Cowan http://www.ccil.org/~cowan [email protected] After fixing the Y2K bug in an application: WELCOME TO <censored> DATE: MONDAK, JANUARK 1, 1900 _______________________________________________ Chicken-users mailing list [email protected] https://lists.nongnu.org/mailman/listinfo/chicken-users
