mirror of
https://github.com/aviallon/nixos-lib.git
synced 2026-04-06 01:38:06 +00:00
[Optimizations] Remove explicit mtune from extra compile flags
Now handled in lib/optimizations.nix with cpuTune arg
This commit is contained in:
parent
29b799da7c
commit
099e2949de
1 changed files with 1 additions and 1 deletions
|
|
@ -43,7 +43,7 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
extraCompileFlags = mkOption {
|
extraCompileFlags = mkOption {
|
||||||
default = [ "-mtune=${generalCfg.cpuTune}" ];
|
default = [ ];
|
||||||
example = [ "-O2" "-mavx" ];
|
example = [ "-O2" "-mavx" ];
|
||||||
description = "Add specific compile flags";
|
description = "Add specific compile flags";
|
||||||
type = types.listOf types.str;
|
type = types.listOf types.str;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue