summaryrefslogtreecommitdiffstats
path: root/Misc/platform_triplet.c
Commit message (Collapse)AuthorAgeFilesLines
* gh-71052: Change Android's `sys.platform` from "linux" to "android"Malcolm Smith2024-03-111-1/+13
| | | | Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
* gh-114099: Add configure and Makefile targets to support iOS compilation. ↵Russell Keith-Magee2024-02-261-0/+15
| | | | (GH-115390)
* gh-108447: Detect platform triplets for x86_64 GNU/Hurd (#108045)Samuel Thibault2023-08-241-0/+6
|
* gh-95855: Refactor platform triplet detection code, add detection for MIPS ↵Jeffery To2023-08-241-0/+255
soft float and musl libc (#107221) - Move platform triplet detection code into Misc/platform_triplet.c - Refactor MIPS detection, use defined(__mips64) to detect MIPS64 - Compute libc values in separate section - Add detection for MIPS soft float - Add detection for musl musl supports SPE with its soft-float ABI: https://git.musl-libc.org/cgit/musl/commit/?id=7be59733d71ada3a32a98622507399253f1d5e48 Original patch by Christian Heimes. Co-authored-by: Christian Heimes <christian@python.org> Co-authored-by: Erlend E. Aasland <erlend@python.org>