Commit e3481839 authored by Nikolay Igotti's avatar Nikolay Igotti

Try to fix macOS CI.

parent ffc75889
...@@ -161,7 +161,7 @@ kotlin { ...@@ -161,7 +161,7 @@ kotlin {
if (supportNative) { if (supportNative) {
val nativeTarget = when (target) { val nativeTarget = when (target) {
"macos-x64" -> macosX64() "macos-x64", "macos-arm64" -> macosX64()
// "linux-x64" -> linuxX64() // "linux-x64" -> linuxX64()
// "windows-x64" -> mingwX64() // "windows-x64" -> mingwX64()
else -> null else -> null
...@@ -176,7 +176,8 @@ kotlin { ...@@ -176,7 +176,8 @@ kotlin {
?: File(System.getProperty("user.home")).resolve(".konan") ?: File(System.getProperty("user.home")).resolve(".konan")
compilerOpts( compilerOpts(
"-I$skiaDir" "-I$skiaDir",
"--include-with-prefix-after=$kotlinNativeDataPath/dependencies/clang-llvm-apple-8.0.0-darwin-macos/include/c++/v1"
) )
extraOpts("-staticLibrary", "libskia.a") extraOpts("-staticLibrary", "libskia.a")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment