mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Adding a cross compiler condition for sparc64 due to a gcc bug
svn path=/nixpkgs/trunk/; revision=20277
This commit is contained in:
parent
8cf1f739e2
commit
81b325b33f
1 changed files with 2 additions and 1 deletions
|
@ -1966,7 +1966,8 @@ let
|
||||||
profiledCompiler = false;
|
profiledCompiler = false;
|
||||||
enableMultilib = false;
|
enableMultilib = false;
|
||||||
# cross-building for ultrasparc in 4.4.3 will require disabling shared due to a gcc bug.
|
# cross-building for ultrasparc in 4.4.3 will require disabling shared due to a gcc bug.
|
||||||
# enableShared = false;
|
# http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41818
|
||||||
|
enableShared = if (cross.platform.arch == "sparc64") then true false else;
|
||||||
crossStageStatic = false;
|
crossStageStatic = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue