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 (closed)

Edited by Alberto Miranda

Merge request reports

Loading
+1 −1
Changes for scripts/profiles/0.8.0/install/rocksdb.install: 1 added line, 1 removed line.
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
}

Loading