From 1559cbe1ebcea1dac3f5c3a40a51efedd7766ffc Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Sat, 7 Sep 2024 14:55:46 +0000 Subject: Initial commit Signed-off-by: Laurent Bercot --- musl/targets/c1+/options | 1 + musl/targets/c1+/triplet | 1 + musl/targets/genericv7a/options | 1 + musl/targets/genericv7a/triplet | 1 + musl/targets/h3/options | 1 + musl/targets/h3/triplet | 1 + musl/targets/i486/options | 1 + musl/targets/i486/triplet | 1 + musl/targets/i686/options | 1 + musl/targets/i686/triplet | 1 + musl/targets/kryo485/options | 1 + musl/targets/kryo485/triplet | 1 + musl/targets/o3/options | 1 + musl/targets/o3/triplet | 1 + musl/targets/p7/options | 1 + musl/targets/p7/triplet | 1 + musl/targets/pc/options | 1 + musl/targets/pc/triplet | 1 + musl/targets/pi1/options | 1 + musl/targets/pi1/triplet | 1 + musl/targets/pi3/options | 1 + musl/targets/pi3/triplet | 1 + musl/targets/pi4/options | 1 + musl/targets/pi4/triplet | 1 + musl/targets/rocket/options | 0 musl/targets/rocket/triplet | 1 + musl/targets/talos/options | 1 + musl/targets/talos/triplet | 1 + musl/targets/talosel/options | 1 + musl/targets/talosel/triplet | 1 + musl/targets/u3/options | 1 + musl/targets/u3/triplet | 1 + musl/targets/z196/options | 1 + musl/targets/z196/triplet | 1 + 34 files changed, 33 insertions(+) create mode 100644 musl/targets/c1+/options create mode 100644 musl/targets/c1+/triplet create mode 100644 musl/targets/genericv7a/options create mode 100644 musl/targets/genericv7a/triplet create mode 100644 musl/targets/h3/options create mode 100644 musl/targets/h3/triplet create mode 100644 musl/targets/i486/options create mode 100644 musl/targets/i486/triplet create mode 100644 musl/targets/i686/options create mode 100644 musl/targets/i686/triplet create mode 100644 musl/targets/kryo485/options create mode 100644 musl/targets/kryo485/triplet create mode 100644 musl/targets/o3/options create mode 100644 musl/targets/o3/triplet create mode 100644 musl/targets/p7/options create mode 100644 musl/targets/p7/triplet create mode 100644 musl/targets/pc/options create mode 100644 musl/targets/pc/triplet create mode 100644 musl/targets/pi1/options create mode 100644 musl/targets/pi1/triplet create mode 100644 musl/targets/pi3/options create mode 100644 musl/targets/pi3/triplet create mode 100644 musl/targets/pi4/options create mode 100644 musl/targets/pi4/triplet create mode 100644 musl/targets/rocket/options create mode 100644 musl/targets/rocket/triplet create mode 100644 musl/targets/talos/options create mode 100644 musl/targets/talos/triplet create mode 100644 musl/targets/talosel/options create mode 100644 musl/targets/talosel/triplet create mode 100644 musl/targets/u3/options create mode 100644 musl/targets/u3/triplet create mode 100644 musl/targets/z196/options create mode 100644 musl/targets/z196/triplet (limited to 'musl/targets') diff --git a/musl/targets/c1+/options b/musl/targets/c1+/options new file mode 100644 index 0000000..edcaa8d --- /dev/null +++ b/musl/targets/c1+/options @@ -0,0 +1 @@ +--with-arch=armv7-a --with-tune=cortex-a5 --with-float=hard --with-fpu=vfpv4-d16 --with-float-abi=hard diff --git a/musl/targets/c1+/triplet b/musl/targets/c1+/triplet new file mode 100644 index 0000000..c029e66 --- /dev/null +++ b/musl/targets/c1+/triplet @@ -0,0 +1 @@ +arm-linux-musleabihf diff --git a/musl/targets/genericv7a/options b/musl/targets/genericv7a/options new file mode 100644 index 0000000..bd7d438 --- /dev/null +++ b/musl/targets/genericv7a/options @@ -0,0 +1 @@ +--with-arch=armv7-a --with-float=softfp --with-float-abi=softfp diff --git a/musl/targets/genericv7a/triplet b/musl/targets/genericv7a/triplet new file mode 100644 index 0000000..d1a6ca6 --- /dev/null +++ b/musl/targets/genericv7a/triplet @@ -0,0 +1 @@ +arm-linux-musleabi diff --git a/musl/targets/h3/options b/musl/targets/h3/options new file mode 100644 index 0000000..0421e0c --- /dev/null +++ b/musl/targets/h3/options @@ -0,0 +1 @@ +--enable-fix-cortex-a53-835769 --enable-fix-cortex-a53-843419 --with-arch=armv8-a --with-float-abi=hard diff --git a/musl/targets/h3/triplet b/musl/targets/h3/triplet new file mode 100644 index 0000000..32aa1dd --- /dev/null +++ b/musl/targets/h3/triplet @@ -0,0 +1 @@ +aarch64-linux-musl diff --git a/musl/targets/i486/options b/musl/targets/i486/options new file mode 100644 index 0000000..0695cee --- /dev/null +++ b/musl/targets/i486/options @@ -0,0 +1 @@ +--with-arch=i486 --with-cpu=i486 diff --git a/musl/targets/i486/triplet b/musl/targets/i486/triplet new file mode 100644 index 0000000..0164025 --- /dev/null +++ b/musl/targets/i486/triplet @@ -0,0 +1 @@ +i486-linux-musl diff --git a/musl/targets/i686/options b/musl/targets/i686/options new file mode 100644 index 0000000..fdca118 --- /dev/null +++ b/musl/targets/i686/options @@ -0,0 +1 @@ +--with-arch=i686 --with-cpu=i686 diff --git a/musl/targets/i686/triplet b/musl/targets/i686/triplet new file mode 100644 index 0000000..7667e9d --- /dev/null +++ b/musl/targets/i686/triplet @@ -0,0 +1 @@ +i686-linux-musl diff --git a/musl/targets/kryo485/options b/musl/targets/kryo485/options new file mode 100644 index 0000000..4e54542 --- /dev/null +++ b/musl/targets/kryo485/options @@ -0,0 +1 @@ +--with-cpu=cortex-a76.cortex-a55 --with-float-abi=hard diff --git a/musl/targets/kryo485/triplet b/musl/targets/kryo485/triplet new file mode 100644 index 0000000..32aa1dd --- /dev/null +++ b/musl/targets/kryo485/triplet @@ -0,0 +1 @@ +aarch64-linux-musl diff --git a/musl/targets/o3/options b/musl/targets/o3/options new file mode 100644 index 0000000..d9f44a4 --- /dev/null +++ b/musl/targets/o3/options @@ -0,0 +1 @@ +--with-arch=armv7-a --with-tune=cortex-a5 --with-float=soft --with-float-abi=soft diff --git a/musl/targets/o3/triplet b/musl/targets/o3/triplet new file mode 100644 index 0000000..d1a6ca6 --- /dev/null +++ b/musl/targets/o3/triplet @@ -0,0 +1 @@ +arm-linux-musleabi diff --git a/musl/targets/p7/options b/musl/targets/p7/options new file mode 100644 index 0000000..304b2a7 --- /dev/null +++ b/musl/targets/p7/options @@ -0,0 +1 @@ +--with-arch=armv7-a --with-tune=cortex-a9 --with-float=softfp --with-float-abi=softfp --with-fpu=neon diff --git a/musl/targets/p7/triplet b/musl/targets/p7/triplet new file mode 100644 index 0000000..d1a6ca6 --- /dev/null +++ b/musl/targets/p7/triplet @@ -0,0 +1 @@ +arm-linux-musleabi diff --git a/musl/targets/pc/options b/musl/targets/pc/options new file mode 100644 index 0000000..fdbaf40 --- /dev/null +++ b/musl/targets/pc/options @@ -0,0 +1 @@ +--disable-bootstrap diff --git a/musl/targets/pc/triplet b/musl/targets/pc/triplet new file mode 100644 index 0000000..3f20818 --- /dev/null +++ b/musl/targets/pc/triplet @@ -0,0 +1 @@ +x86_64-linux-musl diff --git a/musl/targets/pi1/options b/musl/targets/pi1/options new file mode 100644 index 0000000..1b95a36 --- /dev/null +++ b/musl/targets/pi1/options @@ -0,0 +1 @@ +--with-arch=armv6 --with-float=hard --with-fpu=vfp diff --git a/musl/targets/pi1/triplet b/musl/targets/pi1/triplet new file mode 100644 index 0000000..c029e66 --- /dev/null +++ b/musl/targets/pi1/triplet @@ -0,0 +1 @@ +arm-linux-musleabihf diff --git a/musl/targets/pi3/options b/musl/targets/pi3/options new file mode 100644 index 0000000..85c4b6a --- /dev/null +++ b/musl/targets/pi3/options @@ -0,0 +1 @@ +--with-cpu=cortex-a53 --with-float-abi=hard diff --git a/musl/targets/pi3/triplet b/musl/targets/pi3/triplet new file mode 100644 index 0000000..32aa1dd --- /dev/null +++ b/musl/targets/pi3/triplet @@ -0,0 +1 @@ +aarch64-linux-musl diff --git a/musl/targets/pi4/options b/musl/targets/pi4/options new file mode 100644 index 0000000..47c496f --- /dev/null +++ b/musl/targets/pi4/options @@ -0,0 +1 @@ +--with-arch=armv8-a --with-cpu=cortex-a72 --with-float-abi=hard diff --git a/musl/targets/pi4/triplet b/musl/targets/pi4/triplet new file mode 100644 index 0000000..32aa1dd --- /dev/null +++ b/musl/targets/pi4/triplet @@ -0,0 +1 @@ +aarch64-linux-musl diff --git a/musl/targets/rocket/options b/musl/targets/rocket/options new file mode 100644 index 0000000..e69de29 diff --git a/musl/targets/rocket/triplet b/musl/targets/rocket/triplet new file mode 100644 index 0000000..3dcb11a --- /dev/null +++ b/musl/targets/rocket/triplet @@ -0,0 +1 @@ +riscv64-linux-musl diff --git a/musl/targets/talos/options b/musl/targets/talos/options new file mode 100644 index 0000000..7b3b3b9 --- /dev/null +++ b/musl/targets/talos/options @@ -0,0 +1 @@ +--with-abi=elfv2 diff --git a/musl/targets/talos/triplet b/musl/targets/talos/triplet new file mode 100644 index 0000000..1996e63 --- /dev/null +++ b/musl/targets/talos/triplet @@ -0,0 +1 @@ +powerpc64-linux-musl diff --git a/musl/targets/talosel/options b/musl/targets/talosel/options new file mode 100644 index 0000000..7b3b3b9 --- /dev/null +++ b/musl/targets/talosel/options @@ -0,0 +1 @@ +--with-abi=elfv2 diff --git a/musl/targets/talosel/triplet b/musl/targets/talosel/triplet new file mode 100644 index 0000000..345c11a --- /dev/null +++ b/musl/targets/talosel/triplet @@ -0,0 +1 @@ +powerpc64le-linux-musl diff --git a/musl/targets/u3/options b/musl/targets/u3/options new file mode 100644 index 0000000..f3f30fe --- /dev/null +++ b/musl/targets/u3/options @@ -0,0 +1 @@ +--with-arch=armv7-a --with-tune=cortex-a9 --with-float=hard --with-fpu=vfpv3-d16 --with-float-abi=hard diff --git a/musl/targets/u3/triplet b/musl/targets/u3/triplet new file mode 100644 index 0000000..c029e66 --- /dev/null +++ b/musl/targets/u3/triplet @@ -0,0 +1 @@ +arm-linux-musleabihf diff --git a/musl/targets/z196/options b/musl/targets/z196/options new file mode 100644 index 0000000..a114805 --- /dev/null +++ b/musl/targets/z196/options @@ -0,0 +1 @@ +--with-arch=z196 --with-tune=zEC12 --with-zarch --with-long-double-128 diff --git a/musl/targets/z196/triplet b/musl/targets/z196/triplet new file mode 100644 index 0000000..35672eb --- /dev/null +++ b/musl/targets/z196/triplet @@ -0,0 +1 @@ +s390x-linux-musl -- cgit v1.3.1