mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-07-06 03:31:43 +00:00
[bazel] Update configuration for which platforms to split debug symbols for (#8140)
I could have sworn that we were only splitting debug symbols on x86. The most recent tests I have done suggest that is backwards. This is easy to reconfigure later if needed. Signed-off-by: Austin Schuh <austin.linux@gmail.com>
This commit is contained in:
@@ -400,7 +400,8 @@ def wpilib_cc_shared_library(
|
||||
_split_debug_symbols(
|
||||
name = name + "-symbolsplit",
|
||||
copy = select({
|
||||
"@rules_bzlmodrio_toolchains//conditions:linux_x86_64": False,
|
||||
"@rules_bzlmodrio_toolchains//conditions:linux_arm64": False,
|
||||
"@rules_bzlmodrio_toolchains//conditions:linux_x86_64": True,
|
||||
"//conditions:default": True,
|
||||
}),
|
||||
use_debug_name = select({
|
||||
|
||||
Reference in New Issue
Block a user