summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAvery Pennarun <apenwarr@gmail.com>2011-04-24 22:51:27 -0400
committerAvery Pennarun <apenwarr@gmail.com>2011-04-24 22:51:27 -0400
commite2474543fce7eeed4c2b76499f2be3f279c09a22 (patch)
tree653cda7f1cdcca590cacecdcb0b89fb44ee7f8b2
parent86363788707260e3d310bcec2ce941e797db9426 (diff)
runpython.do: also compile for ppc architecture.
-rw-r--r--ui-macos/bits/runpython.do3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui-macos/bits/runpython.do b/ui-macos/bits/runpython.do
index 1e3b88a..3db6bee 100644
--- a/ui-macos/bits/runpython.do
+++ b/ui-macos/bits/runpython.do
@@ -1,5 +1,6 @@
exec >&2
redo-ifchange runpython.c
-gcc -Wall -o $3 runpython.c \
+gcc -arch ppc -arch i386 -arch x86_64 \
+ -Wall -o $3 runpython.c \
-I/usr/include/python2.5 \
-lpython2.5