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
9f792f13
Commit
9f792f13
authored
Dec 30, 2005
by
Martin v. Löwis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use -xcode=pic32 for SunPro. Will backport to 2.4.
parent
9a40c68b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
1 deletion
+5
-1
Misc/NEWS
Misc/NEWS
+2
-0
configure
configure
+2
-1
configure.in
configure.in
+1
-0
No files found.
Misc/NEWS
View file @
9f792f13
...
...
@@ -630,6 +630,8 @@ Library
Build
-----
-
Use
-
xcode
=
pic32
for
CCSHARED
on
Solaris
with
SunPro
.
-
Bug
#
1189330
:
configure
did
not
correctly
determine
the
necessary
value
of
LINKCC
if
python
was
built
with
GCC
4.0
.
...
...
configure
View file @
9f792f13
#! /bin/sh
# From configure.in Revision:
39267
.
# From configure.in Revision:
41764
.
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.59 for python 2.5.
#
...
...
@@ -10413,6 +10413,7 @@ then
case
$ac_sys_system
/
$ac_sys_release
in
SunOS
*
)
if
test
"
$GCC
"
=
yes
;
then
CCSHARED
=
"-fPIC"
;
else
CCSHARED
=
"-xcode=pic32"
;
fi
;;
hp
*
|
HP
*
)
if
test
"
$GCC
"
=
yes
;
then
CCSHARED
=
"-fPIC"
;
...
...
configure.in
View file @
9f792f13
...
...
@@ -1410,6 +1410,7 @@ then
case $ac_sys_system/$ac_sys_release in
SunOS*) if test "$GCC" = yes;
then CCSHARED="-fPIC";
else CCSHARED="-xcode=pic32";
fi;;
hp*|HP*) if test "$GCC" = yes;
then CCSHARED="-fPIC";
...
...
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