Dan scripsit: > In the meanwhile, I've realized that minimally I just > need to build libchicken. C files produced by the host > "chicken" are more or less portable, but require > libchicken.
So the platform is not self-hosting. In that case, all you really need are chicken.c and runtime.c (from the chicken build directory). Be sure to compile your Chicken code on the host with -use-explicit, so you don't get dependencies on the eval and extras units. Then you can cross-compile chicken.c, runtime.c, and your application's .c file(s) and you'll be all set. -- John Cowan http://ccil.org/~cowan [EMAIL PROTECTED] All "isms" should be "wasms". --Abbie _______________________________________________ Chicken-users mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/chicken-users
