svn commit: r416339 - head/lang/gcc5-aux/files

Gerald Pfeifer gerald at pfeifer.com
Sun Jun 19 12:07:00 UTC 2016


Hi John,

On Sat, 4 Jun 2016, John Marino wrote:
>> Author: andreast (src committer)
>> Date: Fri Jun  3 21:31:04 2016
>> New Revision: 416339
>> URL: https://svnweb.freebsd.org/changeset/ports/416339
>> 
>> Log:
>>   Skip armv6hf support and move it into armv6.
> These aren't going to work.
> I don't use regular patches, at all.  They can interfere with the generated
> diff-* aggregate patches.  Any new patch should be pulled into there.
> 
> But what are these patches really for?  Ada doesn't build on ARM due to the
> lack of a bootstrap compiler and interest.  Should we just set ONLY_FOR_ARCH
> because without Ada, people should probably use the stock lang/gcc* ports.

I believe what happened is that as Andreas and me discussed fixing 
armv6hf / armv6 support and I approved changes to "my" lang/gcc* 
ports, he (or some tab completion) unintentionally also hit this
lang/gcc5-aux ports.

And, I agree, unless someone is looking for Ada, using the stock
lang/gcc* ports probably makes most sense.

Gerald

PS: By the way, how about using the standard FORTRAN instead of
FORT in your ports, per the patch below?

Index: Makefile
===================================================================
--- Makefile	(revision 417113)
+++ Makefile	(working copy)
@@ -30,12 +30,11 @@
 LDFLAGS+=		-L${LOCALBASE}/lib
 
 OPTIONS_GROUP=		Standard Bootstrap
-OPTIONS_GROUP_Standard=	FORT OBJC NLS TESTSUITE ALLSTAGES STATIC
+OPTIONS_GROUP_Standard=	FORTRAN OBJC NLS TESTSUITE ALLSTAGES STATIC
 OPTIONS_GROUP_Bootstrap=BOOTSTRAP
-OPTIONS_DEFAULT=	FORT OBJC
+OPTIONS_DEFAULT=	FORTRAN OBJC
 NO_OPTIONS_SORT=	yes
 
-FORT_DESC=		Fortran language support
 OBJC_DESC=		Objective-C language support
 TESTSUITE_DESC=		Activate test support
 ALLSTAGES_DESC=		Build compiler with itself (twice, brings in libcc1)
@@ -113,7 +112,7 @@
    ada-bootstrap.x86_64.freebsd.100B.tar.bz2:boot
 .endif
 
-.if ${PORT_OPTIONS:MFORT} && !${PORT_OPTIONS:MBOOTSTRAP}
+.if ${PORT_OPTIONS:MFORTRAN} && !${PORT_OPTIONS:MBOOTSTRAP}
 LANGS+=		fortran
 EXTRA_CONFIG+=	--enable-libquadmath
 .else
@@ -238,7 +237,7 @@
 		${MAKE_CMD} -j${MAKE_JOBS_NUMBER} -sk check-c
 
 test-fortran:
-.  if ${PORT_OPTIONS:MFORT}
+.  if ${PORT_OPTIONS:MFORTRAN}
 	cd ${BUILDDIR} && ${SETENV} ${ADA_MAKE_ENV} \
 		${MAKE_CMD} -j${MAKE_JOBS_NUMBER} -sk check-fortran
 .  endif


More information about the svn-ports-head mailing list