I've found 101 threads on this but no solutions for my actual problem.
Here's the situation. virtualenv, installed yolk, checked out my code into that env, the code includes django so don't have to install it into the env.
I've added the project location into the activate script.
The next step is to install mysql-python but that will fail. However the source is downloaded so I can edit setup_posix.py put the mysql_config location in and then retry.
So the command is
pip install mysql-python -E focus02
with focus02 being the env name.
The error message is this
lipo: can't open input file: /var/folders/38/bjgqwdxn37lb1ytw3qtmrwxc0000gp/T//ccTgPn2I.out (No such file or directory)
error: command 'llvm-gcc-4.2' failed with exit status 1
most of the stuff I've found online focuses on the last line of that, stating the compiler doesn't exist. I can prove this isn't the case by running llvm-gcc-4.2 in terminal. I get a response of
i686-apple-darwin11-llvm-gcc-4.2: no input files
I think the error is in the line above. Note the double slash before the file name. I can't find an article on google that shows that someone has found a fix. Anyone know where that line is drawing its input from, as I'm not sure where the issue is coming from. I'm assuming I've edited a file and left a trailing slash that I didn't need, though there's a few instances of this error that leads me to believe maybe not.
I've found this article and it's not fixed the problem.