File tree 2 files changed +10
-0
lines changed
2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,8 @@ A brief description of the categories of changes:
35
35
36
36
### Added
37
37
38
+ * (toolchains) Added armv7 platform definition for python toolchains.
39
+
38
40
* New Python versions available: ` 3.11.8 ` , ` 3.12.2 ` using
39
41
https://github.com/indygreg/python-build-standalone/releases/tag/20240224 .
40
42
* (gazelle) Added a new ` python_visibility ` directive to control visibility
Original file line number Diff line number Diff line change @@ -454,6 +454,14 @@ PLATFORMS = {
454
454
# repository_ctx.execute(["uname", "-m"]).stdout.strip()
455
455
arch = "aarch64" ,
456
456
),
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
+ ),
457
465
"ppc64le-unknown-linux-gnu" : struct (
458
466
compatible_with = [
459
467
"@platforms//os:linux" ,
You can’t perform that action at this time.
0 commit comments