Merge "Add option to emit ThinLTO indexes and imports for MLGO training" into main
This commit is contained in:
commit
bc9d35168c
1 changed files with 6 additions and 0 deletions
|
@ -147,6 +147,12 @@ func (lto *lto) flags(ctx BaseModuleContext, flags Flags) Flags {
|
|||
}
|
||||
}
|
||||
|
||||
// For ML training
|
||||
if ctx.Config().IsEnvTrue("THINLTO_EMIT_INDEXES_AND_IMPORTS") {
|
||||
ltoLdFlags = append(ltoLdFlags, "-Wl,--save-temps=import")
|
||||
ltoLdFlags = append(ltoLdFlags, "-Wl,--thinlto-emit-index-files")
|
||||
}
|
||||
|
||||
flags.Local.CFlags = append(flags.Local.CFlags, ltoCFlags...)
|
||||
flags.Local.AsFlags = append(flags.Local.AsFlags, ltoCFlags...)
|
||||
flags.Local.LdFlags = append(flags.Local.LdFlags, ltoCFlags...)
|
||||
|
|
Loading…
Reference in a new issue