* makefile now calls (current-primitive-locations (lambda (x) #f))
on startup.
This commit is contained in:
parent
bc4e23ebbe
commit
75bfaf49a0
BIN
src/ikarus.boot
BIN
src/ikarus.boot
Binary file not shown.
|
@ -5279,8 +5279,6 @@
|
||||||
(refresh-cached-labels!))
|
(refresh-cached-labels!))
|
||||||
(error 'current-primitive-locations "~s is not a procedure" p))])))
|
(error 'current-primitive-locations "~s is not a procedure" p))])))
|
||||||
|
|
||||||
(refresh-cached-labels!)
|
|
||||||
|
|
||||||
(primitive-set! 'eval-core
|
(primitive-set! 'eval-core
|
||||||
(lambda (x) ((compile-core-expr x))))
|
(lambda (x) ((compile-core-expr x))))
|
||||||
|
|
||||||
|
|
|
@ -131,6 +131,8 @@
|
||||||
`(library (ikarus primlocs)
|
`(library (ikarus primlocs)
|
||||||
(export) ;;; must be empty
|
(export) ;;; must be empty
|
||||||
(import (scheme))
|
(import (scheme))
|
||||||
|
(current-primitive-locations
|
||||||
|
(lambda (x) #f))
|
||||||
(install-library
|
(install-library
|
||||||
',(gensym "system") ;;; id
|
',(gensym "system") ;;; id
|
||||||
'(system) ;;; name
|
'(system) ;;; name
|
||||||
|
|
Loading…
Reference in New Issue