Skip to content

Commit

Permalink
Update roborio
Browse files Browse the repository at this point in the history
  • Loading branch information
pjreiniger committed Oct 18, 2023
1 parent 47084bd commit 8be48ef
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions generate/get_toolchain_dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ class ToolchainDef(NamedTuple):


def get_toolchain_dependencies():
overall_year = "2024"
overall_version = "1"

# https://github.com/wpilibsuite/opensdk/releases/download/v2023-7/arm64-bullseye-2023-x86_64-apple-darwin-Toolchain-10.2.0.tgz
# https://github.com/wpilibsuite/opensdk/releases/download/v2023-7/cortexa9_vfpv3-roborio-academic-2023-aarch64-bullseye-linux-gnu-Toolchain-12.1.0.tgz
# https://github.com/wpilibsuite/opensdk/releases/download/v2023-7/cortexa9_vfpv3-roborio-academic-2023-x86_64-apple-darwin-Toolchain-12.1.0.tgz
Expand Down Expand Up @@ -58,17 +61,14 @@ def get_toolchain_dependencies():
name="cortexa9_vfpv3-roborio-academic",
short_name="roborio",
bin_subfolder="roborio-academic/bin",
bin_prefix="arm-frc2023-linux-gnueabi-",
bin_prefix="arm-frc" + overall_year + "-linux-gnueabi-",
sysroot_subfolder="roborio-academic/arm-nilrt-linux-gnueabi/sysroot",
cxx_version="12",
sysroot_include_folder="arm-nilrt-linux-gnueabi",
toolchain_version="12.1.0",
),
]

overall_year = "2024"
overall_version = "1"

container = ToolchainDependencyContainer(
"rules_bzlmodrio_toolchains", overall_year, overall_year + "-" + overall_version
)
Expand Down
2 changes: 1 addition & 1 deletion toolchains/load_toolchains.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def load_toolchains():
name = "local_roborio",
compiler = "roborio",
bin_subfolder = "roborio-academic/bin",
bin_prefix = "arm-frc2023-linux-gnueabi-",
bin_prefix = "arm-frc2024-linux-gnueabi-",
sysroot_subfolder = "roborio-academic/arm-nilrt-linux-gnueabi/sysroot",
cxx_version = "12",
sysroot_include_folder = "arm-nilrt-linux-gnueabi",
Expand Down

0 comments on commit 8be48ef

Please sign in to comment.