Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm having real trouble trying to install rdiff-backup but as well would like to know of how to go about solving this kind of problem on my own, as this isn't the first time I've had problems compiling C

This is the error I'm seeing

testadmin@pauls-mac-pro:rdiff-backup$ python setup.py install 
running install
running build
running build_py
running build_ext
building 'rdiff_backup.C' extension
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.7/include/python2.7 -c cmodule.c -o build/temp.macosx-10.3-fat-2.7/cmodule.o
dyld: Library not loaded: @executable_path/libllvmgcc.dylib
  Referenced from: /Developer/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin10/4.2.1/cc1
  Reason: image not found
gcc-4.0: Internal error: Trace/BPT trap: 5 (program cc1)
Please submit a full bug report.
See <URL:http://developer.apple.com/bugreporter> for instructions.
error: command 'gcc-4.0' failed with exit status 1

Which doesn't mean a whole lot to me.

I noticed that it's using gcc-4.0 and the referenced path is gcc-4.2. I only have gcc and gcc-4.0 in /usr/bin but I noticed in /Developer/usr/bin I have gcc-4.2, I moved gcc-4.0 and symlinked the dev gcc-4.2 to gcc-4.0 (ln -s /Developer/usr/bin/gcc-4.2 /usr/bin/gcc-4.0) with pretty disastrous effects, the setup install above spewed out a ton of syntax type errors so I expect that was a stupid thing to do, and i moved gcc-4.0 back.

Other than guessing at solutions, and with not much luck on google, I'm not really sure how to proceed

My python prefixes are:

Python 2.7.3 (v2.7.3:70274d53c1dd, Apr  9 2012, 20:32:06) 
[GCC 4.0.1 (Apple Inc. build 5493)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> sys.prefix
'/Library/Frameworks/Python.framework/Versions/2.7'
>>> sys.exec_prefix
'/Library/Frameworks/Python.framework/Versions/2.7'
>>> 

and I thought this may possibly be useful as well;

testadmin@pauls-mac-pro:rdiff-backup$ sudo find / -name libllvmgcc.dylib
Password:
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/llvm-gcc-4.2/libexec/gcc/arm-apple-darwin10/4.2.1/libllvmgcc.dylib
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin10/4.2.1/libllvmgcc.dylib
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/llvm-gcc-4.2/libexec/gcc/libllvmgcc.dylib
/Applications/Xcode.app/Contents/Developer/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/libllvmgcc.dylib
/Applications/Xcode.app/Contents/Developer/usr/llvm-gcc-4.2/libexec/gcc/libllvmgcc.dylib
find: /dev/fd/3: Not a directory
find: /dev/fd/4: Not a directory
/Developer/Platforms/iPhoneOS.platform/Developer/usr/llvm-gcc-4.2/libexec/gcc/arm-apple-darwin10/4.2.1/libllvmgcc.dylib
/Developer/Platforms/iPhoneOS.platform/Developer/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin10/4.2.1/libllvmgcc.dylib
/Developer/Platforms/iPhoneOS.platform/Developer/usr/llvm-gcc-4.2/libexec/gcc/libllvmgcc.dylib
/Developer/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin10/4.2.1/libllvmgcc.dylib
/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/libllvmgcc.dylib
/usr/llvm-gcc-4.2/libexec/gcc/libllvmgcc.dylib
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.