Skip to content

Commit

Permalink
do_cmake.sh: remove -DCMAKE_BUILD_TYPE=Debug from cmake options
Browse files Browse the repository at this point in the history
so we can use do_cmake.sh for building release builds, which are
required for performance tests.

Signed-off-by: Kefu Chai <[email protected]>
  • Loading branch information
tchaikov committed Oct 9, 2019
1 parent 37e2e76 commit 4ea4ddc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion do_cmake.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ if type cmake3 > /dev/null 2>&1 ; then
else
CMAKE=cmake
fi
${CMAKE} -DCMAKE_BUILD_TYPE=Debug $ARGS "$@" .. || exit 1
${CMAKE} $ARGS "$@" .. || exit 1

# minimal config to find plugins
cat <<EOF > ceph.conf
Expand Down

0 comments on commit 4ea4ddc

Please sign in to comment.