aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <herumi@nifty.com>2017-01-19 13:25:06 +0800
committerMITSUNARI Shigeo <herumi@nifty.com>2017-01-19 13:25:06 +0800
commit3f670fde36df1b7fa38b8a5797db7e61f492497d (patch)
tree21dd86816b1f86734bb2870c7b76a14847eb5f3f
parent218791d020469766d9bbce9ad0cccf07e0ae93e1 (diff)
downloaddexon-bls-3f670fde36df1b7fa38b8a5797db7e61f492497d.tar
dexon-bls-3f670fde36df1b7fa38b8a5797db7e61f492497d.tar.gz
dexon-bls-3f670fde36df1b7fa38b8a5797db7e61f492497d.tar.bz2
dexon-bls-3f670fde36df1b7fa38b8a5797db7e61f492497d.tar.lz
dexon-bls-3f670fde36df1b7fa38b8a5797db7e61f492497d.tar.xz
dexon-bls-3f670fde36df1b7fa38b8a5797db7e61f492497d.tar.zst
dexon-bls-3f670fde36df1b7fa38b8a5797db7e61f492497d.zip
add doc for go 1.6old-go-api
-rw-r--r--Makefile3
-rw-r--r--readme.md10
2 files changed, 13 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 7d5e8b0..15c18eb 100644
--- a/Makefile
+++ b/Makefile
@@ -63,6 +63,9 @@ test: $(TEST_EXE)
run_go: go/main.go $(BLS_LIB) $(BLS_IF_LIB)
cd go && go run main.go
+run_uncheck_go: go/main.go $(BLS_LIB) $(BLS_IF_LIB)
+ cd go && env GODEBUG=cgocheck=0 go run main.go
+
clean:
$(RM) $(BLS_LIB) $(OBJ_DIR)/* $(EXE_DIR)/*.exe $(GEN_EXE) $(ASM_SRC) $(ASM_OBJ) $(LIB_OBJ) $(LLVM_SRC) $(BLS_IF_LIB)
diff --git a/readme.md b/readme.md
index e11f981..1df53e6 100644
--- a/readme.md
+++ b/readme.md
@@ -111,6 +111,16 @@ bool Sign::verify(const PublicKey& pub) const;
Verify a public key by pop.
+# Go
+```
+make run_go
+```
+Go 1.6 forbits passing a Go pointer to C, then
+```
+make run_uncheck_go
+```
+I'll fix the issue later.
+
# License
modified new BSD License