Skip to content

Commit

Permalink
Add go_bootstrap toolchain target
Browse files Browse the repository at this point in the history
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
  • Loading branch information
ckwalsh authored and facebook-github-bot committed Oct 21, 2024
1 parent 343bf8e commit d05265f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion shim/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down Expand Up @@ -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"],
Expand Down

0 comments on commit d05265f

Please sign in to comment.