diff options
author | Wei-Ning Huang <w@dexon.org> | 2019-04-12 18:14:43 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-12 18:14:43 +0800 |
commit | 7e3c194368f661e621d75dabfb562ace869466b4 (patch) | |
tree | dc91bb2d05f72871449c0be617440026745d483e /vendor | |
parent | 0080d104ecb56bbf658c9d3fea231ba3da669529 (diff) | |
download | dexon-7e3c194368f661e621d75dabfb562ace869466b4.tar dexon-7e3c194368f661e621d75dabfb562ace869466b4.tar.gz dexon-7e3c194368f661e621d75dabfb562ace869466b4.tar.bz2 dexon-7e3c194368f661e621d75dabfb562ace869466b4.tar.lz dexon-7e3c194368f661e621d75dabfb562ace869466b4.tar.xz dexon-7e3c194368f661e621d75dabfb562ace869466b4.tar.zst dexon-7e3c194368f661e621d75dabfb562ace869466b4.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> |