Merge pull request #266222 from wegank/gengetopt-clang-16

gengetopt: fix build with clang 16
This commit is contained in:
Weijia Wang 2023-11-09 04:59:28 +01:00 committed by GitHub
commit 5188867031
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 0 deletions

View File

@ -27,6 +27,10 @@ stdenv.mkDerivation rec {
'set +o posix'
'';
env = lib.optionalAttrs stdenv.cc.isClang {
CXXFLAGS = "-std=c++14";
};
meta = {
description = "Command-line option parser generator";

View File

@ -20,6 +20,13 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ gengetopt m4 git gnupg perl autoconf automake help2man pkg-config ];
buildInputs = [ boehmgc ];
env = lib.optionalAttrs stdenv.cc.isClang {
NIX_CFLAGS_COMPILE = toString [
"-Wno-error=implicit-function-declaration"
"-Wno-error=implicit-int"
];
};
meta = {
homepage = "https://github.com/rrthomas/mmv";
description = "Utility for wildcard renaming, copying, etc";