Date: Mon, 30 Jan 2017 18:40:34 +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-PqIgoNthLX@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 #11 from Michael Gmelin <grembo@FreeBSD.org> --- Before Ice 3.6.3, Ice always assumed ICE_32 on amd64. This has been fixed s= ince then, but only if built with --std=3Dc++11 (which is would we do in product= ion, this is why I didn't notice). Using your example: e.g. $ c++ --version FreeBSD clang version 3.4.1 (tags/RELEASE_34/dot1-final 208032) 20140512 Target: x86_64-unknown-freebsd10.2 Thread model: posix $ c++ a.cc $ ./a.out=20 32 $ c++ -std=3Dc++98 a.cc # same as before $ ./a.out=20 32 $ c++ -std=3Dc++11 a.cc $ ./a.out=20 64 --=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-PqIgoNthLX>