-
Notifications
You must be signed in to change notification settings - Fork 172
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* due to different glibc versions, it is not possible to use the existing (prebuilt) libsignal_jni.so that get's shipped with the signal-cli binary distribution for the signal-cli native image build. So in order to make that work (again), we need to use our own libsignal_jni.so for the x86_64 build. see #412
- Loading branch information
Bernhard B
committed
Oct 2, 2023
1 parent
db005cd
commit f18ebde
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
diff --git a/build.gradle.kts b/build.gradle.kts | ||
index 0d89c075..fda49332 100644 | ||
--- a/build.gradle.kts | ||
+++ b/build.gradle.kts | ||
@@ -43,6 +43,7 @@ dependencies { | ||
implementation(libs.slf4j.jul) | ||
implementation(libs.logback) | ||
implementation(project(":lib")) | ||
+ implementation(files("/tmp/libsignal-client.jar")) | ||
} | ||
|
||
configurations { | ||
@@ -51,6 +52,10 @@ configurations { | ||
} | ||
} | ||
|
||
+configurations.all { | ||
+ exclude(group = "org.signal", module = "libsignal-client") | ||
+} | ||
+ | ||
|
||
tasks.withType<AbstractArchiveTask>().configureEach { | ||
isPreserveFileTimestamps = false |