Xcode4 dropped PPC support, so when I try building PIL, it throws hate:

Bens-MacBook-Air:Imaging-1.1.7 bkeating$ python setup.py build
running buildrunning build_pyrunning build_ext
--- using frameworks at /System/Library/Frameworks
building '_imaging' extension
/usr/bin/gcc-4.0 -fno-strict-aliasing -fno-common -dynamic -DNDEBUG -g -fwrapv -Os -Wall -Wstrict-prototypes -DENABLE_DTRACE -arch i386 -arch ppc -arch x86_64 -pipe -DHAVE_LIBJPEG -DHAVE_LIBZ -I/System/Library/Frameworks/Tcl.framework/Headers -I/System/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/System/Library/Frameworks/Python.framework/Versions/2.6/include -I/usr/local/include -I/usr/include -I/System/Library/Frameworks/Python.framework/Versions/2.6/include/python2.6 -c decode.c -o build/temp.macosx-10.6-universal-2.6/decode.o
/usr/libexec/gcc/powerpc-apple-darwin10/4.2.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
decode.c:688: fatal error: error writing to -: Broken pipe
compilation terminated.
lipo: can't open input file: /var/folders/jW/jW0VkC8uEb4lAjcJou+OaU+++TI/-Tmp-//ccEmCpUp.out (No such file or directory)
error: command '/usr/bin/gcc-4.0' failed with exit status 1

I ran that first line, manually, and removed the -arch ppc option and it didn't report back with any errors, but rerunning the build process ignores this manual attempt. `gcc-4.0 also does not exist, I symlinked it to gcc-4.2.

I could go ahead and install Xcode3 and then 4, but I want to muck up my fresh install.

Is there anyway to tell PIL to not compile for PPC? I did a grep across the distribution but i did not find a single mention of PPC. Any ideas?

link|improve this question

67% accept rate
5  
SOLVED: The solution has nothing to do with PIL but rather setting gcc's ARCHFLAGS. eg. ARCHFLAGS="-arch i386 -arch x86_64" sudo pip install PIL. – Flowpoke Mar 20 '11 at 6:23
5  
You should have stated that as an answer. You're allowed/encouraged to answer your own questions (provided you really are giving answers of course). – Donal Fellows Mar 20 '11 at 7:23
while i get no error using this command line and it says success I get "ImportError: No module named PIL" with all scripts – Bastian Mar 23 '11 at 23:23
feedback

5 Answers

The solution has nothing to do with PIL but rather setting gcc's ARCHFLAGS:

ARCHFLAGS="-arch i386 -arch x86_64" sudo pip install PIL
link|improve this answer
10  
Instead of writing "SOLVED", just click the checkmark next to the answer which solved the problem for you. – MatrixFrog Mar 20 '11 at 17:40
feedback

ARCHFLAGS doesn't seem to get passed into sudo. I had to do

sudo -s

then ARCHFLAGS="-arch i386 -arch x86_64" pip install PIL to make it work.

link|improve this answer
feedback

A better way to solve this issue, in my opinion, would be to edit your ~/.profile or /etc/bashrc and add the line:

export ARCHFLAGS="-arch i386 -arch x86_64"

Will save messing around with any future installations (I've just had to do this for installing lots of Perl modules in CPAN)!

link|improve this answer
Yep, this is now in my .bash_profile and works a treat. – stevejalim Jun 25 '11 at 15:29
1  
+1, worked for me. @Steve, I don't currently use Xcode, but is there a downside to setting this environment variable (and forgetting I did) and later using Xcode for, say, iOS development? Or does Xcode explicitly override this variable? – brainjam Jun 28 '11 at 16:21
Not as far as I am aware? I think this is an issue in upgrading from an older OS X release (that supports PPC) to a newer one (e.g. Snow Leopard or Lion) and perhaps with the new XCode too? I had a fresh install of Snow Leopard and have since upgraded to Lion and haven't had this issue! – Steve Moss Jul 7 '11 at 8:41
feedback

Just to help others... I had to use ARCHFLAGS="-arch x86_64" before building imaging with my Snow Leopard/XCode 4 system i.e. having "-arch i386" in their stopped it working for me.

link|improve this answer
feedback

After about 5 hours of trying to get past this issue I finally have the package installed. Yay! This is what did it for me:

ARCHFLAGS="-arch x86_64"

Strange that I'm still getting the error. But it's definitely installed... I think it is anyway. Here's the last output from Terminal. Maybe this will help someone else out.

MacBook:~ matt$ easy_install -U Scrapy
Searching for Scrapy
Reading http://pypi.python.org/simple/Scrapy/
Reading http://scrapy.org
Best match: Scrapy 0.14.1
Processing Scrapy-0.14.1-py2.6.egg
Scrapy 0.14.1 is already the active version in easy-install.pth
Installing scrapy script to /usr/local/bin

Using /Library/Python/2.6/site-packages/Scrapy-0.14.1-py2.6.egg
Processing dependencies for Scrapy
Searching for lxml
Reading http://pypi.python.org/simple/lxml/
Reading http://codespeak.net/lxml
Best match: lxml 2.3.3
Downloading http://lxml.de/files/lxml-2.3.3.tgz
Processing lxml-2.3.3.tgz
Running lxml-2.3.3/setup.py -q bdist_egg --dist-dir /var/folders/Ob/Ob-HWcSfEimOQyok6-    9xS++++TQ/-Tmp-/easy_install-rRW0PH/lxml-2.3.3/egg-dist-tmp-XiqUOa
Building lxml version 2.3.3.
Building without Cython.
Using build configuration of libxslt 1.1.24
**unable to execute gcc-4.2: No such file or directory
error: Setup script exited with error: command 'gcc-4.2' failed with exit status 1**    

Since I still got the error I tried to install using pip, so I ran this:

 MacBook:~ matt$ pip install Scrapy
 Requirement already satisfied (use --upgrade to upgrade): Scrapy in  /Library/Python/2.6/site-packages/Scrapy-0.14.1-py2.6.egg
Requirement already satisfied (use --upgrade to upgrade): Twisted>=2.5 in /System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python (from Scrapy)
Downloading/unpacking w3lib (from Scrapy)
Downloading w3lib-1.0.tar.gz
Exception:
Traceback (most recent call last):
    File "/Library/Python/2.6/site-packages/pip-1.0.2-py2.6.egg/pip/basecommand.py", line 126, in main
self.run(options, args)
    File "/Library/Python/2.6/site-packages/pip-1.0.2-py2.6.egg/pip/commands/install.py", line 223, in run
requirement_set.prepare_files(finder, force_root_egg_info=self.bundle, bundle=self.bundle)
 File "/Library/Python/2.6/site-packages/pip-1.0.2-py2.6.egg/pip/req.py", line 961, in prepare_files
self.unpack_url(url, location, self.is_download)
  File "/Library/Python/2.6/site-packages/pip-1.0.2-py2.6.egg/pip/req.py", line 1079, in unpack_url
return unpack_http_url(link, location, self.download_cache, only_download)
File "/Library/Python/2.6/site-packages/pip-1.0.2-py2.6.egg/pip/download.py", line 455, in unpack_http_url
unpack_file(temp_location, location, content_type, link)
File "/Library/Python/2.6/site-packages/pip-1.0.2-py2.6.egg/pip/util.py", line 475, in unpack_file
untar_file(filename, location)
File "/Library/Python/2.6/site-packages/pip-1.0.2-py2.6.egg/pip/util.py", line 400, in untar_file
os.makedirs(location)
File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/os.py", line 157, in makedirs
OSError: [Errno 13] Permission denied: '/Users/matt/build/w3lib'

Storing complete log in /Users/matt/.pip/pip.log
Traceback (most recent call last):
  File "/usr/local/bin/pip", line 8, in <module>
load_entry_point('pip==1.0.2', 'console_scripts', 'pip')()
File "/Library/Python/2.6/site-packages/pip-1.0.2-py2.6.egg/pip/__init__.py", line 116, in main
return command.main(initial_args, args[1:], options)
File "/Library/Python/2.6/site-packages/pip-1.0.2-py2.6.egg/pip/basecommand.py", line 151, in main
log_fp = open_logfile(log_fn, 'w')
File "/Library/Python/2.6/site-packages/pip-1.0.2-py2.6.egg/pip/basecommand.py", line 180, in open_logfile
log_fp = open(filename, mode)
IOError: [Errno 13] Permission denied: '/Users/matt/.pip/pip.log`

At this point I realized that it was installed, right? But the error is still there. Not sure if that how it's supposed to be, I'm still learning and very much a noob. What is the general consensus based on this info? Thanks in advance.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.