0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-26 02:18:53 +02:00

tools: Disable JEMALLOC for RocksDB builds.

This commit is contained in:
Jason Volk 2018-11-29 12:58:26 -08:00
parent 7de495c1c7
commit 1ebb05af70

View file

@ -50,5 +50,7 @@ run cd deps/rocksdb
run git fetch --tags
run git checkout $BRANCH
NJOBS=`nproc`
CFLAGS="-fPIC -frtti -DROCKSDB_USE_RTTI" run make -j$NJOBS $LINKAGE
export CFLAGS="-fPIC -frtti -DROCKSDB_USE_RTTI"
export DISABLE_JEMALLOC=1
run make -j$NJOBS $LINKAGE
run cd $USERDIR # Return to user's original directory