rocksdb: stop passing $DPDK_DIR to db_bench build

The RocksDB SPDK environment no longer depends directly on DPDK.

Change-Id: Ifcabcd137292f86724a1e3fed93abb94fa5a2344
Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com>
This commit is contained in:
Daniel Verkamp 2017-04-28 14:40:52 -07:00
parent 8375124f24
commit f50ea14403
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@
3. Build RocksDB. Note that currently only the db_bench benchmarking tool is integrated with BlobFS.
(Note: add "DEBUG_LEVEL=0" for a release build.)
make db_bench DPDK_DIR=path/to/dpdk/x86_64-native-linuxapp-gcc SPDK_DIR=path/to/spdk
make db_bench SPDK_DIR=path/to/spdk
4. Copy etc/spdk/rocksdb.conf.in to /usr/local/etc/spdk/rocksdb.conf.

View File

@ -20,7 +20,7 @@ timing_enter rocksdb
timing_enter db_bench_build
pushd $DB_BENCH_DIR
$MAKE db_bench $MAKEFLAGS $MAKECONFIG DEBUG_LEVEL=0 SPDK_DIR=$rootdir DPDK_DIR=$DPDK_DIR
$MAKE db_bench $MAKEFLAGS $MAKECONFIG DEBUG_LEVEL=0 SPDK_DIR=$rootdir
popd
timing_exit db_bench_build