mirror of
https://github.com/NoRedInk/noredink-ui.git
synced 2024-11-04 07:02:12 +03:00
21 lines
894 B
Python
Generated
21 lines
894 B
Python
Generated
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
#
|
|
# This source code is licensed under both the MIT license found in the
|
|
# LICENSE-MIT file in the root directory of this source tree and the Apache
|
|
# License, Version 2.0 found in the LICENSE-APACHE file in the root directory
|
|
# of this source tree.
|
|
|
|
load("@prelude//cxx:cxx_context.bzl", "get_cxx_toolchain_info")
|
|
|
|
def _is_core_tool(ctx: "context"):
|
|
return "is_core_tool" in ctx.attrs.labels
|
|
|
|
def link_cxx_binary_hybridly(ctx: "context", cxx_toolchain: ["CxxToolchainInfo", None] = None) -> bool.type:
|
|
# core tools are linked on RE because they are a) small enough to do so and
|
|
# b) don't get build stamping so they do cache correctly.
|
|
if _is_core_tool(ctx):
|
|
return False
|
|
if not cxx_toolchain:
|
|
cxx_toolchain = get_cxx_toolchain_info(ctx)
|
|
return cxx_toolchain.linker_info.force_full_hybrid_if_capable
|