diff options
author | Rob Boehne <datalogics-robb@users.noreply.github.com> | 2017-12-06 17:58:17 (GMT) |
---|---|---|
committer | Ćukasz Langa <lukasz@langa.pl> | 2017-12-06 17:58:17 (GMT) |
commit | 9d25bd11ca121cfc76e5bf31c265e72956208598 (patch) | |
tree | 4267e2b76c14df22e0c8a666925b7158994c13c2 /configure | |
parent | bd4ed77f73d37df325fc8f1e193b3ce6bc08094d (diff) | |
download | cpython-9d25bd11ca121cfc76e5bf31c265e72956208598.zip cpython-9d25bd11ca121cfc76e5bf31c265e72956208598.tar.gz cpython-9d25bd11ca121cfc76e5bf31c265e72956208598.tar.bz2 |
Modify configure to link with the compiler driver under HP-UX when not using gcc. (#2519)
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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' |