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
9922f178
Commit
9922f178
authored
Feb 11, 2010
by
Ronald Oussoren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix copy&paste error in the definition of ARCH_RUN_32BIT for a 3-way universal
build (all other definition where correct).
parent
333fca9b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
configure
configure
+2
-2
configure.in
configure.in
+1
-1
No files found.
configure
View file @
9922f178
#! /bin/sh
# From configure.in Revision: 7758
7
.
# From configure.in Revision: 7758
8
.
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.61 for python 2.7.
#
...
...
@@ -4824,7 +4824,7 @@ echo "${ECHO_T}\"'-extract ppc7400'\"" >&6; }
elif
test
"
$UNIVERSAL_ARCHS
"
=
"3-way"
;
then
UNIVERSAL_ARCH_FLAGS
=
"-arch i386 -arch ppc -arch x86_64"
LIPO_32BIT_FLAGS
=
"-extract ppc7400 -extract i386"
ARCH_RUN_32BIT
=
"/usr/bin/arch -i386 -ppc
7400
"
ARCH_RUN_32BIT
=
"/usr/bin/arch -i386 -ppc"
else
{
{
echo
"
$as_me
:
$LINENO
: error: proper usage is --with-universal-arch=32-bit|64-bit|all|intel|3-way"
>
&5
...
...
configure.in
View file @
9922f178
...
...
@@ -1063,7 +1063,7 @@ EOF
elif test "$UNIVERSAL_ARCHS" = "3-way" ; then
UNIVERSAL_ARCH_FLAGS="-arch i386 -arch ppc -arch x86_64"
LIPO_32BIT_FLAGS="-extract ppc7400 -extract i386"
ARCH_RUN_32BIT="/usr/bin/arch -i386 -ppc
7400
"
ARCH_RUN_32BIT="/usr/bin/arch -i386 -ppc"
else
AC_MSG_ERROR([proper usage is --with-universal-arch=32-bit|64-bit|all|intel|3-way])
...
...
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