Adding a gcc patch I forgot to add in the proper commit, while it is already
referenced in the gcc 4.3 expression. svn path=/nixpkgs/branches/stdenv-updates/; revision=18813
This commit is contained in:
parent
4164de326a
commit
9651069240
1 changed files with 3 additions and 3 deletions
|
@ -12,7 +12,7 @@
|
|||
, name ? "gcc"
|
||||
, cross ? null
|
||||
, binutilsCross ? null
|
||||
, glibcCross ? null
|
||||
, libcCross ? null
|
||||
, crossStageStatic ? true
|
||||
}:
|
||||
|
||||
|
@ -36,7 +36,7 @@ let
|
|||
" --disable-libgomp " +
|
||||
" --disable-shared"
|
||||
else
|
||||
" --with-headers=${glibcCross}/include" +
|
||||
" --with-headers=${libcCross}/include" +
|
||||
" --enable-__cxa_atexit" +
|
||||
" --enable-long-long" +
|
||||
" --enable-threads=posix" +
|
||||
|
@ -78,7 +78,7 @@ stdenv.mkDerivation ({
|
|||
++ optional langJava ./java-jvgenmain-link.patch;
|
||||
|
||||
inherit noSysDirs profiledCompiler staticCompiler crossStageStatic
|
||||
binutilsCross glibcCross;
|
||||
binutilsCross libcCross;
|
||||
targetConfig = if (cross != null) then cross.config else null;
|
||||
|
||||
buildInputs = [texinfo gmp mpfr]
|
||||
|
|
Loading…
Reference in a new issue