mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-26 07:37:20 +00:00
crypto: use pure Go signature implementation in tinygo (#31878)
tinygo is having problems compiling the C implementation
This commit is contained in:
parent
1fd806d3e5
commit
a53fdf1fe6
2 changed files with 4 additions and 4 deletions
|
|
@ -14,8 +14,8 @@
|
|||
// You should have received a copy of the GNU Lesser General Public License
|
||||
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
//go:build !nacl && !js && !wasip1 && cgo && !gofuzz
|
||||
// +build !nacl,!js,!wasip1,cgo,!gofuzz
|
||||
//go:build !nacl && !js && !wasip1 && cgo && !gofuzz && !tinygo
|
||||
// +build !nacl,!js,!wasip1,cgo,!gofuzz,!tinygo
|
||||
|
||||
package crypto
|
||||
|
||||
|
|
|
|||
|
|
@ -14,8 +14,8 @@
|
|||
// You should have received a copy of the GNU Lesser General Public License
|
||||
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
//go:build nacl || js || wasip1 || !cgo || gofuzz
|
||||
// +build nacl js wasip1 !cgo gofuzz
|
||||
//go:build nacl || js || wasip1 || !cgo || gofuzz || tinygo
|
||||
// +build nacl js wasip1 !cgo gofuzz tinygo
|
||||
|
||||
package crypto
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue