diff options
author | Marius Bakke <marius@gnu.org> | 2020-11-26 23:59:28 +0100 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2020-11-26 23:59:28 +0100 |
commit | 24c86ad0c05bac966c3f5f3c5f40c6b0945adf09 (patch) | |
tree | 45160aa4ebe3651a79b5abd76dcefaf8813aa966 /gnu/packages/cross-base.scm | |
parent | bff94a5a537c2c484f9f6e98cab75195c3dde9e7 (diff) | |
parent | 4a914de930a8317cab5bc11bdb608e3a3da3d1ad (diff) |
Merge branch 'master' into staging
Diffstat (limited to 'gnu/packages/cross-base.scm')
-rw-r--r-- | gnu/packages/cross-base.scm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gnu/packages/cross-base.scm b/gnu/packages/cross-base.scm index c1e5f2eb79..bea2d69876 100644 --- a/gnu/packages/cross-base.scm +++ b/gnu/packages/cross-base.scm @@ -153,6 +153,12 @@ base compiler and using LIBC (which may be either a libc package or #f.)" "--disable-decimal-float" ;would need libc "--disable-libcilkrts" + ,@(if (equal? "powerpc64le-linux-gnu" target) + ;; On POWER9 (little endian) glibc needs + ;; the 128-bit long double type. + '("--with-long-double-128") + '()) + ;; When target is any OS other than 'none' these ;; libraries will fail if there is no libc ;; present. See |