mirror of
https://github.com/python/cpython.git
synced 2025-10-10 00:43:41 +00:00
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
2 changed files with 4 additions and 2 deletions
3
configure
vendored
3
configure
vendored
|
@ -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…
Add table
Add a link
Reference in a new issue