Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/herumi/test-github-action
https://github.com/herumi/test-github-action
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/herumi/test-github-action
- Owner: herumi
- Created: 2023-04-12T05:03:01.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-31T00:04:52.000Z (6 months ago)
- Last Synced: 2024-06-01T01:31:50.114Z (6 months ago)
- Language: Go
- Size: 32.8 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
[![Build Status](https://github.com/herumi/bls-go-binary/actions/workflows/main.yml/badge.svg)](https://github.com/herumi/bls-go-binary/actions/workflows/main.yml)
# bls with compiled static library
This repository contains compiled static library of https://github.com/herumi/bls without `BLS_ETH=1`.
See [releases](https://github.com/herumi/bls-go-binary/releases/).If you want the binary compatible with eth2-spec, then see [bls-eth-go-binary](https://github.com/herumi/bls-eth-go-binary).
* SecretKey; Fr
* PublicKey; G2
* Signature; G1# News
- 2023/Aug/17 The performance of Sign is a little improved.# How to build the static binary
The following steps are not necessary if you use compiled binary in this repository.```
git clone --recursive https://github.com/herumi/bls-go-binary
cd bls-go-binary
#git submodule update --init --recursive
```## Linux, Mac, Windows(mingw64)
On x64 Linux,
```
make
```Otherwise, clang is necessary to build ll files.
```
make CXX=clang++
```### Cross compile on macOS
```
make ARCH=x86_64 # for Intel mac
make ARCH=arm64 # for M1 mac
```### Cross compile of aarch64 on x64 Linux
```
sudo apt-get install gcc-multilib
make -C src/bls -f Makefile.onelib build_aarch64 CXX=clang++ -j OUT_DIR=../..
```# Android
```
make android
```If you need a shared library, then after `make clean`,
```
make android BLS_LIB_SHARED=1
```# iOS
```
make ios
```# how to release (internal notification)
```
git checkout -b release
git reset --hard origin/release
git merge origin/master
git push origin release
```# Author
MITSUNARI Shigeo([email protected])
# Sponsors welcome
[GitHub Sponsor](https://github.com/sponsors/herumi)