1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-25 09:34:11 +00:00

lang/ruby26: fix build on powerpc

powerpc requires GCC after all to build this port:
building .ext/include/powerpc-freebsd13/rb_mjit_min_header-2.6.5.h
./miniruby -I./lib -I. -I.ext/common  ./tool/transform_mjit_header.rb "cc " rb_mjit_header.h .ext/include/powerpc-freebsd13/rb_mjit_min_header-2.6.5.h
*** Signal 6
This commit is contained in:
Piotr Kubaj 2020-01-09 18:05:12 +00:00
parent b46f528c1d
commit 2fbd51f43e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=522532

View File

@ -98,7 +98,7 @@ CONFIGURE_ARGS+=--disable-dtrace
LIB_DEPENDS+= libunwind.so:devel/libunwind
.endif
.if defined(PPC_ABI) && ${PPC_ABI} == ELFv1
.if (defined(PPC_ABI) && ${PPC_ABI} == ELFv1) || ${ARCH} == powerpc
USE_GCC= yes
.endif