summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorArne Juul <arnej@yahooinc.com>2022-11-30 12:19:02 +0000
committerArne Juul <arnej@yahooinc.com>2022-11-30 12:19:02 +0000
commit7f716fc6dc1e08ec524cd0714a4cb0c80aa35f32 (patch)
tree9f7e34372a3922c5c450f72f00f83ce02a93ef19 /client
parentf611155a289870ad02b79e0cb9068a9fa1d55f67 (diff)
add /opt/vespa-deps/lib64 as a location for native libraries
Diffstat (limited to 'client')
-rw-r--r--client/go/jvm/jdk_properties.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/go/jvm/jdk_properties.go b/client/go/jvm/jdk_properties.go
index 90b243e8a85..7656d87db3d 100644
--- a/client/go/jvm/jdk_properties.go
+++ b/client/go/jvm/jdk_properties.go
@@ -13,7 +13,7 @@ func (opts *Options) AddCommonJdkProperties() {
secOvr := defaults.UnderVespaHome("conf/vespa/java.security.override")
opts.fixSpec.FixDir(tmpDir)
opts.AddOption("-Djava.io.tmpdir=" + tmpDir)
- opts.AddOption("-Djava.library.path=" + libDir)
+ opts.AddOption("-Djava.library.path=" + libDir + ":/opt/vespa-deps/lib64")
opts.AddOption("-Djava.security.properties=" + secOvr)
opts.AddOption("-Djava.awt.headless=true")
opts.AddOption("-Dsun.rmi.dgc.client.gcInterval=3600000")