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
870b5e4b
Commit
870b5e4b
authored
Mar 12, 2007
by
Martin v. Löwis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug #1675511: Use -Kpic instead of -xcode=pic32 on Solaris/x86.
parent
6221ad91
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
7 deletions
+13
-7
Misc/NEWS
Misc/NEWS
+2
-0
configure
configure
+6
-4
configure.in
configure.in
+5
-3
No files found.
Misc/NEWS
View file @
870b5e4b
...
...
@@ -378,6 +378,8 @@ Tests
Build
-----
-
Bug
#
1675511
:
Use
-
Kpic
instead
of
-
xcode
=
pic32
on
Solaris
/
x86
.
-
Disable
_XOPEN_SOURCE
on
NetBSD
1.
x
.
-
Bug
#
1578513
:
Cross
compilation
was
broken
by
a
change
to
configure
.
...
...
configure
View file @
870b5e4b
#! /bin/sh
# From configure.in Revision: 52
457
.
# From configure.in Revision: 52
844
.
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.59 for python 2.5.
#
...
...
@@ -11085,9 +11085,11 @@ if test -z "$CCSHARED"
then
case
$ac_sys_system
/
$ac_sys_release
in
SunOS
*
)
if
test
"
$GCC
"
=
yes
;
then
CCSHARED
=
"-fPIC"
;
else
CCSHARED
=
"-xcode=pic32"
;
fi
;;
then
CCSHARED
=
"-fPIC"
;
elif
test
`
uname
-p
`
=
sparc
;
then
CCSHARED
=
"-xcode=pic32"
;
else
CCSHARED
=
"-Kpic"
;
fi
;;
hp
*
|
HP
*
)
if
test
"
$GCC
"
=
yes
;
then
CCSHARED
=
"-fPIC"
;
else
CCSHARED
=
"+z"
;
...
...
configure.in
View file @
870b5e4b
...
...
@@ -1544,9 +1544,11 @@ if test -z "$CCSHARED"
then
case $ac_sys_system/$ac_sys_release in
SunOS*) if test "$GCC" = yes;
then CCSHARED="-fPIC";
else CCSHARED="-xcode=pic32";
fi;;
then CCSHARED="-fPIC";
elif test `uname -p` = sparc;
then CCSHARED="-xcode=pic32";
else CCSHARED="-Kpic";
fi;;
hp*|HP*) if test "$GCC" = yes;
then CCSHARED="-fPIC";
else CCSHARED="+z";
...
...
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