Skip to content

Commit b0cab40

Browse files
committed
remove debug stripping from binary in build script
1 parent a1d4278 commit b0cab40

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

chdb/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -315,8 +315,8 @@ if [ ${build_type} == "Debug" ]; then
315315
echo -e "\nDebug build, skip strip"
316316
else
317317
echo -e "\nStrip the binary:"
318-
${STRIP} --strip-debug --remove-section=.comment --remove-section=.note ${PYCHDB}
319-
${STRIP} --strip-debug --remove-section=.comment --remove-section=.note ${LIBCHDB}
318+
${STRIP} --remove-section=.comment --remove-section=.note ${PYCHDB}
319+
${STRIP} --remove-section=.comment --remove-section=.note ${LIBCHDB}
320320
fi
321321
echo -e "\nStripe the binary:"
322322

0 commit comments

Comments
 (0)