Commit 9c74279c authored by Alberto Miranda's avatar Alberto Miranda ♨️
Browse files

Merge branch 'amiranda/171-rocksdb-crashes-with-sigill-in-ci' into 'master'

Resolve "RocksDB crashes with SIGILL in CI"

This MR ensures that RocksDB is compiled with the `PORTABLE` and `USE_SSE` flags when building the Docker images used in the CI.

Closes #171

See merge request !107
parents c3397925 1a742c96
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -44,7 +44,7 @@ pkg_install() {
    CURR=${SOURCE_DIR}/rocksdb
    cd "${CURR}"
    make clean
    USE_RTTI=1 make -j"${CORES}" static_lib
    PORTABLE=1 USE_SSE=1 USE_RTTI=1 make -j"${CORES}" static_lib
    INSTALL_PATH="${INSTALL_DIR}" make install
}