forked from mirrors/nixpkgs
flac: set CFLAGS and CXXFLAGS to match performance of autotools build
This commit is contained in:
parent
bb6c08c8d5
commit
b8a03cec22
|
@ -33,6 +33,9 @@ stdenv.mkDerivation rec {
|
|||
"-DBUILD_SHARED_LIBS=ON"
|
||||
];
|
||||
|
||||
CFLAGS = [ "-O3" "-funroll-loops" ];
|
||||
CXXFLAGS = [ "-O3" ];
|
||||
|
||||
# doCheck = true; # takes lots of time
|
||||
|
||||
outputs = [ "bin" "dev" "out" "man" "doc" ];
|
||||
|
|
Loading…
Reference in a new issue