Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 584a9ae

Browse filesBrowse files
authored
feat(toolchains): Add armv7 linux platform to available toolchain platforms (bazel-contrib#1770)
1 parent 5631f05 commit 584a9ae
Copy full SHA for 584a9ae

File tree

Expand file treeCollapse file tree

2 files changed

+10
-0
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+10
-0
lines changed

‎CHANGELOG.md

Copy file name to clipboardExpand all lines: CHANGELOG.md
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ A brief description of the categories of changes:
3535

3636
### Added
3737

38+
* (toolchains) Added armv7 platform definition for python toolchains.
39+
3840
* New Python versions available: `3.11.8`, `3.12.2` using
3941
https://github.com/indygreg/python-build-standalone/releases/tag/20240224.
4042
* (gazelle) Added a new `python_visibility` directive to control visibility

‎python/versions.bzl

Copy file name to clipboardExpand all lines: python/versions.bzl
+8Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -454,6 +454,14 @@ PLATFORMS = {
454454
# repository_ctx.execute(["uname", "-m"]).stdout.strip()
455455
arch = "aarch64",
456456
),
457+
"armv7-unknown-linux-gnu": struct(
458+
compatible_with = [
459+
"@platforms//os:linux",
460+
"@platforms//cpu:armv7",
461+
],
462+
os_name = LINUX_NAME,
463+
arch = "armv7",
464+
),
457465
"ppc64le-unknown-linux-gnu": struct(
458466
compatible_with = [
459467
"@platforms//os:linux",

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.