https://github.com/bbkane/bfaas
brainf*** as a service
https://github.com/bbkane/bfaas
Last synced: about 1 year ago
JSON representation
brainf*** as a service
- Host: GitHub
- URL: https://github.com/bbkane/bfaas
- Owner: bbkane
- Created: 2016-12-24T05:25:38.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-20T14:45:34.000Z (over 9 years ago)
- Last Synced: 2025-03-24T19:49:32.581Z (over 1 year ago)
- Language: C
- Size: 21.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# bfaas
## Dependencies
- CMake
- a C compiler
## Optional Dependencies
- [makeheaders](http://www.hwaci.com/sw/mkhdr/). If makeheaders isn't in the PATH, the header files for this project won't be auto-generated: change them manually (and expect your changes to be erased the next time makeheaders runs) or don't change any declarations.
- valgrind (`make valgrind`)
## Build
```bash
cd bfaas
mkdir build && cd build
cmake ..
make
```
## TODO
- make the output struct work
- add more tests
- Make the HTTP server part (Python with sanic? Go?)
- profit
- Try SWIG (cffi is a lot of trouble...)