Modify configure to link with the compiler driver under HP-UX when not using gcc. (#2519)

This commit is contained in:
Rob Boehne 2017-12-06 11:58:17 -06:00 committed by Łukasz Langa
parent bd4ed77f73
commit 9d25bd11ca
2 changed files with 4 additions and 2 deletions

3
configure vendored
View file

@ -9124,7 +9124,8 @@ then
LDSHARED='$(CC) -shared'
LDCXXSHARED='$(CXX) -shared'
else
LDSHARED='ld -b'
LDSHARED='$(CC) -b'
LDCXXSHARED='$(CXX) -shared'
fi ;;
Darwin/1.3*)
LDSHARED='$(CC) -bundle'

View file

@ -2442,7 +2442,8 @@ then
LDSHARED='$(CC) -shared'
LDCXXSHARED='$(CXX) -shared'
else
LDSHARED='ld -b'
LDSHARED='$(CC) -b'
LDCXXSHARED='$(CXX) -b'
fi ;;
Darwin/1.3*)
LDSHARED='$(CC) -bundle'