* 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!))
|
||||
(error 'current-primitive-locations "~s is not a procedure" p))])))
|
||||
|
||||
(refresh-cached-labels!)
|
||||
|
||||
(primitive-set! 'eval-core
|
||||
(lambda (x) ((compile-core-expr x))))
|
||||
|
||||
|
|
|
@ -131,6 +131,8 @@
|
|||
`(library (ikarus primlocs)
|
||||
(export) ;;; must be empty
|
||||
(import (scheme))
|
||||
(current-primitive-locations
|
||||
(lambda (x) #f))
|
||||
(install-library
|
||||
',(gensym "system") ;;; id
|
||||
'(system) ;;; name
|
||||
|
|
Loading…
Reference in New Issue