Next: Python Library, Previous: Repair, Up: Top [Contents][Index]
CURRY-COMPOSE-READER-MACROS::LCURLY-BRACE-READER
is undefinedThis usually indicates an issue with cache files created by ASDF.
To resolve this issue:
try-recompiling
restart at the repl, or
As part of the compilation process, ASDF saves compiled files to a
cache as described
in the ASDF manual.
When dealing with some compilation issues
(see CURRY-COMPOSE-READER-MACROS LCURLY-BRACE-READER
is undefined),
it may be necessary to delete the cache.
By default, the cache should be located in
~/.cache/common-lisp/[lisp-implementation]/path/to/local/projects/software-evolution-library
.
To remove the cache, execute:
rm -rf ~/.cache/common-lisp/[lisp-implementation]/path/to/local/projects/software-evolution-library
If the make check
build target shows a sequence of dots with no ’E’
or ’X’ characters, all unit tests passed. See the
stefil
project page for more information on our unit testing framework.
A large number of test failures usually indicates a major prerequisite is missing. To debug, try the following.
clang
is on your $PATH
.
clang -g -O0 test/etc/hello-world/hello_world.c
If the above fails, the unit test failure is due to an external tool failing. Ensure clang and the compiler toolchain is properly installed on your system.
Next: Python Library, Previous: Repair, Up: Top [Contents][Index]