I am trying to install Growl bindings for Python, but I'm not having
any luck. When I run the 'sudo python setup.py install' command, this
is what I get back:
running install
running build
running build_py
creating build
creating build/lib.macosx-10.3-fat-2.6
copying Growl.py -> build/lib.macosx-10.3-fat-2.6
running build_ext
building '_growl' extension
creating build/temp.macosx-10.3-fat-2.6
gcc-4.0 -fno-strict-aliasing -fno-common -dynamic -arch ppc -arch i386
-g -O2 -DNDEBUG -g -O3 -I/Library/Frameworks/Python.framework/Versions/
2.6/include/python2.6 -c libgrowl.c -o build/temp.macosx-10.3-fat-2.6/
libgrowl.o
In file included from /usr/include/architecture/i386/math.h:626,
from /usr/include/math.h:28,
from /Library/Frameworks/Python.framework/Versions/
2.6/include/python2.6/pyport.h:235,
from /Library/Frameworks/Python.framework/Versions/
2.6/include/python2.6/Python.h:58,
from libgrowl.c:7:
/usr/include/AvailabilityMacros.h:108:14: warning: #warning Building
for Intel with Mac OS X Deployment Target < 10.4 is invalid.
/usr/libexec/gcc/powerpc-apple-darwin10/4.0.1/as: assembler (/usr/
bin/../libexec/gcc/darwin/ppc/as or /usr/bin/../local/libexec/gcc/
darwin/ppc/as) for architecture ppc not installed
Installed assemblers are:
/usr/bin/../libexec/gcc/darwin/x86_64/as for architecture x86_64
/usr/bin/../libexec/gcc/darwin/i386/as for architecture i386
lipo: can't open input file: /var/tmp//ccWPR6mE.out (No such file or
directory)
error: command 'gcc-4.0' failed with exit status 1
Obviously gcc doesn't like the -arch ppc option. I can remove that and
run just the command:
sudo gcc-4.0 -fno-strict-aliasing -fno-common -dynamic -arch i386 -g -
O2 -DNDEBUG -g -O3 -I/Library/Frameworks/Python.framework/Versions/2.6/
include/python2.6 -c libgrowl.c -o build/temp.macosx-10.3-fat-2.6/
libgrowl.o
and it appears to compile libgrowl.o fine, but then what? What do I
need to do differently?
Thanks for any help,
Matt
--
You received this message because you are subscribed to the Google Groups
"Growl Discuss" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/growldiscuss?hl=en.