ruby: disable stack protector
This commit is contained in:
parent
c47730d14c
commit
dce880b425
1 changed files with 3 additions and 4 deletions
|
@ -3,7 +3,7 @@ _ruby_abiver=2.5.0
|
||||||
|
|
||||||
pkgname=ruby
|
pkgname=ruby
|
||||||
version=2.5.0
|
version=2.5.0
|
||||||
revision=1
|
revision=2
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
configure_args="--enable-shared --disable-rpath
|
configure_args="--enable-shared --disable-rpath
|
||||||
DOXYGEN=/usr/bin/doxygen DOT=/usr/bin/dot PKG_CONFIG=/usr/bin/pkg-config"
|
DOXYGEN=/usr/bin/doxygen DOT=/usr/bin/dot PKG_CONFIG=/usr/bin/pkg-config"
|
||||||
|
@ -41,10 +41,9 @@ pre_build() {
|
||||||
# Hack for cross-builds.
|
# Hack for cross-builds.
|
||||||
touch ext/ripper/check
|
touch ext/ripper/check
|
||||||
if [ "$XBPS_GCC_VERSION_MAJOR" -ge 7 ]; then
|
if [ "$XBPS_GCC_VERSION_MAJOR" -ge 7 ]; then
|
||||||
# Set -fno-stack-protector for i686* or otherwise linking fails with
|
# Disable stack protector: it causes unexpected behaviours with native libraries (subtle, vagrant)
|
||||||
# ...: undefined reference to '__stack_chk_fail_local'
|
|
||||||
case "$XBPS_TARGET_MACHINE" in
|
case "$XBPS_TARGET_MACHINE" in
|
||||||
i686*) sed -i Makefile \
|
*) sed -i Makefile \
|
||||||
-e "s;-fstack-protector-strong;;" \
|
-e "s;-fstack-protector-strong;;" \
|
||||||
-e "s;-fstack-protector;-fno-stack-protector;"
|
-e "s;-fstack-protector;-fno-stack-protector;"
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Reference in a new issue