nix

configuration files that power my machines
Log | Files | Refs | README | LICENSE

config.toml (234B)


      1 [build]
      2 rustflags = ["-C", "target-cpu=native", "-C", "link-arg=-fuse-ld=mold"]
      3 
      4 [profile.release]
      5 codegen-units = 1
      6 lto = "fat"
      7 
      8 [profile.profiling]
      9 inherits = "release"
     10 debug = true
     11 codegen-units = 64
     12 lto = "off"
     13 incremental = true