io: disable i686 build

io uses SIMD instructions even on i686, causing the build to fail:

> /nix/store/[...]-gcc-5.4.0/lib/gcc/i686-pc-linux-gnu/5.4.0/include/xmmintrin.h:181:1:
error: inlining failed in call to always_inline '_mm_add_ps': target
specific option mismatch
 _mm_add_ps (__m128 __A, __m128 __B)

(from https://hydra.nixos.org/build/37879114/log/raw)

The simplest solution is to disable the build on this platform.
This commit is contained in:
Joachim Fasting 2016-07-26 22:02:50 +02:00
parent e113db1e24
commit f16d3800e1
No known key found for this signature in database
GPG Key ID: 7544761007FE4E08

View File

@ -47,6 +47,6 @@ stdenv.mkDerivation {
z77z
vrthra
];
platforms = platforms.linux;
platforms = [ "x86_64-linux" ];
};
}