svn commit: r493762 - head/devel/cpuflags

Tobias Kortkamp tobik at FreeBSD.org
Sun Feb 24 14:06:11 UTC 2019


Author: tobik
Date: Sun Feb 24 14:06:10 2019
New Revision: 493762
URL: https://svnweb.freebsd.org/changeset/ports/493762

Log:
  Deprecate devel/cpuflags
  
  It's supposed to "return appropriate gcc flags to optimise compilation
  for the current CPU", but it does not recognize modern CPUs.
  MASTER_SITES is dead, no upstream is given in pkg-descr.
  
  pkgsrc has a newer version 1.43 from 3 years ago, but for modern
  compilers just using -march=native is probably a better alternative.
  
  PR:		235993

Modified:
  head/devel/cpuflags/Makefile

Modified: head/devel/cpuflags/Makefile
==============================================================================
--- head/devel/cpuflags/Makefile	Sun Feb 24 13:56:44 2019	(r493761)
+++ head/devel/cpuflags/Makefile	Sun Feb 24 14:06:10 2019	(r493762)
@@ -9,6 +9,9 @@ MASTER_SITES=	http://awesom.eu/~acieroid/files/ports/$
 MAINTAINER=	ports at FreeBSD.org
 COMMENT=	Determine compiler flags to best target current cpu
 
+DEPRECATED=	does not recognize modern CPUs; use -march=native instead
+EXPIRATION_DATE=	2019-03-03
+
 post-install:
 	${REINPLACE_CMD} -i '' -e "s,@@SH@@,${SH:Q}," ${STAGEDIR}${PREFIX}/bin/cpuflags
 


More information about the svn-ports-head mailing list