Build rocksdb as portable (#2288)

This commit is contained in:
Guilherme Lawless 2019-09-05 20:29:05 +01:00 committed by GitHub
commit 9fd4f0ee42
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@ RUN apt-get update -qq && apt-get install -yqq \
ENV USE_RTTI=1
RUN git clone https://github.com/facebook/rocksdb.git && \
cd rocksdb && \
make static_lib && \
PORTABLE=1 make static_lib && \
make install
ENV CXX=/usr/bin/clang++

View file

@ -5,7 +5,7 @@ RUN apt-get install -yqq git
ENV USE_RTTI=1
RUN git clone https://github.com/facebook/rocksdb.git && \
cd rocksdb && \
make static_lib && \
PORTABLE=1 make static_lib && \
make install
ENV BOOST_ROOT=/usr/local