mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
Merged revisions 62145 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r62145 | thomas.heller | 2008-04-04 12:07:55 +0200 (Fri, 04 Apr 2008) | 3 lines Issue #2544: On HP-UX systems, use 'gcc -shared' for linking when gcc is used as compiler. ........
This commit is contained in:
parent
5314068a26
commit
f44b9a1ac2
3 changed files with 16 additions and 3 deletions
8
configure
vendored
8
configure
vendored
|
@ -1,5 +1,5 @@
|
|||
#! /bin/sh
|
||||
# From configure.in Revision: 61848 .
|
||||
# From configure.in Revision: 62003 .
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.61 for python 3.0.
|
||||
#
|
||||
|
@ -12846,7 +12846,11 @@ then
|
|||
then LDSHARED='$(CC) -shared'
|
||||
else LDSHARED='$(CC) -G';
|
||||
fi ;;
|
||||
hp*|HP*) LDSHARED="ld -b";;
|
||||
hp*|HP*)
|
||||
if test "$GCC" = "yes"
|
||||
then LDSHARED='$(CC) -shared'
|
||||
else LDSHARED='ld -b';
|
||||
fi ;;
|
||||
OSF*) LDSHARED="ld -shared -expect_unresolved \"*\"";;
|
||||
Darwin/1.3*)
|
||||
LDSHARED='$(CC) $(LDFLAGS) -bundle'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue