On 6/10/06, Brandon J. Van Every <[EMAIL PROTECTED]> wrote:
$ make -k Building C object boot/CMakeFiles/libchicken-boot.dir/eval.obj E:/devel/msys/chicken/boot/eval.c: In function `f_10497': E:/devel/msys/chicken/boot/eval.c:5942: error: `E' undeclared (first use in this function) E:/devel/msys/chicken/boot/eval.c:5942: error: (Each undeclared identifier is reported only once E:/devel/msys/chicken/boot/eval.c:5942: error: for each function it appears in.)
Apparently, the command-line macro definition of C_INSTALL_LIB_HOME generates invalid syntax. It should be quoted in double-quotes to look like a string. make VERBOSE=1 will show the exact command-line passed to the C compiler, that'll show us what cmake generates. You might get away by just adding a pair of double-quotes around the pathname. (felix) _______________________________________________ Chicken-users mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/chicken-users
