[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Chicken-users] eval.scm library.scm not handling Windows pathnames
From: |
felix winkelmann |
Subject: |
Re: [Chicken-users] eval.scm library.scm not handling Windows pathnames |
Date: |
Sat, 10 Jun 2006 00:13:46 +0200 |
On 6/10/06, Brandon J. Van Every <address@hidden> 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)