Commit 9d25bd11 authored by Rob Boehne's avatar Rob Boehne Committed by Łukasz Langa

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

parent bd4ed77f
......@@ -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'
......
......@@ -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'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment