Skip to content

Commit

Permalink
Merge pull request #14153 from joachifm/fix-clisp-i686
Browse files Browse the repository at this point in the history
clisp: fix i686 build
  • Loading branch information
peti committed Mar 23, 2016
2 parents d752865 + 1972c5a commit c9957e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkgs/development/interpreters/clisp/2.44.1.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/interpreters/clisp/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit c9957e1

Please sign in to comment.