svn commit: r522532 - head/lang/ruby26
Piotr Kubaj
pkubaj at FreeBSD.org
Thu Jan 9 18:05:13 UTC 2020
Author: pkubaj
Date: Thu Jan 9 18:05:12 2020
New Revision: 522532
URL: https://svnweb.freebsd.org/changeset/ports/522532
Log:
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
Modified:
head/lang/ruby26/Makefile
Modified: head/lang/ruby26/Makefile
==============================================================================
--- head/lang/ruby26/Makefile Thu Jan 9 17:54:33 2020 (r522531)
+++ head/lang/ruby26/Makefile Thu Jan 9 18:05:12 2020 (r522532)
@@ -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
More information about the svn-ports-all
mailing list