File tree Expand file tree Collapse file tree 1 file changed +9
-13
lines changed Expand file tree Collapse file tree 1 file changed +9
-13
lines changed Original file line number Diff line number Diff line change @@ -79,10 +79,8 @@ git reset HEAD~
7979Use 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
8886After 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
9290Use 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.
You can’t perform that action at this time.
0 commit comments