Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
9d25bd11
Commit
9d25bd11
authored
Dec 06, 2017
by
Rob Boehne
Committed by
Łukasz Langa
Dec 06, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Modify configure to link with the compiler driver under HP-UX when not using gcc. (#2519)
parent
bd4ed77f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
configure
configure
+2
-1
configure.ac
configure.ac
+2
-1
No files found.
configure
View file @
9d25bd11
...
...
@@ -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'
...
...
configure.ac
View file @
9d25bd11
...
...
@@ -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'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment