From d05265fe65d517c7aa28c2e35f8229ac998924a2 Mon Sep 17 00:00:00 2001 From: Cullen Walsh Date: Mon, 21 Oct 2024 08:58:03 -0700 Subject: [PATCH] Add go_bootstrap toolchain target Summary: Got an error when testing build of facebookincubator/phabtest_rust. Adding this target to the shims seems to fix it. Reviewed By: bigfootjon Differential Revision: D64618954 fbshipit-source-id: 4ea6b868647ea450a330b82b51eb94707ffa40cb --- shim/BUCK | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/shim/BUCK b/shim/BUCK index 30019fa00..422300905 100644 --- a/shim/BUCK +++ b/shim/BUCK @@ -7,7 +7,7 @@ load("@prelude//toolchains:cxx.bzl", "system_cxx_toolchain") load("@prelude//toolchains:genrule.bzl", "system_genrule_toolchain") -load("@prelude//toolchains:go.bzl", "system_go_toolchain") +load("@prelude//toolchains:go.bzl", "system_go_bootstrap_toolchain", "system_go_toolchain") load("@prelude//toolchains:haskell.bzl", "system_haskell_toolchain") load("@prelude//toolchains:ocaml.bzl", "system_ocaml_toolchain") load("@prelude//toolchains:python.bzl", "system_python_bootstrap_toolchain", "system_python_toolchain") @@ -38,6 +38,11 @@ system_go_toolchain( visibility = ["PUBLIC"], ) +system_go_bootstrap_toolchain( + name = "go_bootstrap", + visibility = ["PUBLIC"], +) + system_haskell_toolchain( name = "haskell", visibility = ["PUBLIC"],