Skip to content
This repository has been archived by the owner on Aug 10, 2021. It is now read-only.

Commit

Permalink
[REVERTME][compiler] {STATIC,DYNAMIC}_CACHE holder
Browse files Browse the repository at this point in the history
  • Loading branch information
vvlevchenko committed Sep 23, 2019
1 parent cfe3cb6 commit a98e5c7
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ val CompilerOutputKind.isFinalBinary: Boolean get() = when (this) {
CompilerOutputKind.PROGRAM, CompilerOutputKind.DYNAMIC,
CompilerOutputKind.STATIC, CompilerOutputKind.FRAMEWORK -> true
CompilerOutputKind.LIBRARY, CompilerOutputKind.BITCODE -> false
CompilerOutputKind.DYNAMIC_CACHE, CompilerOutputKind.STATIC_CACHE -> TODO("$this unsupported")
}

val CompilerOutputKind.involvesBitcodeGeneration: Boolean
Expand All @@ -36,6 +37,7 @@ val CompilerOutputKind.involvesLinkStage: Boolean
CompilerOutputKind.PROGRAM, CompilerOutputKind.DYNAMIC,
CompilerOutputKind.STATIC, CompilerOutputKind.FRAMEWORK -> true
CompilerOutputKind.LIBRARY, CompilerOutputKind.BITCODE -> false
CompilerOutputKind.DYNAMIC_CACHE, CompilerOutputKind.STATIC_CACHE -> TODO("$this unsupported")
}

internal fun produceCStubs(context: Context) {
Expand Down

0 comments on commit a98e5c7

Please sign in to comment.