Date: Mon, 30 Jan 2017 22:29:46 +0000 From: bugzilla-noreply@freebsd.org To: freebsd-ports-bugs@FreeBSD.org Subject: [Bug 216609] devel/py-ice: fails to build with libc++ 4.0 Message-ID: <bug-216609-13-gJR3rTXSd3@https.bugs.freebsd.org/bugzilla/> In-Reply-To: <bug-216609-13@https.bugs.freebsd.org/bugzilla/> References: <bug-216609-13@https.bugs.freebsd.org/bugzilla/>
next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D216609 --- Comment #19 from commit-hook@freebsd.org --- A commit references this bug: Author: grembo Date: Mon Jan 30 22:29:24 UTC 2017 New revision: 432888 URL: https://svnweb.freebsd.org/changeset/ports/432888 Log: Fix 64-bit platform detection for pre C++11 compilers. In version 3.6.3, Ice started detecting 64 bit platforms by checking __WORDSIZE. When using C++98/03, __STDC_LIMIT_MACROS isn't set by default and __WORDSIZE is always set to 32, even if the required headers weren't included beforehand. Until a proper fix is available in base (e.g. not setting __WORDSIZE at all if __STDC_LIMIT_MACROS isn't defined), we detect if C++11 or newer is used and only rely on __WORDSIZE in this case, otherwise we fall back to detecting the platform using other macros. PR: 216609 Reported by: jbeich Changes: head/UPDATING head/devel/ice/Makefile head/devel/ice/files/patch-cpp-include-IceUtil-Config.h --=20 You are receiving this mail because: You are the assignee for the bug.=
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-216609-13-gJR3rTXSd3>