Apple LLVM compiler 3.0 error when using sharekit in ios5 - objective-c

I added Sharekit in ios sdk 5.0. I even turned down the automatic reference counting for every single file present using "fno-objc-arc" I'm getting "LLVM compiler error". I have no idea what exactly the problem is. Could you guys help me out? Below is the source code link
http://www.skytel.mobi/stepheniphone/iphone/newlywed.zip
ERRORS:
1)Apple LLVM compiler 3.0 Error
Command /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/clang failed with exit code 1
2)UNCategorized
Build task failed without generating error messages.

Did you try setting the debugger to GDB (in Product/Edit Scheme). There seems to be some issues with LLDB and breakpoints, especially if you are breaking on all exceptions.

Related

Facing issue while running test cases in xcode10

I am facing xctest encountered error while executing test cases in xcode 10.
The error says
Showing All Messages
xctest (5571) encountered an error (Early unexpected exit, the operation never finished bootstrapping - no restart will be attempted. Underlying error: Test session exited(82) without checking in. The executable cannot be loaded for some other reason, such as a problem with a library it depends on or a code signature/entitlements mismatch. Retry after a Clean build.)
The same code works fine in Xcode 9.4.1 or below.
Tried all possible solutions over the internet but the issue still exists. The project is in objective C and its a framework project.
Please help me to fix the issue.
Attached the screenshot of the error

Error: "Verify final result code for completed build operation" -- compiles in Xcode 4, not in Xcode 5

I have some code that builds in Xcode 4.6, but does not in Xcode 5. I need to update an app that's in the App Store, but as you all know, we can only use Xcode 5 with iOS 7 SDK now.
I have a workspace with 5 projects in it, each of which successfully builds individually as I change the schemes -- all except the main workspace. So, my assumption is that it's in settings and compiler flags rather than code. I now get an error that says:
"Verify final result code for completed build operation" followed by
"Build operation failed without specifying any errors. Individual build tasks may have failed for unknown reasons. Some of these (up to 12) may be listed below."
None of the "up to 12" reasons, however, are listed below. That's it. That's the error.
I've tried things that others have mentioned around the 'net (checking/unchecking pre-compiled headers PCH, removing DerivedData, rebooting), but have not yet been successful at building. I am using the iOS 7 SDK and targeting either iOS 4.3 or 5.1 (I've tried both) due to wanting to keep code compatibility. This error provides no direction for focus, nor explains why it builds in Xcode 4.6 (which we can no longer use to submit app updates) but not on Xcode 5. Please HELP!
I was faced with this problem, and solved it by moving the project file to a much shorter path. https://forums.developer.apple.com/thread/71124

xCode 4.6: 'PFEventTaps/PFEventTap.h' file not found

I am using xCode 4.6 to compile and run Event Taps TestBench from Pfiddlesoft. I downloaded the project and opened it in xCode. When I try to run, I get the error:
Lexical or Preprocessor issue: 'PFEventTaps/PFEventTap.h' file not found.
I spoke with the developer of the test bench and he had me make sure that PFEventTaps was in the Framework. It is. Is there anything else that I might try?

"there is no dwarfdump executable defined" Error message

I'm attempting to validate an Archive in Xcode 4.4 and am receiving the following error:
"there is no dwarfdump executable defined"
Using Xcode 4.2 the same build passed validation. Anybody any ideas?
It turns out that this error is common when using Beta/Preview versions of Xcode and thus Preview/Beta versions of Xcode should not be used for releasing code.

How can I use Farseer with a MonoTouch/ExEn application?

I'm trying to build a game for iOS with XNA and Farseer Physics 3.3, using ExEn and MonoTouch. In theory this should work fine, but I'm having trouble getting Farseer to work on the iPhone.
I compiled Farseer for MonoTouch/ExEn, and it works great in the iPhone Simulator. But as soon as I switch to the actual iPhone, my project no longer compiles. The problem appears to be happening with the MonoDevelop linker. The compiler bombs out with the message "mtouch exited with code 1", and I get the following linker error output: http://pastebin.com/y62ykJP2. If I disable linking in the project options, the application compiles and deploys to the iPhone, but then crashes.
If I comment out all of the code that instantiates objects defined by Farseer, I don't get any linker errors, and the program deploys and runs just fine. So the problem is clearly with my build of Farseer for MonoTouch.
Unfortunately, I have no idea where to go from here. Where should I start looking with a linker error like this? Or, even better: Has anyone successfully compiled Farseer 3.3 and used it with MonoTouch and ExEn?
You're trying to use an assembly compiled for .NET 4.0 in MonoTouch. This will not work (the linker exception you get is because the assembly references a method that does not exist in MonoTouch).
The solution is to compile all assemblies you reference using MonoTouch. Look around to see if anybody already has created a MonoTouch project for Farseer, otherwise you'll have to create one yourself.