Date: Thu, 19 Oct 2017 21:25:55 +0000 From: bugzilla-noreply@freebsd.org To: freebsd-arm@FreeBSD.org Subject: [Bug 223119] libc++experimental was disabled for arm but now builds fine. Message-ID: <bug-223119-7@https.bugs.freebsd.org/bugzilla/>
index | next in thread | raw e-mail
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=223119 Bug ID: 223119 Summary: libc++experimental was disabled for arm but now builds fine. Product: Base System Version: CURRENT Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: arm Assignee: freebsd-arm@FreeBSD.org Reporter: gabdelmalik@uniridge.com.au Back in May libc++experimental was hooked into the build however disabled for arm and mips due to compilation failure. I've just successfully built the library for svn revision 323729. This is post the import of Clang 5.0 which occurred in late July. The only conclusion I can make from this is that the original issue has been fixed by that subsequent release. It would be great to have it hooked up again for arm, I can't say anything for mips as I don't run that platform. My local patch is below. Thanks for your attention. Regards, George. Index: lib/Makefile =================================================================== --- lib/Makefile (revision 323729) +++ lib/Makefile (working copy) @@ -158,7 +158,7 @@ .if ${MK_LIBCPLUSPLUS} != "no" _libcxxrt= libcxxrt _libcplusplus= libc++ -.if ${MACHINE_CPUARCH} != "arm" && ${MACHINE_CPUARCH} != "mips" +.if ${MACHINE_CPUARCH} != "mips" _libcplusplus+= libc++experimental .endif .endif -- You are receiving this mail because: You are the assignee for the bug.home | help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-223119-7>
