lol

Revert "julia: fix i686 build"

This reverts commit 02fc4551f5d1eeb657cddea4658eb4212518311c.

+11 -1
+11 -1
pkgs/development/compilers/julia/0.3.nix
··· 79 79 nativeBuildInputs = [ gfortran git m4 patchelf perl which python2 ]; 80 80 81 81 makeFlags = 82 - [ 82 + let 83 + arch = head (splitString "-" stdenv.system); 84 + march = 85 + { "x86_64-linux" = "x86-64"; 86 + "x86_64-darwin" = "x86-64"; 87 + "i686-linux" = "i686"; 88 + }."${stdenv.system}" or (throw "unsupported system: ${stdenv.system}"); 89 + in [ 90 + "ARCH=${arch}" 91 + "MARCH=${march}" 92 + "JULIA_CPU_TARGET=${march}" 83 93 "PREFIX=$(out)" 84 94 "prefix=$(out)" 85 95 "SHELL=${stdenv.shell}"