The first line (Ld ….) is the xcodebuild linker script invocation.
The next line is the first line of the script (cd /Volumes/MessengerOfTruth/…)
The next line is a shell command setting your Deployment target environment 
variable.
The last line is the actual invocation of clang to perform the link.  Sorting 
through it, most of the complexity is because of the Xcode Derived Data 
directory specifications.  You have typical linker options (-arch, -isysroot 
<long path to SDK>, all sorts of other linker options>).  From the line with 
“clang” in it, to the end, is the linker command line invocation, wrapped 
around.

No error messages are apparent.  If this is the end of the output, it would 
appear that the BJTest1Tests linking occurred without error, and you have a 
unit test executable ready to rock and roll.

Jonathan

> On Feb 17, 2015, at 12:07 PM, Dave <[email protected]> wrote:
> 
> Hi,
> 
> Why is it that Link Error produce a gibberish error message? It’s been like 
> this in XCode since as long as I can remember and I’ve often wondered why 
> they just don’t produce a decent meaningful error message. How can I figure 
> what is wrong from this:
> 
> Ld 
> /Users/Burgun/Library/Developer/Xcode/DerivedData/BJTest1-hdnjeygckmytmfezpmdfvjohdncq/Build/Products/Debug/BJTest1Tests.xctest/Contents/MacOS/BJTest1Tests
>  normal x86_64
>     cd 
> /Volumes/MessengerOfTruth/Documents/Development/Projects/TestApps/BJTest1Project
>     export MACOSX_DEPLOYMENT_TARGET=10.10
>     
> /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
>  -arch x86_64 -bundle -isysroot 
> /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.10.sdk
>  
> -L/Users/Burgun/Library/Developer/Xcode/DerivedData/BJTest1-hdnjeygckmytmfezpmdfvjohdncq/Build/Products/Debug
>  
> -F/Users/Burgun/Library/Developer/Xcode/DerivedData/BJTest1-hdnjeygckmytmfezpmdfvjohdncq/Build/Products/Debug
>  -F/Applications/Xcode.app/Contents/Developer/Library/Frameworks 
> -F/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks
>  -filelist 
> /Users/Burgun/Library/Developer/Xcode/DerivedData/BJTest1-hdnjeygckmytmfezpmdfvjohdncq/Build/Intermediates/BJTest1.build/Debug/BJTest1Tests.build/Objects-normal/x86_64/BJTest1Tests.LinkFileList
>  -Xlinker -rpath -Xlinker @executable_path/../Frameworks -Xlinker -rpath 
> -Xlinker @loader_path/../Frameworks -mmacosx-version-min=10.10 -bundle_loader 
> /Users/Burgun/Library/Developer/Xcode/DerivedData/BJTest1-hdnjeygckmytmfezpmdfvjohdncq/Build/Products/Debug/BJTest1.app/Contents/MacOS/BJTest1
>  -framework XCTest -fobjc-arc -fobjc-link-runtime -Xlinker -dependency_info 
> -Xlinker 
> /Users/Burgun/Library/Developer/Xcode/DerivedData/BJTest1-hdnjeygckmytmfezpmdfvjohdncq/Build/Intermediates/BJTest1.build/Debug/BJTest1Tests.build/Objects-normal/x86_64/BJTest1Tests_dependency_info.dat
>  -o 
> /Users/Burgun/Library/Developer/Xcode/DerivedData/BJTest1-hdnjeygckmytmfezpmdfvjohdncq/Build/Products/Debug/BJTest1Tests.xctest/Contents/MacOS/BJTest1Tests
> 
> 
> Has anyone worked out how to figure out what is wrong from these kind of 
> messages?
> 
> Thanks a lot
> Dave
> 
> _______________________________________________
> Do not post admin requests to the list. They will be ignored.
> Xcode-users mailing list      ([email protected])
> Help/Unsubscribe/Update your Subscription:
> https://lists.apple.com/mailman/options/xcode-users/jprescott12%40icloud.com
> 
> This email sent to [email protected]

 _______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list      ([email protected])
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/xcode-users/archive%40mail-archive.com

This email sent to [email protected]

Reply via email to