https://github.com/hatoo/calc
https://github.com/PacktPublishing/Learn-LLVM-12/tree/master/Chapter03/calc in Rust
https://github.com/hatoo/calc
Last synced: about 1 month ago
JSON representation
https://github.com/PacktPublishing/Learn-LLVM-12/tree/master/Chapter03/calc in Rust
- Host: GitHub
- URL: https://github.com/hatoo/calc
- Owner: hatoo
- Created: 2022-03-12T09:25:48.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-03-13T12:28:33.000Z (about 3 years ago)
- Last Synced: 2025-01-28T18:46:12.928Z (3 months ago)
- Language: Rust
- Homepage:
- Size: 19.5 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# calc example from `Learn LLVM 12` in rust
```
cargo run -- samples/with.calc | llc -filetype=obj -o expr.obj
clang expr.obj rtcalc.c -o expr
./expr
```