Merge branch 'sh-no-omit-frame-pointer' into 'master'

Enable frame pointer in Ruby compile options

See merge request gitlab-org/gitlab-build-images!401
This commit is contained in:
Stan Hu 2021-04-28 22:30:03 +00:00
commit 83c6bd9076

View file

@ -55,6 +55,7 @@ if [[ -d "/patches/ruby/$RUBY_VERSION" ]]; then
fi fi
# Compile # Compile
export optflags="-fno-omit-frame-pointer"
./configure --enable-shared --with-jemalloc --disable-install-doc --disable-install-rdoc --disable-install-capi ./configure --enable-shared --with-jemalloc --disable-install-doc --disable-install-rdoc --disable-install-capi
make install -j $(nproc) make install -j $(nproc)