aboutsummaryrefslogtreecommitdiffstats
path: root/readme.md
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <herumi@nifty.com>2018-09-15 21:03:40 +0800
committerMITSUNARI Shigeo <herumi@nifty.com>2018-09-15 21:04:11 +0800
commitcfd56e2576f55a5e22804e3612b4004c0d6d9ef3 (patch)
tree7e5e63fa501487886d9f69ca89b51c3ddbf055a5 /readme.md
parentbe54124ccf649ace15ef0f90dbf04f01fab8ac3c (diff)
downloaddexon-bls-cfd56e2576f55a5e22804e3612b4004c0d6d9ef3.tar
dexon-bls-cfd56e2576f55a5e22804e3612b4004c0d6d9ef3.tar.gz
dexon-bls-cfd56e2576f55a5e22804e3612b4004c0d6d9ef3.tar.bz2
dexon-bls-cfd56e2576f55a5e22804e3612b4004c0d6d9ef3.tar.lz
dexon-bls-cfd56e2576f55a5e22804e3612b4004c0d6d9ef3.tar.xz
dexon-bls-cfd56e2576f55a5e22804e3612b4004c0d6d9ef3.tar.zst
dexon-bls-cfd56e2576f55a5e22804e3612b4004c0d6d9ef3.zip
remove duplicated C++ code and libbls.a
Diffstat (limited to 'readme.md')
-rw-r--r--readme.md9
1 files changed, 5 insertions, 4 deletions
diff --git a/readme.md b/readme.md
index a2d6d52..cdd0593 100644
--- a/readme.md
+++ b/readme.md
@@ -10,19 +10,20 @@ Create a working directory (e.g., work) and clone the following repositories.
```
mkdir work
cd work
-git clone git://github.com/herumi/xbyak.git
-git clone git://github.com/herumi/cybozulib.git
git clone git://github.com/herumi/mcl.git
git clone git://github.com/herumi/bls.git
git clone git://github.com/herumi/cybozulib_ext ; for only Windows
```
+# **REMARK** libbls.a is removed
+Link `lib/libbls256.a` or `lib/libbls384.a` to use `bls/bls.hpp` according to MCLBN_FP_UNIT_SIZE = 4 or 6.
+
# Build and test for Linux
Specifiy UNIT=4 or 6 always to make. Default UNIT is 6.
-To make lib/libbls.a and test, run
+To make and test, run
```
cd bls
-make test UNIT=4
+make test
```
To make sample programs, run
```