darwin.text_cmds: fix build with clang 16
This commit is contained in:
parent
bed56440cb
commit
daa4cd2c2a
@ -20,7 +20,12 @@ appleDerivation {
|
||||
done
|
||||
'';
|
||||
|
||||
env.NIX_CFLAGS_COMPILE = toString [ "-Wno-error=format-security" ]; # hardeningDisable doesn't cut it
|
||||
env.NIX_CFLAGS_COMPILE = toString [
|
||||
# hardeningDisable doesn't cut it
|
||||
"-Wno-error=format-security"
|
||||
# Required to build with clang 16
|
||||
"-Wno-error=deprecated-non-prototype"
|
||||
];
|
||||
|
||||
meta = {
|
||||
platforms = lib.platforms.darwin;
|
||||
|
Loading…
Reference in New Issue
Block a user