Custom Query (1630 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (22 - 24 of 1630)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Ticket Resolution Summary Owner Reporter
#712 fixed when setting CHICKEN_PREFIX the default include path is not correctly prefixed Christian Kellermann Christian Kellermann
Description

Sven Hartrumpf kindly reported this issue.

What he sees is:

> csc -cflags                     
-fno-strict-aliasing -fwrapv -DHAVE_CHICKEN_CONFIG_H -DC_ENABLE_PTABLES -O2 -fomit-frame-pointer
-march=core2 -I"/usr/local/chicken-4.7.0/include/chicken"
> export CHICKEN_PREFIX=/usr/local/chicken-4.7.0                                                     
> csc -cflags                                                       
-fno-strict-aliasing -fwrapv -DHAVE_CHICKEN_CONFIG_H -DC_ENABLE_PTABLES -O2 -fomit-frame-pointer
-march=core2 -I"/usr/local/chicken-4.7.0/include/"

The last line should read ".../include/chicken" as we have moved our chicken.h there.

A patch attached (and sent to chicken-hackers) remedies this problem

#275 fixed when giving a read-error for a missing closing delimiter, show line of opening one felix winkelmann
Description

That would be much more useful.

#1363 fixed when compiled, set! will clobber previous lambda-info's kristianlm
Description

I don't really know what's going on, but set! alters the previous ##sys#lambda-info structure:

1442 klm@kth ~/chicken-5-klm ➤ cat /tmp/klm.scm
(define (foo a b c) 0)         (print foo)
(set! foo (lambda (x y z) 1))  (print foo)

1444 klm@kth ~/chicken-5-klm ➤ csc /tmp/klm.scm && /tmp/klm
#<procedure (f_218 a1 b2 c3)> ;; bad
#<procedure (foo x4 y5 z6)>   ;; good

1444 klm@kth ~/chicken-5-klm ➤ csi -s /tmp/klm.scm 
#<procedure (foo a b c)>      ;; good
#<procedure (foo x y z)>      ;; good
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Note: See TracQuery for help on using queries.