[K/N] add header_cache output type

^KT-65443
This commit is contained in:
Johan Bay
2023-11-16 12:24:41 +01:00
committed by Space Team
parent e1bf85f790
commit 48ce542e95
7 changed files with 31 additions and 12 deletions
@@ -38,8 +38,8 @@ enum class CompilerOutputKind {
override fun suffix(target: KonanTarget?) = ".${target!!.family.staticSuffix}"
override fun prefix(target: KonanTarget?) = target!!.family.staticPrefix
},
PRELIMINARY_CACHE {
override fun suffix(target: KonanTarget?) = ""
HEADER_CACHE {
override fun suffix(target: KonanTarget?) = ".header"
};
abstract fun suffix(target: KonanTarget? = null): String