[Bug 223119] libc++experimental was disabled for arm but now builds fine.

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Thu Oct 19 21:25:55 UTC 2017


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 at FreeBSD.org
          Reporter: gabdelmalik at 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.


More information about the freebsd-arm mailing list