2

我在 CLion IDE 中创建了一个新的 Hello World Kotlin Native 项目,但我得到了。kotlin native unknown host target 错误。

 if (NOT KONANC_TARGET)
    if (APPLE)
        set(KONANC_TARGET macbook)
    elseif (UNIX)
        set(KONANC_TARGET linux)
    else ()
        **message(FATAL_ERROR "Unsupported host target")**

因为我使用的是 Windows,而 KONANC 仅在 macOS 和 Linux 上受支持。如何修复此错误并在 windows 上运行 Kotlin Native 项目?

我遵循了这个Kotlin Native Tutorial

4

1 回答 1

0

这个问题是已知的,但仅限于 CMake 文件。您仍然可以在 Windows 上使用 Gradle 或命令行工具。

于 2018-02-21T08:22:06.743 回答