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
92397ce9
Commit
92397ce9
authored
Jan 17, 2010
by
Ronald Oussoren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Explicitly use /usr/bin/arch on OSX, fixes issue 7715
parent
3c0a1265
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
configure
configure
+4
-4
configure.in
configure.in
+3
-3
No files found.
configure
View file @
92397ce9
#! /bin/sh
#! /bin/sh
# From configure.in Revision: 7758
5
.
# From configure.in Revision: 7758
7
.
# Guess values for system-dependent variables and create Makefiles.
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.61 for python 2.7.
# Generated by GNU Autoconf 2.61 for python 2.7.
#
#
...
@@ -4814,17 +4814,17 @@ echo "${ECHO_T}\"'-extract ppc7400'\"" >&6; }
...
@@ -4814,17 +4814,17 @@ echo "${ECHO_T}\"'-extract ppc7400'\"" >&6; }
elif
test
"
$UNIVERSAL_ARCHS
"
=
"all"
;
then
elif
test
"
$UNIVERSAL_ARCHS
"
=
"all"
;
then
UNIVERSAL_ARCH_FLAGS
=
"-arch i386 -arch ppc -arch ppc64 -arch x86_64"
UNIVERSAL_ARCH_FLAGS
=
"-arch i386 -arch ppc -arch ppc64 -arch x86_64"
LIPO_32BIT_FLAGS
=
"-extract ppc7400 -extract i386"
LIPO_32BIT_FLAGS
=
"-extract ppc7400 -extract i386"
ARCH_RUN_32BIT
=
"arch -i386 -ppc"
ARCH_RUN_32BIT
=
"
/usr/bin/
arch -i386 -ppc"
elif
test
"
$UNIVERSAL_ARCHS
"
=
"intel"
;
then
elif
test
"
$UNIVERSAL_ARCHS
"
=
"intel"
;
then
UNIVERSAL_ARCH_FLAGS
=
"-arch i386 -arch x86_64"
UNIVERSAL_ARCH_FLAGS
=
"-arch i386 -arch x86_64"
LIPO_32BIT_FLAGS
=
"-extract i386"
LIPO_32BIT_FLAGS
=
"-extract i386"
ARCH_RUN_32BIT
=
"arch -i386"
ARCH_RUN_32BIT
=
"
/usr/bin/
arch -i386"
elif
test
"
$UNIVERSAL_ARCHS
"
=
"3-way"
;
then
elif
test
"
$UNIVERSAL_ARCHS
"
=
"3-way"
;
then
UNIVERSAL_ARCH_FLAGS
=
"-arch i386 -arch ppc -arch x86_64"
UNIVERSAL_ARCH_FLAGS
=
"-arch i386 -arch ppc -arch x86_64"
LIPO_32BIT_FLAGS
=
"-extract ppc7400 -extract i386"
LIPO_32BIT_FLAGS
=
"-extract ppc7400 -extract i386"
ARCH_RUN_32BIT
=
"arch -i386 -ppc7400"
ARCH_RUN_32BIT
=
"
/usr/bin/
arch -i386 -ppc7400"
else
else
{
{
echo
"
$as_me
:
$LINENO
: error: proper usage is --with-universal-arch=32-bit|64-bit|all|intel|3-way"
>
&5
{
{
echo
"
$as_me
:
$LINENO
: error: proper usage is --with-universal-arch=32-bit|64-bit|all|intel|3-way"
>
&5
...
...
configure.in
View file @
92397ce9
...
@@ -1053,17 +1053,17 @@ EOF
...
@@ -1053,17 +1053,17 @@ EOF
elif test "$UNIVERSAL_ARCHS" = "all" ; then
elif test "$UNIVERSAL_ARCHS" = "all" ; then
UNIVERSAL_ARCH_FLAGS="-arch i386 -arch ppc -arch ppc64 -arch x86_64"
UNIVERSAL_ARCH_FLAGS="-arch i386 -arch ppc -arch ppc64 -arch x86_64"
LIPO_32BIT_FLAGS="-extract ppc7400 -extract i386"
LIPO_32BIT_FLAGS="-extract ppc7400 -extract i386"
ARCH_RUN_32BIT="arch -i386 -ppc"
ARCH_RUN_32BIT="
/usr/bin/
arch -i386 -ppc"
elif test "$UNIVERSAL_ARCHS" = "intel" ; then
elif test "$UNIVERSAL_ARCHS" = "intel" ; then
UNIVERSAL_ARCH_FLAGS="-arch i386 -arch x86_64"
UNIVERSAL_ARCH_FLAGS="-arch i386 -arch x86_64"
LIPO_32BIT_FLAGS="-extract i386"
LIPO_32BIT_FLAGS="-extract i386"
ARCH_RUN_32BIT="arch -i386"
ARCH_RUN_32BIT="
/usr/bin/
arch -i386"
elif test "$UNIVERSAL_ARCHS" = "3-way" ; then
elif test "$UNIVERSAL_ARCHS" = "3-way" ; then
UNIVERSAL_ARCH_FLAGS="-arch i386 -arch ppc -arch x86_64"
UNIVERSAL_ARCH_FLAGS="-arch i386 -arch ppc -arch x86_64"
LIPO_32BIT_FLAGS="-extract ppc7400 -extract i386"
LIPO_32BIT_FLAGS="-extract ppc7400 -extract i386"
ARCH_RUN_32BIT="arch -i386 -ppc7400"
ARCH_RUN_32BIT="
/usr/bin/
arch -i386 -ppc7400"
else
else
AC_MSG_ERROR([proper usage is --with-universal-arch=32-bit|64-bit|all|intel|3-way])
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