[Treewide] Rename cpuXxxx references to cpu.xxxx references

This commit is contained in:
Antoine Viallon 2023-05-07 01:03:58 +02:00
parent c4a7421ec6
commit bc8978484f
Signed by: aviallon
GPG key ID: 186FC35EDEB25716
7 changed files with 17 additions and 17 deletions

View file

@ -100,8 +100,8 @@ in {
optimizedAttrs = {}
// {
configureFlags = [
"--with-cpu-64=${generalCfg.cpuArch}" "--with-arch-64=${generalCfg.cpuArch}"
"--with-tune-64=${generalCfg.cpuTune}"
"--with-cpu-64=${generalCfg.cpu.arch}" "--with-arch-64=${generalCfg.cpu.arch}"
"--with-tune-64=${generalCfg.cpu.tune}"
"--with-build-config=bootstrap-lto-lean"
];
}
@ -123,7 +123,7 @@ in {
recursive = 99;
} super.nano;
optipngOptimized = optimizePkg {
parallelize = generalCfg.cores;
parallelize = generalCfg.cpu.threads;
} super.optipng;
myFFmpeg = optimizePkg {
lto = false;