Date: Wed, 28 Dec 2016 17:55:46 +0000 (UTC) From: Dmitry Marakasov <amdmi3@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r429807 - head/math/cgal Message-ID: <201612281755.uBSHtkex025326@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: amdmi3 Date: Wed Dec 28 17:55:46 2016 New Revision: 429807 URL: https://svnweb.freebsd.org/changeset/ports/429807 Log: - Require newer clang instead of gcc to circumvent clang 3.8 internal error; this fixes consumer ports (at least cad/openscad) which suffer from libc++/libstdc++ incompatibility Approved by: portmgr blanket Modified: head/math/cgal/Makefile Modified: head/math/cgal/Makefile ============================================================================== --- head/math/cgal/Makefile Wed Dec 28 17:53:45 2016 (r429806) +++ head/math/cgal/Makefile Wed Dec 28 17:55:46 2016 (r429807) @@ -3,7 +3,7 @@ PORTNAME= cgal PORTVERSION= 4.9 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= math MASTER_SITES= https://github.com/CGAL/cgal/releases/download/releases%2FCGAL-4.9/ DISTNAME= CGAL-${PORTVERSION} @@ -19,19 +19,21 @@ RUN_DEPENDS= ${LOCALBASE}/include/boost/ LIB_DEPENDS= libmpfr.so:math/mpfr \ libgmp.so:math/gmp -BROKEN_sparc64= Does not build: fails to compile all_files.cpp +BROKEN_sparc64= does not build: fails to compile all_files.cpp -USE_LDCONFIG= yes -USES= cmake shebangfix tar:xz -USE_QT5= buildtools_build core gui opengl qmake_build widgets -SHEBANG_FILES= scripts/cgal_create_CMakeLists \ - scripts/cgal_create_cmake_script +USE_LDCONFIG= yes +USES= cmake shebangfix tar:xz +USE_QT5= buildtools_build core gui opengl qmake_build widgets +SHEBANG_FILES= scripts/cgal_create_CMakeLists \ + scripts/cgal_create_cmake_script .include <bsd.port.options.mk> -.if ${ARCH} == i386 && ${OSVERSION} >= 1100000 -# clang internal error -USE_GCC= yes +.if ${ARCH} == i386 && ${OPSYS} == FreeBSD && ((${OSVERSION} >= 1100000 && ${OSVERSION} < 1100508) || (${OSVERSION} >= 1200000 && ${OSVERSION} < 1200017)) +# clang internal error in clang 3.8 +BUILD_DEPENDS+= clang39:devel/llvm39 +CC= clang39 +CXX= clang++39 .endif .include <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201612281755.uBSHtkex025326>