Skip to content

Commit f8015bb

Browse files
authored
Update readme.md
1 parent 08deb9b commit f8015bb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

readme.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ and **optional dependency** on
2121
git clone https://github.com/ladnir/cryptoTools
2222
cd cryptoTools
2323
python build.py --setup --boost --relic
24-
python build.py -- -D ENABLE_RELIC=ON
24+
python build.py -D ENABLE_RELIC=ON
2525
```
2626
It is possible to build only the protocol(s) that are desired via cmake command. In addition, if boost and or relic are already installed, then `boost` or `relic` can be ommitted from `python build.py setup boost relic`.
2727

2828
See the output of `python build.py` or `cmake .` for available compile options. For example,
2929
```
30-
python build.py -- -D ENABLE_SSE=OFF
30+
python build.py -D ENABLE_SSE=OFF
3131
```
3232
will build without SSE instrisics. Argument after the `--` are forwarded to cmake.
3333

@@ -37,12 +37,12 @@ The main executable with examples is `frontend` and is located in the build dire
3737
* The library can be built without Relic as
3838
```
3939
python build.py --setup --boost
40-
python build.py -- -D -D ENABLE_RELIC=OFF
40+
python build.py -D -D ENABLE_RELIC=OFF
4141
```
4242
* The library can be built without Boost as
4343
```
4444
python build.py --setup --relic
45-
python build.py -- -D -D ENABLE_BOOST=OFF
45+
python build.py -D -D ENABLE_BOOST=OFF
4646
```
4747

4848

0 commit comments

Comments
 (0)