https://github.com/clasp-developers/forkable-boehm
A forkable version of the boehm library for Clasp
https://github.com/clasp-developers/forkable-boehm
Last synced: 4 months ago
JSON representation
A forkable version of the boehm library for Clasp
- Host: GitHub
- URL: https://github.com/clasp-developers/forkable-boehm
- Owner: clasp-developers
- Created: 2018-04-23T12:31:44.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-23T12:56:20.000Z (about 7 years ago)
- Last Synced: 2024-12-28T10:48:01.327Z (6 months ago)
- Language: Makefile
- Size: 1.95 KB
- Stars: 1
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# forkable-boehm
This builds a forkable version of the Boehm GC for clasp (https://github.com/clasp-developers/clasp.git).
This version of the Boehm GC allows clasp to build its Common Lisp code multiple cores.Usage:
```
make
sudo make install
```Then go into the clasp top level directory and type:
```
echo "USE_PARALLEL_BUILD = True" >> wscript.config
```Then build clasp using:
```
make clean
make configure
make
```