mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #14153 from joachifm/fix-clisp-i686
clisp: fix i686 build
This commit is contained in:
commit
c9957e1792
2 changed files with 2 additions and 2 deletions
|
@ -43,7 +43,7 @@ stdenv.mkDerivation rec {
|
|||
cd builddir
|
||||
'';
|
||||
|
||||
NIX_CFLAGS_COMPILE="-O0";
|
||||
NIX_CFLAGS_COMPILE = "-O0 ${stdenv.lib.optionalString (!stdenv.is64bit) "-falign-functions=4"}";
|
||||
|
||||
# TODO : make mod-check fails
|
||||
doCheck = false;
|
||||
|
|
|
@ -53,7 +53,7 @@ stdenv.mkDerivation rec {
|
|||
clx/new-clx bindings/glibc pcre rawsock wildcard zlib
|
||||
'';
|
||||
|
||||
NIX_CFLAGS_COMPILE="-O0";
|
||||
NIX_CFLAGS_COMPILE = "-O0 ${stdenv.lib.optionalString (!stdenv.is64bit) "-falign-functions=4"}";
|
||||
|
||||
# TODO : make mod-check fails
|
||||
doCheck = false;
|
||||
|
|
Loading…
Reference in a new issue