about summary refs log tree commit diff
path: root/pkgs/development/interpreters
diff options
context:
space:
mode:
authorDoron Behar <doron.behar@gmail.com>2020-02-18 16:33:08 +0200
committerDoron Behar <doron.behar@gmail.com>2020-02-22 12:33:58 +0200
commitb631f620d46d2a6103ad8ba4de4ba40152cf3741 (patch)
tree0fdbf00cbfb96b09bbc397effb88a16fff525638 /pkgs/development/interpreters
parentd4861e2b18a47b21b60d9a0018e1b96878458588 (diff)
downloadnixlib-b631f620d46d2a6103ad8ba4de4ba40152cf3741.tar
nixlib-b631f620d46d2a6103ad8ba4de4ba40152cf3741.tar.gz
nixlib-b631f620d46d2a6103ad8ba4de4ba40152cf3741.tar.bz2
nixlib-b631f620d46d2a6103ad8ba4de4ba40152cf3741.tar.lz
nixlib-b631f620d46d2a6103ad8ba4de4ba40152cf3741.tar.xz
nixlib-b631f620d46d2a6103ad8ba4de4ba40152cf3741.tar.zst
nixlib-b631f620d46d2a6103ad8ba4de4ba40152cf3741.zip
octave: Revert "remove old fix for build issue"
This reverts commit 3beeacfd58239bb6e95aa716dedddae17716b6eb.
Diffstat (limited to 'pkgs/development/interpreters')
-rw-r--r--pkgs/development/interpreters/octave/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/interpreters/octave/default.nix b/pkgs/development/interpreters/octave/default.nix
index 14d1913a1ab9..78f927dc4ee7 100644
--- a/pkgs/development/interpreters/octave/default.nix
+++ b/pkgs/development/interpreters/octave/default.nix
@@ -124,6 +124,9 @@ stdenv.mkDerivation rec {
 
   enableParallelBuilding = true;
 
+  # See https://savannah.gnu.org/bugs/?50339
+  F77_INTEGER_8_FLAG = if openblas.blas64 then "-fdefault-integer-8" else "";
+
   configureFlags = [
     "--enable-readline"
     "--with-blas=openblas"