[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 Chadd 2017-05-25 05:02:43 +00:00
parent 9949595ef9
commit 7e0699952a

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