Skip to content

Commit

Permalink
Merge pull request #217977 from amjoseph-nixpkgs/pr/gcc/fix-plugin-or…
Browse files Browse the repository at this point in the history
…der-assertion

gcc: fix implication order in assertion
  • Loading branch information
trofi committed Feb 25, 2023
2 parents a8122ef + 86a0e46 commit 504c4fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/development/compilers/gcc/common/configure-flags.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
, disableBootstrap ? stdenv.targetPlatform != stdenv.hostPlatform
}:

assert disableGdbPlugin -> !enablePlugin;
assert !enablePlugin -> disableGdbPlugin;
assert langJava -> lib.versionOlder version "7";

# Note [Windows Exception Handling]
Expand Down

0 comments on commit 504c4fd

Please sign in to comment.