fork of https://github.com/oxigraph/rocksdb and https://github.com/facebook/rocksdb for nextgraph and oxigraph
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
438 B
19 lines
438 B
5 years ago
|
#!/usr/bin/env bash
|
||
|
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
|
||
|
|
||
|
set -e
|
||
|
#set -x
|
||
|
|
||
|
# just in-case this is run outside Docker
|
||
|
mkdir -p /rocksdb-local-build
|
||
|
|
||
|
rm -rf /rocksdb-local-build/*
|
||
|
cp -r /rocksdb-host/* /rocksdb-local-build
|
||
|
cd /rocksdb-local-build
|
||
|
|
||
|
make clean-not-downloaded
|
||
|
PORTABLE=1 make rocksdbjavastatic
|
||
|
|
||
|
cp java/target/librocksdbjni-linux*.so java/target/rocksdbjni-*-linux*.jar /rocksdb-java-target
|
||
|
|