Added tune mixin.

This commit is contained in:
Sleepy Monax 2023-04-18 08:22:25 +02:00 committed by Sleepy Monax
parent bcf15b82d8
commit 0e60b34ac5

View file

@ -49,6 +49,16 @@ def mixinDebug(target: TargetManifest, tools: Tools) -> Tools:
return tools
def makeMixinTune(tune: str) -> Mixin:
def mixinTune(target: TargetManifest, tools: Tools) -> Tools:
patchToolArgs(tools, "cc", [f"-mtune={tune}"])
patchToolArgs(tools, "cxx", [f"-mtune={tune}"])
return tools
return mixinTune
mixins: dict[str, Mixin] = {
"cache": mixinCache,
"debug": mixinDebug,
@ -56,6 +66,7 @@ mixins: dict[str, Mixin] = {
"msan": makeMixinSan("memory"),
"tsan": makeMixinSan("thread"),
"ubsan": makeMixinSan("undefined"),
"tune": makeMixinTune("native"),
"o3": makeMixinOptimize("3"),
"o2": makeMixinOptimize("2"),
"o1": makeMixinOptimize("1"),