File tree 1 file changed +9
-13
lines changed
1 file changed +9
-13
lines changed Original file line number Diff line number Diff line change @@ -79,10 +79,8 @@ git reset HEAD~
79
79
Use command below:
80
80
81
81
``` 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
86
84
```
87
85
88
86
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.
91
89
92
90
Use this command for help:
93
91
94
- > ./build/ godel -h
92
+ > godel -h
95
93
96
- ### Compile Target Soufflé
94
+ ### Compile GödelScript to Target Soufflé
97
95
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
99
97
100
- ` -Of ` is an optimization for join order, we suggest to switch it on .
98
+ We suggest to use ` -O2 ` for stable optimizations .
101
99
102
- ### Directly Run Soufflé
100
+ ### Directly Run GödelScript
103
101
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}
105
103
106
- ` -Of ` is an optimization for join order, we suggest to switch it on .
104
+ We suggest to use ` -O2 ` for stable optimizations .
107
105
108
106
` -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