crypto: fallback to native signature implementation in tinygo

tinygo is having problems compiling the C implementation
This commit is contained in:
Ömer Faruk IRMAK 2025-05-22 18:38:29 +03:00
parent 20ad4f500e
commit f54acfd6ce
2 changed files with 4 additions and 4 deletions

View file

@ -14,8 +14,8 @@
// You should have received a copy of the GNU Lesser General Public License // 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/>. // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
//go:build !nacl && !js && !wasip1 && cgo && !gofuzz //go:build !nacl && !js && !wasip1 && cgo && !gofuzz && !tinygo
// +build !nacl,!js,!wasip1,cgo,!gofuzz // +build !nacl,!js,!wasip1,cgo,!gofuzz,!tinygo
package crypto package crypto

View file

@ -14,8 +14,8 @@
// You should have received a copy of the GNU Lesser General Public License // 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/>. // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
//go:build nacl || js || wasip1 || !cgo || gofuzz //go:build nacl || js || wasip1 || !cgo || gofuzz || tinygo
// +build nacl js wasip1 !cgo gofuzz // +build nacl js wasip1 !cgo gofuzz tinygo
package crypto package crypto