Skip to content

Commit

Permalink
feat(toolchains): Add armv7 linux platform to available toolchain pla…
Browse files Browse the repository at this point in the history
…tforms (#1770)
  • Loading branch information
UebelAndre committed Mar 31, 2024
1 parent 5631f05 commit 584a9ae
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ A brief description of the categories of changes:

### Added

* (toolchains) Added armv7 platform definition for python toolchains.

* New Python versions available: `3.11.8`, `3.12.2` using
https://github.com/indygreg/python-build-standalone/releases/tag/20240224.
* (gazelle) Added a new `python_visibility` directive to control visibility
Expand Down
8 changes: 8 additions & 0 deletions python/versions.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -454,6 +454,14 @@ PLATFORMS = {
# repository_ctx.execute(["uname", "-m"]).stdout.strip()
arch = "aarch64",
),
"armv7-unknown-linux-gnu": struct(
compatible_with = [
"@platforms//os:linux",
"@platforms//cpu:armv7",
],
os_name = LINUX_NAME,
arch = "armv7",
),
"ppc64le-unknown-linux-gnu": struct(
compatible_with = [
"@platforms//os:linux",
Expand Down

0 comments on commit 584a9ae

Please sign in to comment.