Files

17 lines
214 B
Nix
Raw Permalink Normal View History

2025-09-27 17:53:39 -05:00
{
writeShellApplication,
gcc,
gnugrep,
}:
writeShellApplication {
name = "gcc-tune";
runtimeInputs = [
gcc
gnugrep
];
text = ''
gcc -march=native -Q --help=target | grep 'mtune='
'';
}