summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>2015-08-27 15:30:10 +0100
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>2015-09-07 11:21:11 +0100
commitf8fbb01c4686d7e4393ba90b2e1326e9536d9107 (patch)
tree561b8a0d35cf3d6ecae9406bd912038c3b873b89 /Configure
parent049e0eb31f8abf40e06ee60ffc0b14ffd0991771 (diff)
downloadperl-f8fbb01c4686d7e4393ba90b2e1326e9536d9107.tar.gz
Don't add -shared when the compiler is clang++
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure1
1 files changed, 1 insertions, 0 deletions
diff --git a/Configure b/Configure
index 5177c33279..839f5b2cbe 100755
--- a/Configure
+++ b/Configure
@@ -8279,6 +8279,7 @@ runnm=false
: with g++ one needs -shared to get is-in-libc to work for dlopen
case "$gccversion" in
'') ;;
+*Clang*) ;;
*) case "$d_cplusplus" in
"$define") ccflags="$ccflags -shared" ;;
esac