mirror of https://github.com/python/cpython
Modify configure to link with the compiler driver under HP-UX when not using gcc. (#2519)
This commit is contained in:
parent
bd4ed77f73
commit
9d25bd11ca
|
@ -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'
|
||||
|
|
Loading…
Reference in New Issue