#!/usr/bin/env bash set -x git submodule update --init --recursive if test -e build; then echo 'build dir already exists; rm -rf build and re-run' exit 1 fi PYBUILD="2" if [ -r /etc/os-release ]; then source /etc/os-release case "$ID" in fedora) if [ "$VERSION_ID" -ge "29" ] ; then PYBUILD="3.7" fi ;; rhel|centos) MAJOR_VER=$(echo "$VERSION_ID" | sed -e 's/\..*$//') if [ "$MAJOR_VER" -ge "8" ] ; then PYBUILD="3.6" fi ;; opensuse*|suse|sles) PYBUILD="3" WITH_RADOSGW_AMQP_ENDPOINT="OFF" ;; esac elif [ "$(uname)" == FreeBSD ] ; then PYBUILD="3" WITH_RADOSGW_AMQP_ENDPOINT="OFF" else echo Unknown release exit 1 fi if [[ "$PYBUILD" =~ ^3(\..*)?$ ]] ; then ARGS="$ARGS -DWITH_PYTHON2=OFF -DWITH_PYTHON3=${PYBUILD} -DMGR_PYTHON_VERSION=${PYBUILD}" fi if type ccache > /dev/null 2>&1 ; then echo "enabling ccache" ARGS="$ARGS -DWITH_CCACHE=ON" fi if [ -n "$WITH_RADOSGW_AMQP_ENDPOINT" ] ; then ARGS="$ARGS -DWITH_RADOSGW_AMQP_ENDPOINT=$WITH_RADOSGW_AMQP_ENDPOINT" fi mkdir build cd build if type cmake3 > /dev/null 2>&1 ; then CMAKE=cmake3 else CMAKE=cmake fi ${CMAKE} -DCMAKE_BUILD_TYPE=Debug $ARGS "$@" .. || exit 1 # minimal config to find plugins cat < ceph.conf [global] plugin dir = lib erasure code dir = lib EOF echo done. cat <