mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
Revert "Drop useless bitness property from Architecture"
As it turn outs, `Architecture.bitness` leaks to public Gradle API and
we need to deprecate it gracefully.
This reverts commit 79bf2a1f.
This commit is contained in:
committed by
teamcityserver
parent
14eca72913
commit
bed42e9ab2
@@ -5,12 +5,12 @@
|
||||
|
||||
package org.jetbrains.kotlin.konan.target
|
||||
|
||||
enum class Architecture {
|
||||
X64,
|
||||
X86,
|
||||
ARM64,
|
||||
ARM32,
|
||||
MIPS32,
|
||||
MIPSEL32,
|
||||
WASM32;
|
||||
enum class Architecture(val bitness: Int) {
|
||||
X64(64),
|
||||
X86(32),
|
||||
ARM64(64),
|
||||
ARM32(32),
|
||||
MIPS32(32),
|
||||
MIPSEL32(32),
|
||||
WASM32(32);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user