Skip to content
This repository has been archived by the owner on Jan 26, 2025. It is now read-only.

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
toasterofbread committed May 1, 2024
1 parent 6268d7d commit 20c248a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -297,9 +297,9 @@ enum class CinteropLibraries {

return process.inputStream.bufferedReader().use { reader ->
reader.readText().split(" ").mapNotNull { it.trim().takeIf { it.isNotBlank() }?.let { line ->
if (platform == Platform.LINUX_X86) {
if (platform.is_linux) {
println("PKG $cflags ${package_names.toList()} $line")
if (line == "-I/usr/include/x86_64-linux-gnu") {
if (line == "-I/usr/include/x86_64-linux-gnu" || line == "-I/usr/include/aarch64-linux-gnu") {
println("SKIP")
null
}
Expand Down

0 comments on commit 20c248a

Please sign in to comment.