Skip to content

Commit

Permalink
Disable x86 builds
Browse files Browse the repository at this point in the history
Workaround for compilation error on x86 builds. This is due to an issue (wwylele/teakra#34) on the teakra library, which is used by melonDS. Since the list of x86 devices is so limited, this should have no real impact.
  • Loading branch information
rafaelvcaetano committed Oct 18, 2021
1 parent f2ec3f7 commit 18852ab
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ android {
versionCode = AppConfig.versionCode
versionName = AppConfig.versionName
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
ndk {
abiFilters.addAll(listOf("armeabi-v7a", "arm64-v8a", "x86_64"))
}
externalNativeBuild {
cmake {
cppFlags("-std=c++17 -Wno-write-strings")
Expand Down

0 comments on commit 18852ab

Please sign in to comment.