svn commit: r568049 - head/math/flexfloat

Piotr Kubaj pkubaj at FreeBSD.org
Wed Mar 10 22:04:47 UTC 2021


Author: pkubaj
Date: Wed Mar 10 22:04:46 2021
New Revision: 568049
URL: https://svnweb.freebsd.org/changeset/ports/568049

Log:
  math/flexfloat: fix build on powerpc64le
  
  powerpc64le needs -mfloat128, like powerpc64.

Modified:
  head/math/flexfloat/Makefile

Modified: head/math/flexfloat/Makefile
==============================================================================
--- head/math/flexfloat/Makefile	Wed Mar 10 21:54:36 2021	(r568048)
+++ head/math/flexfloat/Makefile	Wed Mar 10 22:04:46 2021	(r568049)
@@ -17,6 +17,7 @@ GH_TAGNAME=	6db869087a12d763a94d53e9b0a9d52def270865
 USE_LDCONFIG=	yes
 USE_GCC=	yes # clang doesn't support __float128
 
+CFLAGS_powerpc64le=	-mfloat128
 CFLAGS_powerpc64=	-mfloat128 -mvsx
 CFLAGS_powerpc=	-mfloat128 -mvsx
 CMAKE_OFF=	BUILD_TESTS BUILD_EXAMPLES


More information about the svn-ports-all mailing list