[Bug 216609] devel/py-ice: fails to build with libc++ 4.0
bugzilla-noreply at freebsd.org
bugzilla-noreply at freebsd.org
Mon Jan 30 18:40:34 UTC 2017
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=216609
--- Comment #11 from Michael Gmelin <grembo at FreeBSD.org> ---
Before Ice 3.6.3, Ice always assumed ICE_32 on amd64. This has been fixed since
then, but only if built with --std=c++11 (which is would we do in production,
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
32
$ c++ -std=c++98 a.cc # same as before
$ ./a.out
32
$ c++ -std=c++11 a.cc
$ ./a.out
64
--
You are receiving this mail because:
You are the assignee for the bug.
More information about the freebsd-ports-bugs
mailing list