diff options
author | Wei-Ning Huang <w@dexon.org> | 2019-04-12 18:14:43 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@byzantine-lab.io> | 2019-06-15 22:09:55 +0800 |
commit | 4ad9119a92ea63b0568f1100729a8cf377adfe2a (patch) | |
tree | 93578b9ee96c4ca3f68e639ef9321dd1e334e946 /vendor | |
parent | d5daf97dba3156ef9adbf129a9d1e276f80d1095 (diff) | |
download | go-tangerine-4ad9119a92ea63b0568f1100729a8cf377adfe2a.tar go-tangerine-4ad9119a92ea63b0568f1100729a8cf377adfe2a.tar.gz go-tangerine-4ad9119a92ea63b0568f1100729a8cf377adfe2a.tar.bz2 go-tangerine-4ad9119a92ea63b0568f1100729a8cf377adfe2a.tar.lz go-tangerine-4ad9119a92ea63b0568f1100729a8cf377adfe2a.tar.xz go-tangerine-4ad9119a92ea63b0568f1100729a8cf377adfe2a.tar.zst go-tangerine-4ad9119a92ea63b0568f1100729a8cf377adfe2a.zip |
build: disable static built by default (#359)
Diffstat (limited to 'vendor')
-rw-r--r-- | vendor/github.com/dexon-foundation/bls/ffi/go/bls/bls.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/github.com/dexon-foundation/bls/ffi/go/bls/bls.go b/vendor/github.com/dexon-foundation/bls/ffi/go/bls/bls.go index c83a4e658..56bf08039 100644 --- a/vendor/github.com/dexon-foundation/bls/ffi/go/bls/bls.go +++ b/vendor/github.com/dexon-foundation/bls/ffi/go/bls/bls.go @@ -11,7 +11,7 @@ package bls #cgo !bn256,!bn384,!bn384_256 LDFLAGS:${SRCDIR}/../../../lib/libbls384.a #cgo CFLAGS:-I${SRCDIR}/../../../include -I${SRCDIR}/../../../../mcl/include #cgo LDFLAGS:${SRCDIR}/../../../../mcl/lib/libmcl.a -lgmpxx -lgmp -#cgo linux LDFLAGS:-static +#cgo static LDFLAGS:-static typedef unsigned int (*ReadRandFunc)(void *, void *, unsigned int); int wrapReadRandCgo(void *self, void *buf, unsigned int n); #include <bls/bls.h> |