lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

libx86: Supports only x86

In theory it builds for 32-bit ARM but the result probably doesn't
work in a meaningful manner...

+2 -2
+2 -2
pkgs/development/libraries/libx86/default.nix
··· 13 13 # http://www.mail-archive.com/suspend-devel@lists.sourceforge.net/msg02355.html 14 14 makeFlags = [ 15 15 "DESTDIR=$(out)" 16 - ] ++ stdenv.lib.optional (stdenv.isx86_64 || stdenv.isArm) "BACKEND=x86emu"; 16 + ] ++ stdenv.lib.optional (!stdenv.isi686) "BACKEND=x86emu"; 17 17 18 18 preBuild = '' 19 19 sed -i lrmi.c -e 's@defined(__i386__)@(defined(__i386__) || defined(__x86_64__))@' ··· 23 23 meta = with stdenv.lib; { 24 24 description = "Real-mode x86 code emulator"; 25 25 maintainers = with maintainers; [ raskin ]; 26 - platforms = with platforms; linux ++ freebsd ++ netbsd; 26 + platforms = [ "x86_64-linux" "i686-linux" ]; 27 27 license = licenses.mit; 28 28 }; 29 29 }