Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c97fcb4d2b08
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5662c243026b
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jun 1, 2018

  1. qpid-cpp: fix build after #28029

    When -O2 from hardening does not redefine -O3 from CMake, the build fails with:
    
         src/qpid/broker/SelectorExpression.cpp: In member function ‘qpid::broker::Expression* qpid::broker::Parse::orExpression(qpid::broker::Tokeniser&)’:
         src/qpid/broker/SelectorExpression.cpp:1041:13: error: ‘*((void*)& s +17)’ may be used uninitialized in this function [-Werror=maybe-uninitialized]
              if (s[1]=='b' || s[1]=='B') {
    orivej committed Jun 1, 2018
    Copy the full SHA
    5662c24 View commit details
Showing with 2 additions and 1 deletion.
  1. +2 −1 pkgs/servers/amqp/qpid-cpp/default.nix
3 changes: 2 additions & 1 deletion pkgs/servers/amqp/qpid-cpp/default.nix
Original file line number Diff line number Diff line change
@@ -35,8 +35,9 @@ let

NIX_CFLAGS_COMPILE = [
"-Wno-error=deprecated-declarations"
"-Wno-error=unused-function"
"-Wno-error=int-in-bool-context"
"-Wno-error=maybe-uninitialized"
"-Wno-error=unused-function"
];
};