From 741289bdddfcdbd81b6bfde3eb301fac47c45bbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Motiejus=20Jak=C5=A1tys?= Date: Fri, 6 Aug 2021 12:19:11 +0300 Subject: [PATCH] fix allowed toolchains --- toolchain/defs.bzl | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/toolchain/defs.bzl b/toolchain/defs.bzl index 0e4b4e8..5f800f4 100644 --- a/toolchain/defs.bzl +++ b/toolchain/defs.bzl @@ -57,9 +57,8 @@ _GLIBCS = [ ] DEFAULT_TOOLCHAINS = [ - "linux_arm64_gnu.2.19", # Debian Jessie arm64 - #"linux_amd64_gnu.2.19", # there is a problem with fcntl on arm64, this is WIP - "linux_amd64_gnu.2.28", # there is a problem with fcntl on arm64, this is WIP + "linux_arm64_gnu.2.28", # There is a problem with fcntl on arm64, this is WIP + "linux_amd64_gnu.2.19", # Debian Jessie amd64 "darwin_amd64", "darwin_arm64", ]