On Dec 4, 2011, at 9:57 AM, Wade Williams wrote: Trying to build some code and getting the dreaded error code 1 message.All disclosure triangles are expanded. There are no additional error messages that I can see.Anyone have any ideas? Where can I find what the error is?
I found a workaround. It’s not the compiler’s fault: it’s emitting error messages, just for some reason Xcode isn’t picking them up. So re-run the build step in a shell where you can see all of its output:
1: Expand the Xcode error so you can see the commands it ran 2: Select and copy all of the commands in that step 3: Open a new window in Terminal 4: Paste 5: If necessary [if you didn’t copy the newline at the end] hit Return.
This should re-run the build step and show you all of the output including errors.
6: Close the shell window, because all kinds of internal Xcode environment variables may now have been set (depending on what type of build step you ran.)
—Jens |