;;;; -*- Scheme -*- (when (version>=? (chicken-version) "4.7.4") (error "Sorry, but CHICKEN 4.7.4 and later is not supported anymore")) (compile -fixnum-arithmetic -disable-interrupts ;we manipulate system structures -no-procedure-checks ;we do explicit checks -no-bound-checks ;we manipulate unbound variables -O2 -d1 -s environments.scm -j environments) (compile -O3 -d0 -s environments.import.scm) (install-extension 'environments `("environments.so" "environments.import.so" "environments.o") `((version "1.6.2")))