[lib] disable libc++experimental on mips platforms for now.

This breaks at least mips32 platform builds.

Reviewed by:	dim
This commit is contained in:
adrian 2017-05-25 05:02:43 +00:00
parent 97b2d74f06
commit 11a1b76952

View File

@ -157,7 +157,7 @@ _libclang_rt= libclang_rt
.if ${MK_LIBCPLUSPLUS} != "no"
_libcxxrt= libcxxrt
_libcplusplus= libc++
.if ${MACHINE_CPUARCH} != "arm"
.if ${MACHINE_CPUARCH} != "arm" && ${MACHINE_CPUARCH} != "mips"
_libcplusplus+= libc++experimental
.endif
.endif