[Chicken-users] EOF problem

2010-12-07 Thread David Dreisigmeyer
I'm getting the following error for the attached cl.scm file (OpenCL 1.0 on OS X 10.6): $ csc -s -o cl.so cl.scm -framework OpenCL -framework Accelerate Warning: (line 205) unterminated here-doc string literal `EOF' Error: (line 205) unterminated list, starting in line 19 Error: shell command

Re: [Chicken-users] EOF problem

2010-12-07 Thread Alan Post
On Tue, Dec 07, 2010 at 03:15:32PM -0500, David Dreisigmeyer wrote: I'm getting the following error for the attached cl.scm file (OpenCL 1.0 on OS X 10.6): $ csc -s -o cl.so cl.scm -framework OpenCL -framework Accelerate Warning: (line 205) unterminated here-doc string literal `EOF' Error:

Re: [Chicken-users] EOF problem

2010-12-07 Thread Peter Bex
On Tue, Dec 07, 2010 at 03:15:32PM -0500, David Dreisigmeyer wrote: I'm getting the following error for the attached cl.scm file (OpenCL 1.0 on OS X 10.6): $ csc -s -o cl.so cl.scm -framework OpenCL -framework Accelerate Warning: (line 205) unterminated here-doc string literal `EOF' Error:

Re: [Chicken-users] EOF problem

2010-12-07 Thread David Dreisigmeyer
Thank you Alan and Peter - that took care of it. csc is also complaining about, e.g., int32_t , uint , uint64_t , __attribute__ and #define CL_API_SUFFIX__VERSION_1_0 AVAILABLE_MAC_OS_X_VERSION_10_6_AND_LATER If I change, e.g., int32_t to int, uint64_t to unsigned long int things work out --