forked from bazelbuild/bazel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This increases the compatibility for builds where host and exec platform are different (e.g., with remote execution). Closes bazelbuild#15785. PiperOrigin-RevId: 461897893 Change-Id: I734ccdd1ae13e7c625cc22c894bc482fe080d70b Co-authored-by: Yannic Bonenberger <[email protected]>
- Loading branch information
Showing
23 changed files
with
1,648 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,203 @@ | ||
#!/bin/bash | ||
# | ||
# Copyright 2022 The Bazel Authors. All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
# Common Bash functions to test Apple rules in Bazel. | ||
# | ||
|
||
function make_starlark_apple_binary_rule_in() { | ||
local dir="$1"; shift | ||
|
||
# All of the attributes below, except for `stamp`, are required as part of the | ||
# implied contract of `apple_common.link_multi_arch_binary` since it asks for | ||
# attributes directly from the rule context. As these requirements are changed | ||
# from implied attributes to function arguments, they can be removed. | ||
cat >> "${dir}/starlark_apple_binary.bzl" <<EOF | ||
def _starlark_apple_binary_impl(ctx): | ||
link_result = apple_common.link_multi_arch_binary( | ||
ctx = ctx, | ||
stamp = ctx.attr.stamp, | ||
) | ||
processed_binary = ctx.actions.declare_file( | ||
'{}_lipobin'.format(ctx.label.name) | ||
) | ||
lipo_inputs = [output.binary for output in link_result.outputs] | ||
if len(lipo_inputs) > 1: | ||
apple_env = {} | ||
xcode_config = ctx.attr._xcode_config[apple_common.XcodeVersionConfig] | ||
apple_env.update(apple_common.apple_host_system_env(xcode_config)) | ||
apple_env.update( | ||
apple_common.target_apple_env( | ||
xcode_config, | ||
ctx.fragments.apple.single_arch_platform, | ||
), | ||
) | ||
args = ctx.actions.args() | ||
args.add('-create') | ||
args.add_all(lipo_inputs) | ||
args.add('-output', processed_binary) | ||
ctx.actions.run( | ||
arguments = [args], | ||
env = apple_env, | ||
executable = '/usr/bin/lipo', | ||
execution_requirements = xcode_config.execution_info(), | ||
inputs = lipo_inputs, | ||
outputs = [processed_binary], | ||
) | ||
else: | ||
ctx.actions.symlink( | ||
target_file = lipo_inputs[0], | ||
output = processed_binary, | ||
) | ||
return [ | ||
DefaultInfo(files = depset([processed_binary])), | ||
OutputGroupInfo(**link_result.output_groups), | ||
link_result.debug_outputs_provider, | ||
] | ||
starlark_apple_binary = rule( | ||
attrs = { | ||
"_child_configuration_dummy": attr.label( | ||
cfg = apple_common.multi_arch_split, | ||
default = Label("@bazel_tools//tools/cpp:current_cc_toolchain"), | ||
), | ||
"_xcode_config": attr.label( | ||
default = configuration_field( | ||
fragment = "apple", | ||
name = "xcode_config_label", | ||
), | ||
), | ||
"_xcrunwrapper": attr.label( | ||
cfg = "exec", | ||
default = Label("@bazel_tools//tools/objc:xcrunwrapper"), | ||
executable = True, | ||
), | ||
"binary_type": attr.string(default = "executable"), | ||
"bundle_loader": attr.label(), | ||
"deps": attr.label_list( | ||
cfg = apple_common.multi_arch_split, | ||
), | ||
"dylibs": attr.label_list(), | ||
"linkopts": attr.string_list(), | ||
"minimum_os_version": attr.string(), | ||
"platform_type": attr.string(), | ||
"stamp": attr.int(default = -1, values = [-1, 0, 1]), | ||
}, | ||
fragments = ["apple", "objc", "cpp"], | ||
implementation = _starlark_apple_binary_impl, | ||
outputs = { | ||
# Provided for compatibility with apple_binary tests only. | ||
"lipobin": "%{name}_lipobin", | ||
}, | ||
) | ||
EOF | ||
} | ||
|
||
function make_starlark_apple_static_library_rule_in() { | ||
local dir="$1"; shift | ||
|
||
# All of the attributes below are required as part of the implied contract of | ||
# `apple_common.link_multi_arch_static_library` since it asks for attributes | ||
# directly from the rule context. As these requirements are changed from | ||
# implied attributes to function arguments, they can be removed. | ||
cat >> "${dir}/starlark_apple_static_library.bzl" <<EOF | ||
def _starlark_apple_static_library_impl(ctx): | ||
if not hasattr(apple_common.platform_type, ctx.attr.platform_type): | ||
fail('Unsupported platform type \"{}\"'.format(ctx.attr.platform_type)) | ||
link_result = apple_common.link_multi_arch_static_library(ctx = ctx) | ||
processed_library = ctx.actions.declare_file( | ||
'{}_lipo.a'.format(ctx.label.name) | ||
) | ||
files_to_build = [processed_library] | ||
runfiles = ctx.runfiles( | ||
files = files_to_build, | ||
collect_default = True, | ||
collect_data = True, | ||
) | ||
lipo_inputs = [output.library for output in link_result.outputs] | ||
if len(lipo_inputs) > 1: | ||
apple_env = {} | ||
xcode_config = ctx.attr._xcode_config[apple_common.XcodeVersionConfig] | ||
apple_env.update(apple_common.apple_host_system_env(xcode_config)) | ||
apple_env.update( | ||
apple_common.target_apple_env( | ||
xcode_config, | ||
ctx.fragments.apple.single_arch_platform, | ||
), | ||
) | ||
args = ctx.actions.args() | ||
args.add('-create') | ||
args.add_all(lipo_inputs) | ||
args.add('-output', processed_library) | ||
ctx.actions.run( | ||
arguments = [args], | ||
env = apple_env, | ||
executable = '/usr/bin/lipo', | ||
execution_requirements = xcode_config.execution_info(), | ||
inputs = lipo_inputs, | ||
outputs = [processed_library], | ||
) | ||
else: | ||
ctx.actions.symlink( | ||
target_file = lipo_inputs[0], | ||
output = processed_library, | ||
) | ||
providers = [ | ||
DefaultInfo(files = depset(files_to_build), runfiles = runfiles), | ||
link_result.objc, | ||
link_result.output_groups, | ||
] | ||
return providers | ||
starlark_apple_static_library = rule( | ||
_starlark_apple_static_library_impl, | ||
attrs = { | ||
'_child_configuration_dummy': attr.label( | ||
cfg = apple_common.multi_arch_split, | ||
default = Label("@bazel_tools//tools/cpp:current_cc_toolchain"), | ||
), | ||
'_xcode_config': attr.label( | ||
default = configuration_field( | ||
fragment = "apple", | ||
name = "xcode_config_label", | ||
), | ||
), | ||
'_xcrunwrapper': attr.label( | ||
executable = True, | ||
cfg = 'exec', | ||
default = Label("@bazel_tools//tools/objc:xcrunwrapper"), | ||
), | ||
'additional_linker_inputs': attr.label_list( | ||
allow_files = True, | ||
), | ||
'avoid_deps': attr.label_list( | ||
cfg = apple_common.multi_arch_split, | ||
default = [], | ||
), | ||
'deps': attr.label_list( | ||
cfg = apple_common.multi_arch_split, | ||
), | ||
'linkopts': attr.string_list(), | ||
'platform_type': attr.string(), | ||
'minimum_os_version': attr.string(), | ||
}, | ||
outputs = { | ||
'lipo_archive': '%{name}_lipo.a', | ||
}, | ||
cfg = apple_common.apple_crosstool_transition, | ||
fragments = ['apple', 'objc', 'cpp',], | ||
) | ||
EOF | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.