rust/mk/cfg
Ulrich Weigand 19b84088d7 Add s390x support
This adds support for building the Rust compiler and standard
library for s390x-linux, allowing a full cross-bootstrap sequence
to complete.  This includes:

- Makefile/configure changes to allow native s390x builds
- Full Rust compiler support for the s390x C ABI
  (only the non-vector ABI is supported at this point)
- Port of the standard library to s390x
- Update the liblibc submodule to a version including s390x support
- Testsuite fixes to allow clean "make check" on s390x

Caveats:

- Resets base cpu to "z10" to bring support in sync with the default
  behaviour of other compilers on the platforms.  (Usually, upstream
  supports all older processors; a distribution build may then chose
  to require a more recent base version.)  (Also, using zEC12 causes
  failures in the valgrind tests since valgrind doesn't fully support
  this CPU yet.)

- z13 vector ABI is not yet supported.  To ensure compatible code
  generation, the -vector feature is passed to LLVM.  Note that this
  means that even when compiling for z13, no vector instructions
  will be used.  In the future, support for the vector ABI should be
  added (this will require common code support for different ABIs
  that need different data_layout strings on the same platform).

- Two test cases are (temporarily) ignored on s390x to allow passing
  the test suite.  The underlying issues still need to be fixed:
  * debuginfo/simd.rs fails because of incorrect debug information.
    This seems to be a LLVM bug (also seen with C code).
  * run-pass/union/union-basic.rs simply seems to be incorrect for
    all big-endian platforms.

Signed-off-by: Ulrich Weigand <ulrich.weigand@de.ibm.com>
2016-09-09 22:28:19 +01:00
..
aarch64-apple-ios.mk mk: Remove -Wall -Werror everywhere 2016-07-19 00:04:47 -07:00
aarch64-linux-android.mk Revert "mk: fix some undefined variable warnings" 2016-02-01 23:27:04 -08:00
aarch64-unknown-linux-gnu.mk mk: Ensure LINK_$(1) is defined for all targets 2015-05-26 10:05:46 -07:00
arm-linux-androideabi.mk Splits Android NDK path configuration. 2015-07-28 19:21:04 +12:00
arm-unknown-linux-gnueabi.mk mk: Specify armv6 for gcc on arm-unknown-linux-* 2016-02-20 18:21:26 -08:00
arm-unknown-linux-gnueabihf.mk mk: Specify armv6 for gcc on arm-unknown-linux-* 2016-02-20 18:21:26 -08:00
arm-unknown-linux-musleabi.mk arm-unknown-linux-musleabi updates for ARMv6 2016-08-06 13:45:28 -05:00
arm-unknown-linux-musleabihf.mk Add ARM MUSL targets. 2016-07-30 15:39:13 -05:00
armv7-apple-ios.mk mk: Remove -Wall -Werror everywhere 2016-07-19 00:04:47 -07:00
armv7-linux-androideabi.mk Add armv7-linux-androideabi target. 2016-05-07 13:29:57 +03:00
armv7-unknown-linux-gnueabihf.mk Eradicate last vestiges of armv6 2016-02-22 08:25:29 +01:00
armv7-unknown-linux-musleabihf.mk Add ARM MUSL targets. 2016-07-30 15:39:13 -05:00
armv7s-apple-ios.mk mk: Remove -Wall -Werror everywhere 2016-07-19 00:04:47 -07:00
asmjs-unknown-emscripten.mk mk: Remove -Wall -Werror everywhere 2016-07-19 00:04:47 -07:00
i386-apple-ios.mk mk: Remove -Wall -Werror everywhere 2016-07-19 00:04:47 -07:00
i586-pc-windows-msvc.mk test: Move run-make tests into compiletest 2016-04-28 21:46:40 -07:00
i586-unknown-linux-gnu.mk add -mrelax-relocations=no to i686-musl and i586-gnu 2016-08-10 14:35:09 -05:00
i686-apple-darwin.mk mk: Remove -Wall -Werror everywhere 2016-07-19 00:04:47 -07:00
i686-linux-android.mk New cross target: i686-linux-android 2015-08-23 15:38:11 +08:00
i686-pc-windows-gnu.mk mk: Remove -Wall -Werror everywhere 2016-07-19 00:04:47 -07:00
i686-pc-windows-msvc.mk test: Move run-make tests into compiletest 2016-04-28 21:46:40 -07:00
i686-unknown-freebsd.mk mk: Remove -Wall -Werror everywhere 2016-07-19 00:04:47 -07:00
i686-unknown-linux-gnu.mk mk: Remove -Wall -Werror everywhere 2016-07-19 00:04:47 -07:00
i686-unknown-linux-musl.mk add -mrelax-relocations=no to i686-musl and i586-gnu 2016-08-10 14:35:09 -05:00
le32-unknown-nacl.mk Add PNaCl target info to the makefile target cfgs and initialize the PNaCl target 2015-12-19 00:26:53 -06:00
mips-unknown-linux-gnu.mk mk: Don't pass -msoft-float on mips-gnu 2016-07-15 13:46:09 -07:00
mips-unknown-linux-musl.mk rustc: set MIPS cpu/features in the compiler 2016-01-30 14:44:40 -05:00
mips-unknown-linux-uclibc.mk add mips-uclibc targets 2016-08-16 17:12:51 -05:00
mips64-unknown-linux-gnuabi64.mk add mips64-gnu and mips64el-gnu targets 2016-08-26 17:17:03 -05:00
mips64el-unknown-linux-gnuabi64.mk add mips64-gnu and mips64el-gnu targets 2016-08-26 17:17:03 -05:00
mipsel-unknown-linux-gnu.mk rustc: Set MIPS cpu/features in the compiler 2016-01-29 23:44:46 -08:00
mipsel-unknown-linux-musl.mk rustc: set MIPS cpu/features in the compiler 2016-01-30 14:44:40 -05:00
mipsel-unknown-linux-uclibc.mk add mips-uclibc targets 2016-08-16 17:12:51 -05:00
powerpc-unknown-linux-gnu.mk mk: Remove -Wall -Werror everywhere 2016-07-19 00:04:47 -07:00
powerpc64-unknown-linux-gnu.mk mk: Remove -Wall -Werror everywhere 2016-07-19 00:04:47 -07:00
powerpc64le-unknown-linux-gnu.mk mk: Remove -Wall -Werror everywhere 2016-07-19 00:04:47 -07:00
s390x-unknown-linux-gnu.mk Add s390x support 2016-09-09 22:28:19 +01:00
x86_64-apple-darwin.mk mk: Remove -Wall -Werror everywhere 2016-07-19 00:04:47 -07:00
x86_64-apple-ios.mk mk: Remove -Wall -Werror everywhere 2016-07-19 00:04:47 -07:00
x86_64-pc-windows-gnu.mk mk: Remove -Wall -Werror everywhere 2016-07-19 00:04:47 -07:00
x86_64-pc-windows-msvc.mk test: Move run-make tests into compiletest 2016-04-28 21:46:40 -07:00
x86_64-rumprun-netbsd.mk mk: Remove -Wall -Werror everywhere 2016-07-19 00:04:47 -07:00
x86_64-sun-solaris.mk mk: Remove -Wall -Werror everywhere 2016-07-19 00:04:47 -07:00
x86_64-unknown-bitrig.mk mk: Remove -Wall -Werror everywhere 2016-07-19 00:04:47 -07:00
x86_64-unknown-dragonfly.mk mk: Remove -Wall -Werror everywhere 2016-07-19 00:04:47 -07:00
x86_64-unknown-freebsd.mk mk: Remove -Wall -Werror everywhere 2016-07-19 00:04:47 -07:00
x86_64-unknown-linux-gnu.mk mk: Remove -Wall -Werror everywhere 2016-07-19 00:04:47 -07:00
x86_64-unknown-linux-musl.mk Add -mrelax-relocations=no hacks to fix musl build 2016-08-01 23:42:15 -07:00
x86_64-unknown-netbsd.mk mk: Remove -Wall -Werror everywhere 2016-07-19 00:04:47 -07:00
x86_64-unknown-openbsd.mk mk: Remove -Wall -Werror everywhere 2016-07-19 00:04:47 -07:00