https://github.com/semperos/newlisp-utils
Utilities written in newLISP
https://github.com/semperos/newlisp-utils
Last synced: 5 months ago
JSON representation
Utilities written in newLISP
- Host: GitHub
- URL: https://github.com/semperos/newlisp-utils
- Owner: semperos
- Created: 2012-03-13T22:46:12.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2012-03-13T22:51:19.000Z (over 14 years ago)
- Last Synced: 2025-03-05T10:31:47.431Z (over 1 year ago)
- Homepage:
- Size: 89.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Utils ##
### How to Compile ###
To make an OS executable, you need...
1. The `newlisp` executable
2. The `link.lsp` file
...in a single directory, which we'll call `build`. Then do the following:
```
cd build
cp /path/to/name-of-program.lsp .
newlisp link.lsp
```
Then at prompt:
```
(program "name-of-program.lsp")
```
This will produce an executable called "name-of-program" inside the build directory. Do `chmod +x name-of-program` and put it on your PATH to have it available at the command-line.