fix mex build system for macOS

time-shift
Houtan Bastani 2018-06-27 15:04:24 +02:00
parent 93bb326cc2
commit f5bf76deb5
1 changed files with 3 additions and 3 deletions

View File

@ -48,9 +48,6 @@ case ${host_os} in
AC_MSG_WARN([not run from MATLAB, because it cannot load the Cygwin DLL.])
AC_MSG_WARN([This is probably not what you want. Consider using a MinGW cross-compiler.])
;;
*darwin13*)
CXXFLAGS="$CXXFLAGS -std=c++11"
;;
esac
CFLAGS="$CFLAGS -Wall -Wno-parentheses"
@ -76,6 +73,9 @@ case ${host_os} in
# Also see <uchar.h>
CFLAGS="$CFLAGS -include stdint.h -Dchar16_t=uint_least16_t"
;;
*darwin*)
CXXFLAGS="$CXXFLAGS -stdlib=libc++"
;;
esac
AX_PTHREAD