Custom Query (1630 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (7 - 9 of 1630)

1 2 3 4 5 6 7 8 9 10 11 12 13
Ticket Resolution Summary Owner Reporter
#135 worksforme load & CHICKEN_INCLUDE_PATH for chicken 4 Mario Domenech Goulart
Description

Maybe I'm terribly missing something, but...

Consider the following scenario:

$ ls -l ~/tmp/foo
total 8
-rw-r--r-- 1 mario mario 14 Nov 30 14:57 foo3.scm
-rw-r--r-- 1 mario mario 47 Nov 30 14:23 foo4.scm
$ cat ~/tmp/foo/foo3.scm
(define a 3)
$ cat ~/tmp/foo/foo4.scm
(module foo4 *
 (import scheme)
 (define a 5)
)

Chicken 3

$ pwd
/home/mario
$ CHICKEN_INCLUDE_PATH=~/tmp/foo csi -nq
#;1> (use foo3)
; loading /home/mario/tmp/foo/foo3.scm ...
#;2> a
3

Chicken 4

$ pwd
/home/mario
$ CHICKEN_INCLUDE_PATH=~/tmp/foo csi -nq
#;1> (use foo4)

Error: (import) during expansion of (import ...) - cannot import from undefined module: foo4
#;1> (load "foo4.scm")
; loading foo4.scm ...

Error: (open-input-file) cannot open file - No such file or directory: "foo4.scm"
#;1> (load "/home/mario/tmp/foo/foo4.scm")
; loading /home/mario/tmp/foo/foo4.scm ...
; loading /usr/local/chicken-4.2.10/lib/chicken/4/scheme.import.so ...
#;2> (import foo4)
#;3> a
5

I see chicken 3 prints

; loading /home/mario/tmp/foo/foo3.scm ...

and chicken 4 prints

; loading foo4.scm ...

Maybe that's something.

#146 worksforme several char-sets seem to be broken Moritz Heidkamp
Description

char-set:letter for example contains many non-displayable aka missing glyphs as can be witnessed by evaling:

  (char-set->string char-set:letter)

which yields

  "�����������������������������������zyxwvutsrqponmlkjihgfedcbaZYXWVUTSRQPONMLKJIHGFEDCBA"

This is also true for char-set:lower-case, char-set:upper-case, char-set:printing, char-set:symbol and char-set:punctuation -- maybe even more char-sets are affected, but those are the ones I've checked ;)

#167 worksforme implement new build system felix winkelmann
Description

Finding a solution for #166 will require a number of changes to the build, which are likely to exceed the capabilities of the current make(3) based approach.

As iraikov already suggested, a Scheme based (bootstrapped from .c sources) or other high-level build is needed.

1 2 3 4 5 6 7 8 9 10 11 12 13
Note: See TracQuery for help on using queries.