Merge branch 'darwin-flat_namespace' into 'develop'

configure: don't use -flat_namespace on Darwin

See merge request embeddable-common-lisp/ecl!268
This commit is contained in:
Daniel Kochmański 2022-03-29 09:51:50 +00:00
commit 8d90e31ecc

2
src/aclocal.m4 vendored
View file

@ -420,7 +420,7 @@ case "${host_os}" in
shared='yes'
SHAREDEXT='dylib'
PICFLAG='-fPIC -fno-common'
SHARED_LDFLAGS="-dynamiclib -flat_namespace -undefined suppress ${LDFLAGS}"
SHARED_LDFLAGS="-dynamiclib ${LDFLAGS}"
BUNDLE_LDFLAGS="-bundle ${LDFLAGS}"
ECL_LDRPATH='-Wl,-rpath,~A'
THREAD_CFLAGS='-D_THREAD_SAFE'