Skip to content

Commit 7f7944e

Browse files
authored
Merge pull request #1302 from stephan57160/master
Problem: Compilation fails on CentOS, due to duplicate lib entry.
2 parents 4d393c8 + 807dd84 commit 7f7944e

File tree

1 file changed

+14
-7
lines changed

1 file changed

+14
-7
lines changed

zproject_java.gsl

+14-7
Original file line numberDiff line numberDiff line change
@@ -432,13 +432,7 @@ dependencies {
432432
// Build section
433433

434434
task copyLibs(type: Copy) {
435-
def libraryPaths = System.getProperty('java.library.path').split(File.pathSeparator).toList()
436-
libraryPaths.add('/usr/local/lib')
437-
if (osdetector.os == 'windows') {
438-
libraryPaths.add("${rootDir}/$(project.prefix:c)-jni/build/Release")
439-
} else {
440-
libraryPaths.add("${rootDir}/$(project.prefix:c)-jni/build")
441-
}
435+
def libraryPaths = []
442436
if (project.hasProperty('buildPrefix')) {
443437
if (osdetector.os == 'windows') {
444438
// DLLs are installed to the bin directory by cmake
@@ -447,6 +441,18 @@ task copyLibs(type: Copy) {
447441
libraryPaths.add("${project.buildPrefix}/lib")
448442
}
449443

444+
def javaLibraryPaths = System.getProperty('java.library.path').split(File.pathSeparator).toList()
445+
libraryPaths.addAll (javaLibraryPaths)
446+
447+
libraryPaths.add('/usr/local/lib')
448+
if (osdetector.os == 'windows') {
449+
libraryPaths.add("${rootDir}/$(project.prefix:c)-jni/build/Release")
450+
} else {
451+
libraryPaths.add("${rootDir}/$(project.prefix:c)-jni/build")
452+
}
453+
454+
def oldStrategy = duplicatesStrategy
455+
duplicatesStrategy = DuplicatesStrategy.WARN
450456
libraryPaths.each { path ->
451457
from path
452458
include '$(project.libname)jni.so'
@@ -462,6 +468,7 @@ task copyLibs(type: Copy) {
462468
. endfor
463469
into 'build/natives'
464470
}
471+
duplicatesStrategy = oldStrategy
465472
}
466473

467474
jar.baseName = "$(project.prefix:c)-jni-${osdetector.classifier}"

0 commit comments

Comments
 (0)