mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-27 21:57:16 +00:00
e2a6f5a6ea
* PRYSM-2849 first cut at multi-arch cross compiling toolchain. currently supports arm64 and amd64 via docker cross compiler image * picky linter * some readme cleanup * remove arm 8.2 revision for arm64 builds (cortex a72 is ARMv8.0-A) remove arm32 toolchain from multiarch dockerfile * remove extranous WORKSPACE entries * add docker remote execution configs for amd64 and arm64 * add osx bazelrc configs * working osx toolchain * update readme * cleanup for amd, arm and osx cross before beginning windows * initial stab at mingw windows cross * add docker target for windows_amd64 and update readme for cross-compiling * little more cleanup for readability * Check in generated RBE. Still tweaking config but linux amd64 -> linux amd64 on RBE works OK. Cross compile does not work properly in RBE yet. * fix * update image * Making some progress * delete artifacts * Working build * Add remote config * remove some things I added to README * Tidy * Update readme * remove 2 commented lines * buildifer * Merge pull request #1 from prysmaticlabs/cross-compile-with-suburbandad Cross compile with suburbandad * Merge branch 'master' into clang-cross-compile * buildifier on generated stuff * Merge branch 'master' into clang-cross-compile * Merge branch 'master' into clang-cross-compile * Merge branch 'master' into clang-cross-compile
252 lines
8.2 KiB
Smarty
252 lines
8.2 KiB
Smarty
load(
|
|
"@bazel_tools//tools/cpp:cc_toolchain_config_lib.bzl",
|
|
"action_config",
|
|
"feature",
|
|
"feature_set",
|
|
"flag_group",
|
|
"flag_set",
|
|
"make_variable",
|
|
"tool",
|
|
"tool_path",
|
|
"with_feature_set",
|
|
)
|
|
|
|
load(
|
|
"@bazel_tools//tools/cpp:cc_toolchain_config.bzl",
|
|
ALL_COMPILE_ACTIONS = "all_compile_actions",
|
|
ALL_CPP_COMPILE_ACTIONS = "all_cpp_compile_actions",
|
|
ALL_LINK_ACTIONS = "all_link_actions",
|
|
)
|
|
|
|
def _impl(ctx):
|
|
toolchain_identifier = "osxcross"
|
|
compiler = "clang"
|
|
abi_version = "darwin_x86_64"
|
|
abi_libc_version = "darwin_x86_64"
|
|
install = "/usr/x86_64-apple-darwin/"
|
|
clang_version = "10.0.0"
|
|
target_libc = "macosx"
|
|
target_cpu = "x86_64"
|
|
osxcross = install + "osxcross/"
|
|
osxcross_binprefix = osxcross + "bin/x86_64-apple-darwin14-"
|
|
sdkroot = osxcross + "SDK/MacOSX10.10.sdk/"
|
|
cross_system_include_dirs = [
|
|
"/usr/lib/clang/10.0.0/include",
|
|
osxcross + "include",
|
|
sdkroot + "usr/include",
|
|
]
|
|
cross_system_lib_dirs = [
|
|
"/usr/x86_64-apple-darwin/lib",
|
|
sdkroot + "usr/lib",
|
|
osxcross + "/lib",
|
|
]
|
|
|
|
opt_feature = feature(name = "opt")
|
|
dbg_feature = feature(name = "dbg")
|
|
fastbuild_feature = feature(name = "fastbuild")
|
|
random_seed_feature = feature(name = "random_seed", enabled = True)
|
|
supports_pic_feature = feature(name = "supports_pic", enabled = True)
|
|
supports_dynamic_linker_feature = feature(name = "supports_dynamic_linker", enabled = True)
|
|
|
|
unfiltered_compile_flags_feature = feature(
|
|
name = "unfiltered_compile_flags",
|
|
enabled = True,
|
|
flag_sets = [
|
|
flag_set(
|
|
actions = ALL_COMPILE_ACTIONS,
|
|
flag_groups = [
|
|
flag_group(
|
|
flags = [
|
|
"-stdlib=libc++",
|
|
"-no-canonical-prefixes",
|
|
"-Wno-builtin-macro-redefined",
|
|
"-D__DATE__=\"redacted\"",
|
|
"-D__TIMESTAMP__=\"redacted\"",
|
|
"-D__TIME__=\"redacted\"",
|
|
],
|
|
),
|
|
],
|
|
),
|
|
],
|
|
)
|
|
|
|
# explicit arch specific system includes
|
|
system_include_flags = []
|
|
for d in cross_system_include_dirs:
|
|
system_include_flags += ["-idirafter", d]
|
|
|
|
default_compile_flags_feature = feature(
|
|
name = "default_compile_flags",
|
|
enabled = True,
|
|
flag_sets = [
|
|
flag_set(
|
|
actions = ALL_COMPILE_ACTIONS,
|
|
flag_groups = [
|
|
flag_group(
|
|
flags = [
|
|
"-mlinker-version=400",
|
|
"-B " + osxcross + "bin",
|
|
"-nostdinc",
|
|
"-U_FORTIFY_SOURCE",
|
|
"-fstack-protector",
|
|
"-fno-omit-frame-pointer",
|
|
"-fcolor-diagnostics",
|
|
"-Wall",
|
|
"-Wthread-safety",
|
|
"-Wself-assign",
|
|
] + system_include_flags,
|
|
),
|
|
],
|
|
),
|
|
flag_set(
|
|
actions = ALL_COMPILE_ACTIONS,
|
|
flag_groups = [flag_group(flags = ["-g", "-fstandalone-debug"])],
|
|
with_features = [with_feature_set(features = ["dbg"])],
|
|
),
|
|
flag_set(
|
|
actions = ALL_COMPILE_ACTIONS,
|
|
flag_groups = [
|
|
flag_group(
|
|
flags = [
|
|
"-g0",
|
|
"-O2",
|
|
"-D_FORTIFY_SOURCE=1",
|
|
"-DNDEBUG",
|
|
"-ffunction-sections",
|
|
"-fdata-sections",
|
|
],
|
|
),
|
|
],
|
|
with_features = [with_feature_set(features = ["opt"])],
|
|
),
|
|
flag_set(
|
|
actions = ALL_CPP_COMPILE_ACTIONS,
|
|
flag_groups = [flag_group(flags = ["-std=c++17", "-nostdinc++"])],
|
|
),
|
|
],
|
|
)
|
|
|
|
default_link_flags_feature = feature(
|
|
name = "default_link_flags",
|
|
enabled = True,
|
|
flag_sets = [
|
|
flag_set(
|
|
actions = ALL_LINK_ACTIONS,
|
|
flag_groups = [
|
|
flag_group(
|
|
flags = [
|
|
"-v",
|
|
"-lm",
|
|
"-no-canonical-prefixes",
|
|
"-fuse-ld=lld",
|
|
"-lc++",
|
|
"-lc++abi",
|
|
"-F" + sdkroot + "System/Library/Frameworks/",
|
|
"-L"+ sdkroot + "usr/lib",
|
|
"-undefined",
|
|
"dynamic_lookup",
|
|
],
|
|
),
|
|
],
|
|
),
|
|
],
|
|
)
|
|
|
|
objcopy_embed_flags_feature = feature(
|
|
name = "objcopy_embed_flags",
|
|
enabled = True,
|
|
flag_sets = [
|
|
flag_set(
|
|
actions = ["objcopy_embed_data"],
|
|
flag_groups = [flag_group(flags = ["-I", "binary"])],
|
|
),
|
|
],
|
|
)
|
|
|
|
user_compile_flags_feature = feature(
|
|
name = "user_compile_flags",
|
|
enabled = True,
|
|
flag_sets = [
|
|
flag_set(
|
|
actions = ALL_COMPILE_ACTIONS,
|
|
flag_groups = [
|
|
flag_group(
|
|
expand_if_available = "user_compile_flags",
|
|
flags = ["%{user_compile_flags}"],
|
|
iterate_over = "user_compile_flags",
|
|
),
|
|
],
|
|
),
|
|
],
|
|
)
|
|
|
|
coverage_feature = feature(
|
|
name = "coverage",
|
|
flag_sets = [
|
|
flag_set(
|
|
actions = ALL_COMPILE_ACTIONS,
|
|
flag_groups = [
|
|
flag_group(
|
|
flags = ["-fprofile-instr-generate", "-fcoverage-mapping"],
|
|
),
|
|
],
|
|
),
|
|
flag_set(
|
|
actions = ALL_LINK_ACTIONS,
|
|
flag_groups = [flag_group(flags = ["-fprofile-instr-generate"])],
|
|
),
|
|
],
|
|
provides = ["profile"],
|
|
)
|
|
|
|
features = [
|
|
opt_feature,
|
|
fastbuild_feature,
|
|
dbg_feature,
|
|
random_seed_feature,
|
|
supports_pic_feature,
|
|
supports_dynamic_linker_feature,
|
|
unfiltered_compile_flags_feature,
|
|
default_link_flags_feature,
|
|
default_compile_flags_feature,
|
|
objcopy_embed_flags_feature,
|
|
user_compile_flags_feature,
|
|
coverage_feature,
|
|
]
|
|
|
|
tool_paths = [
|
|
tool_path(name = "ld", path = osxcross_binprefix + "ld"),
|
|
tool_path(name = "cpp", path = osxcross + "bin/o64-clang++"),
|
|
tool_path(name = "dwp", path = "/usr/bin/dwp"),
|
|
tool_path(name = "gcov", path = "/usr/bin/gcov"),
|
|
tool_path(name = "nm", path = osxcross_binprefix + "nm"),
|
|
tool_path(name = "objdump", path = osxcross_binprefix + "ObjectDump"),
|
|
tool_path(name = "strip", path = osxcross_binprefix + "strip"),
|
|
tool_path(name = "gcc", path = osxcross + "bin/o64-clang"),
|
|
tool_path(name = "ar", path = osxcross_binprefix + "libtool"),
|
|
]
|
|
|
|
return cc_common.create_cc_toolchain_config_info(
|
|
ctx = ctx,
|
|
features = features,
|
|
abi_version = abi_version,
|
|
abi_libc_version = abi_libc_version,
|
|
compiler = compiler,
|
|
cxx_builtin_include_directories = cross_system_include_dirs,
|
|
host_system_name = "x86_64-unknown-linux-gnu",
|
|
target_cpu = target_cpu,
|
|
target_libc = target_libc,
|
|
target_system_name = ctx.attr.target,
|
|
tool_paths = tool_paths,
|
|
toolchain_identifier = toolchain_identifier,
|
|
)
|
|
|
|
osx_cc_toolchain_config = rule(
|
|
implementation = _impl,
|
|
attrs = {
|
|
"target": attr.string(mandatory = True),
|
|
"stdlib": attr.string(),
|
|
},
|
|
provides = [CcToolchainConfigInfo],
|
|
)
|