diff options
author | MITSUNARI Shigeo <herumi@nifty.com> | 2018-05-08 10:24:57 +0800 |
---|---|---|
committer | MITSUNARI Shigeo <herumi@nifty.com> | 2018-05-08 10:24:57 +0800 |
commit | 8fbb047d8064ae09776db62edaa7dc4ece8ce38d (patch) | |
tree | 710e0f29205a329acc7eeda532d9b08e0c96344d /Makefile | |
parent | 3731172fc87e1b598a15352c4eef35f0a878cc51 (diff) | |
download | dexon-bls-8fbb047d8064ae09776db62edaa7dc4ece8ce38d.tar dexon-bls-8fbb047d8064ae09776db62edaa7dc4ece8ce38d.tar.gz dexon-bls-8fbb047d8064ae09776db62edaa7dc4ece8ce38d.tar.bz2 dexon-bls-8fbb047d8064ae09776db62edaa7dc4ece8ce38d.tar.lz dexon-bls-8fbb047d8064ae09776db62edaa7dc4ece8ce38d.tar.xz dexon-bls-8fbb047d8064ae09776db62edaa7dc4ece8ce38d.tar.zst dexon-bls-8fbb047d8064ae09776db62edaa7dc4ece8ce38d.zip |
mov go to ffi/go
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -82,8 +82,8 @@ test: $(TEST_EXE) ifeq ($(OS),mac) MAC_GO_LDFLAGS="-ldflags=-s" endif -test_go: go/bls/bls.go go/bls/bls_test.go $(BLS384_SLIB) - cd go/bls && ln -sf ../../lib . && env LD_RUN_PATH="../../lib" CGO_CFLAGS="-I../../include -I../../../mcl/include" CGO_LDFLAGS="-L../../lib -L../../../mcl/lib" go test $(MAC_GO_LDFLAGS) . +test_go: ffi/go/bls/bls.go ffi/go/bls/bls_test.go $(BLS384_SLIB) + cd ffi/go/bls && ln -sf ../../../lib . && env LD_RUN_PATH="../../../lib" CGO_CFLAGS="-I../../../include -I../../../../mcl/include" CGO_LDFLAGS="-L../../../lib -L../../../mcl/lib" go test $(MAC_GO_LDFLAGS) . EMCC_OPT=-I./include -I./src -I../cybozulib/include -I../mcl/include -I./ EMCC_OPT+=-O3 -DNDEBUG -DMCLBN_FP_UNIT_SIZE=6 -DMCL_MAX_BIT_SIZE=384 -Os |