mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #31348 from Tehnix/master
PHP: Specify CXXFLAGS for macOS, fixes #31059
This commit is contained in:
commit
80ae60a34b
1 changed files with 3 additions and 1 deletions
|
@ -20,10 +20,12 @@ let
|
|||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ flex bison ]
|
||||
++ lib.optional stdenv.isLinux systemd;
|
||||
|
||||
CXXFLAGS = lib.optional stdenv.cc.isClang "-std=c++11";
|
||||
|
||||
flags = {
|
||||
|
||||
# much left to do here...
|
||||
|
|
Loading…
Reference in a new issue