FS-5819: configure fix for new clang detection and adjust cflags for building with newest clang
This commit is contained in:
parent
44d5d43b3b
commit
f236ca113d
|
@ -80,6 +80,15 @@ esac
|
||||||
#set SOLINK variable based on compiler and host
|
#set SOLINK variable based on compiler and host
|
||||||
if test "x${ax_cv_c_compiler_vendor}" = "xsun" ; then
|
if test "x${ax_cv_c_compiler_vendor}" = "xsun" ; then
|
||||||
SOLINK="-Bdynamic -dy -G"
|
SOLINK="-Bdynamic -dy -G"
|
||||||
|
elif test "x${ax_cv_c_compiler_vendor}" = "xclang" ; then
|
||||||
|
case "$host" in
|
||||||
|
*darwin*)
|
||||||
|
SOLINK="-dynamic -bundle -force-flat-namespace"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
AC_ERROR([Please update configure.in with SOLINK values for your compiler])
|
||||||
|
;;
|
||||||
|
esac
|
||||||
elif test "x${ax_cv_c_compiler_vendor}" = "xgnu" ; then
|
elif test "x${ax_cv_c_compiler_vendor}" = "xgnu" ; then
|
||||||
case "$host" in
|
case "$host" in
|
||||||
*darwin*)
|
*darwin*)
|
||||||
|
|
Loading…
Reference in New Issue