mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 08:13:04 +00:00
Merge pull request #175433 from trofi/linux-disable-Werror
linux: disable WERROR by default
This commit is contained in:
commit
1bd8058f66
@ -917,6 +917,9 @@ let
|
||||
TASK_DELAY_ACCT = yes;
|
||||
TASK_XACCT = yes;
|
||||
TASK_IO_ACCOUNTING = yes;
|
||||
|
||||
# Fresh toolchains frequently break -Werror build for minor issues.
|
||||
WERROR = whenAtLeast "5.15" no;
|
||||
} // optionalAttrs (stdenv.hostPlatform.system == "x86_64-linux" || stdenv.hostPlatform.system == "aarch64-linux") {
|
||||
# Enable CPU/memory hotplug support
|
||||
# Allows you to dynamically add & remove CPUs/memory to a VM client running NixOS without requiring a reboot
|
||||
|
Loading…
Reference in New Issue
Block a user