Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion mojo/private/toolchain.BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,5 @@ mojo_toolchain(
] + ([":all_mojopkgs"] if "{INCLUDE_MOJOPKGS}" else []),
lld = "bin/lld",
mojo = "bin/mojo",
orc_rt = "lib/liborc_rt.a",
visibility = ["//visibility:public"],
)
1 change: 0 additions & 1 deletion mojo/providers.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ MojoToolchainInfo = provider(
"lld": "The lld compiler executable to link with",
"mojo": "The mojo compiler executable to build with",
"implicit_deps": "Implicit dependencies that every target should depend on, providing either CcInfo, or MojoInfo",
"orc_rt": "The ORC runtime library used for 'mojo run'.",
},
)

Expand Down
7 changes: 0 additions & 7 deletions mojo/toolchain.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ def _mojo_toolchain_impl(ctx):
lld = ctx.executable.lld,
mojo = ctx.executable.mojo,
implicit_deps = ctx.attr.implicit_deps,
orc_rt = ctx.file.orc_rt,
),
),
]
Expand Down Expand Up @@ -62,12 +61,6 @@ mojo_toolchain = rule(
cfg = "target",
doc = "Implicit dependencies that every target should depend on, providing either CcInfo, or MojoInfo.",
),
"orc_rt": attr.label(
allow_single_file = True,
mandatory = True,
cfg = "target",
doc = "The ORC runtime library used for 'mojo run'.",
),
},
doc = """\
Defines the Mojo compiler toolchain.
Expand Down