Skip to content

Commit

Permalink
Merge pull request #240596 from amjoseph-nixpkgs/pr/gcc/stage-rename
Browse files Browse the repository at this point in the history
  • Loading branch information
Artturin authored Oct 27, 2023
2 parents b47fe70 + 1904125 commit 4693035
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/compilers/gcc/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ let inherit version;

/* Cross-gcc settings (build == host != target) */
crossMingw = targetPlatform != hostPlatform && targetPlatform.isMinGW;
stageNameAddon = if withoutTargetLibc then "stage-static" else "stage-final";
crossNameAddon = optionalString (targetPlatform != hostPlatform) "${targetPlatform.config}-${stageNameAddon}-";
stageNameAddon = optionalString withoutTargetLibc "-nolibc";
crossNameAddon = optionalString (targetPlatform != hostPlatform) "${targetPlatform.config}${stageNameAddon}-";

javaAwtGtk = langJava && x11Support;
xlibs = [
Expand Down

0 comments on commit 4693035

Please sign in to comment.