mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #236396 from jleightcap/jl/gcj-fix
gcj: fix compiler
This commit is contained in:
commit
0b7a8b6982
1 changed files with 2 additions and 2 deletions
|
@ -301,7 +301,7 @@ stdenv.mkDerivation {
|
|||
'';
|
||||
|
||||
strictDeps = true;
|
||||
propagatedBuildInputs = [ bintools ] ++ extraTools ++ optionals cc.langD or false [ zlib ];
|
||||
propagatedBuildInputs = [ bintools ] ++ extraTools ++ optionals cc.langD or cc.langJava or false [ zlib ];
|
||||
depsTargetTargetPropagated = optional (libcxx != null) libcxx ++ extraPackages;
|
||||
|
||||
setupHooks = [
|
||||
|
@ -464,7 +464,7 @@ stdenv.mkDerivation {
|
|||
+ optionalString propagateDoc ''
|
||||
ln -s ${cc.man} $man
|
||||
ln -s ${cc.info} $info
|
||||
'' + optionalString (cc.langD or false) ''
|
||||
'' + optionalString (cc.langD or cc.langJava or false) ''
|
||||
echo "-B${zlib}${zlib.libdir or "/lib/"}" >> $out/nix-support/libc-cflags
|
||||
''
|
||||
|
||||
|
|
Loading…
Reference in a new issue