Skip to content

Commit

Permalink
xtrabackup: Use "RelWithDebInfo" cmake build type, not "Release".
Browse files Browse the repository at this point in the history
Summary:
Rather than force symbols onto the "Release" build,
use the build designed to actually do that.

Test Plan: Jenkins

Reviewers: nizamordulu

Reviewed By: nizamordulu
  • Loading branch information
steaphangreene committed Aug 30, 2013
1 parent de016ec commit bf01618
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xtrabackup/utils/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ if [ -r ../CMakeCache.txt ]; then
echo CXXFLAGS= ${CXXFLAGS:="$(grep CMAKE_CXX_FLAGS:STRING= ../CMakeCache.txt | cut -f2 -d=) $(grep CMAKE_C_COMPILER_ARG1:STRING= ../CMakeCache.txt | cut -f2 -d=)"}
echo CFLAGS= ${CFLAGS:="$(grep CMAKE_C_FLAGS:STRING= ../CMakeCache.txt | cut -f2 -d=) $(grep CMAKE_C_COMPILER_ARG1:STRING= ../CMakeCache.txt | cut -f2 -d=)"}
else
echo BUILD_TYPE= ${BUILD_TYPE:=Release}
echo BUILD_TYPE= ${BUILD_TYPE:=RelWithDebInfo}
echo SRC_DIR= ${SRC_DIR:=$(readlink -f ..)}
echo CMAKE= ${CMAKE:=cmake}
echo CXX= ${CXX:=g++}
Expand Down

0 comments on commit bf01618

Please sign in to comment.