mirror of
https://github.com/Gers2017/cpp.js.git
synced 2024-11-21 22:38:41 -06:00
docs(README.md): Update README
This commit is contained in:
parent
6fd0c48742
commit
c4b1c58f7d
30
README.md
30
README.md
|
@ -15,10 +15,34 @@ Because I had no other choice.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
# node main.js <file>.cpp
|
# node main.js <file>.cpp
|
||||||
node main.js main.cpp # compiles a main.cpp file to rust
|
# compiles main.cpp to main.rs
|
||||||
|
node main.js main.cpp
|
||||||
|
|
||||||
|
# compiles main.cpp to main.asm
|
||||||
|
# run node main.js --target list for valid targets
|
||||||
|
node main.js main.cpp --target x86_64-fasm-linux-gnu
|
||||||
|
|
||||||
|
# for more details
|
||||||
|
node main.js --help
|
||||||
```
|
```
|
||||||
|
|
||||||
## Test rust code
|
## Makefile
|
||||||
|
|
||||||
|
Build main.rs and run
|
||||||
|
|
||||||
|
```sh
|
||||||
|
make build-rs
|
||||||
|
make run
|
||||||
|
```
|
||||||
|
|
||||||
|
Build main.asm and run
|
||||||
|
|
||||||
|
```sh
|
||||||
|
make build-fasm
|
||||||
|
make run-fasm
|
||||||
|
```
|
||||||
|
|
||||||
|
## Test rust code manually
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
# rustc <file>.rs -o <file>.out
|
# rustc <file>.rs -o <file>.out
|
||||||
|
@ -28,7 +52,7 @@ rustc main.rs -o main.out
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
- [ ] `//` comments
|
- [ ] `//` comments
|
||||||
- [ ] `printf("...");`
|
- [ ] `printf("...");` it doesn't support more arguments (`printf("%d", 10)` doesn't work)
|
||||||
- [ ] `return`
|
- [ ] `return`
|
||||||
|
|
||||||
```cpp
|
```cpp
|
||||||
|
|
Loading…
Reference in a new issue