svn commit: r426901 - head/comms/uhd

Mark Linimon linimon at FreeBSD.org
Wed Nov 23 12:30:41 UTC 2016


Author: linimon
Date: Wed Nov 23 12:30:40 2016
New Revision: 426901
URL: https://svnweb.freebsd.org/changeset/ports/426901

Log:
  Conditionalize sse flags on amd64/i386.  They make no sense elsewhere
  and cause breakages.
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/comms/uhd/Makefile

Modified: head/comms/uhd/Makefile
==============================================================================
--- head/comms/uhd/Makefile	Wed Nov 23 12:25:21 2016	(r426900)
+++ head/comms/uhd/Makefile	Wed Nov 23 12:30:40 2016	(r426901)
@@ -29,7 +29,8 @@ USES=		compiler:c++0x cmake:outsource gm
 USE_LDCONFIG=		yes
 CMAKE_SOURCE_PATH=	${WRKSRC}/host
 #MAKE_JOBS_UNSAFE=	yes
-CXXFLAGS+=	-msse2
+CXXFLAGS_amd64=	-msse2
+CXXFLAGS_i386=	-msse2
 
 CMAKE_ARGS+=	-DPKG_LIB_DIR:STRING="share/uhd" -DUHD_TXRX_DEBUG_PRINTS="yes"
 # for excruciating debug use this -db


More information about the svn-ports-all mailing list