Skip to content

Commit cad9242

Browse files
committed
update documents
1 parent e921723 commit cad9242

File tree

1 file changed

+9
-13
lines changed

1 file changed

+9
-13
lines changed

godel-script/README.md

+9-13
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,8 @@ git reset HEAD~
7979
Use command below:
8080

8181
```bash
82-
mkdir build
83-
cd build
84-
cmake ..
85-
make -j
82+
mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release
83+
make -j6
8684
```
8785

8886
After building, you'll find `build/godel` in the `build` folder.
@@ -91,20 +89,18 @@ After building, you'll find `build/godel` in the `build` folder.
9189

9290
Use this command for help:
9391

94-
> ./build/godel -h
92+
> godel -h
9593
96-
### Compile Target Soufflé
94+
### Compile GödelScript to Target Soufflé
9795

98-
> ./build/godel -p {godel library directory} {input file} -s {soufflé output file} -Of
96+
> godel -p {godel library directory} {input file} -s {soufflé output file} -O2
9997
100-
`-Of` is an optimization for join order, we suggest to switch it on.
98+
We suggest to use `-O2` for stable optimizations.
10199

102-
### Directly Run Soufflé
100+
### Directly Run GödelScript
103101

104-
> ./build/godel -p {godel library directory} {input file} -r -Of -f {database directory}
102+
> godel -p {godel library directory} {input file} -r -O2 -f {database directory}
105103
106-
`-Of` is an optimization for join order, we suggest to switch it on.
104+
We suggest to use `-O2` for stable optimizations.
107105

108106
`-r` means directly run soufflé.
109-
110-
`-v` could be used for getting verbose info.

0 commit comments

Comments
 (0)