mirror of
https://github.com/facebook/rocksdb.git
synced 2024-11-27 02:44:18 +00:00
983028f097
Summary: This enables us to crossbuild pcc64le RocksJava binaries with a suitably old version of glibc (2.17) on CentOS 7. Closes https://github.com/facebook/rocksdb/pull/2491 Differential Revision: D5955301 Pulled By: sagar0 fbshipit-source-id: 69ef9746f1dc30ffde4063dc764583d8c7ae937e
20 lines
464 B
Bash
Executable file
20 lines
464 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
rm -rf /rocksdb-local
|
|
cp -r /rocksdb-host /rocksdb-local
|
|
cd /rocksdb-local
|
|
|
|
# Use scl devtoolset if available (i.e. CentOS <7)
|
|
if hash scl 2>/dev/null; then
|
|
scl enable devtoolset-2 'make jclean clean'
|
|
scl enable devtoolset-2 'PORTABLE=1 make rocksdbjavastatic'
|
|
else
|
|
make jclean clean
|
|
PORTABLE=1 make rocksdbjavastatic
|
|
fi
|
|
|
|
cp java/target/librocksdbjni-linux*.so java/target/rocksdbjni-*-linux*.jar /rocksdb-host/java/target
|
|
|