From 8191d3ff6587e14c62071351057905fc96c28751 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Fri, 30 Dec 2016 23:46:54 -0500 Subject: [PATCH] document supported TARGET tuples --- README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/README.md b/README.md index 58e56ff..efee657 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,26 @@ can move the cross compiler toolchain to another location as desired. +Supported `TARGET`s +------------------- + +The following is a non-exhaustive list of `$(TARGET)` tuples that are +believed to work: + +- `aarch64[_be]-linux-musl` +- `arm[eb]-linux-musleabi[hf]` +- `i*86-linux-musl` +- `mips-linux-musl` +- `mips[el]-linux-musl[sf]` +- `mips64[el]-linux-musl[n32][sf]` +- `powerpc-linux-musl[sf]` +- `powerpc64[le]-linux-musl` +- `s390x-linux-musl` +- `sh*[eb]-linux-musl[fdpic][sf]` +- `x86_64-linux-musl[x32]` + + + How it works ------------