Browse Source

lpac-jni: Try to disable build-ids for NDK libraries

Peter Cai 2 years ago
parent
commit
58227b0b79
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libs/lpac-jni/build.gradle.kts

+ 1 - 1
libs/lpac-jni/build.gradle.kts

@@ -19,7 +19,7 @@ android {
                     arguments("-j4")
                     arguments("-j4")
                 } else {
                 } else {
                     arguments("-j1")
                     arguments("-j1")
-                    cFlags("-fmacro-prefix-map=${project.projectDir.toString()}=/fake/path/")
+                    cFlags("-fmacro-prefix-map=${project.projectDir.toString()}=/fake/path/ -Wl,--build-id=none")
                 }
                 }
             }
             }
         }
         }