(Since there's no specific forum for the beta of Xcode 7, I'm posting this here...)
After letting Xcode convert a simple Swift project to Xcode 7, and fixing the various Swift "inspired" build errors, I'm still seeing a link warning:
ld: warning: directory not found for option '-F/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator9.0.sdk/Developer/Library/Frameworks'
This looks like it's coming while Xcode is linking the test target:
Ld /Users/John/Library/Developer/Xcode/DerivedData/Test-aertfqgditidcgdgjozgjseufxmx/Build/Products/Debug-iphonesimulator/TestTests.xctest/TestTests normal x86_64
cd /Users/John/Dev/Test
export IPHONEOS_DEPLOYMENT_TARGET=8.2
export PATH="/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode-beta.app/Contents/Developer/usr/bin:/Applications/Xcode-beta.app/Contents/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin"
/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -bundle -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator9.0.sdk -L/Users/John/Library/Developer/Xcode/DerivedData/Test-aertfqgditidcgdgjozgjseufxmx/Build/Products/Debug-iphonesimulator -F/Users/John/Library/Developer/Xcode/DerivedData/Test-aertfqgditidcgdgjozgjseufxmx/Build/Products/Debug-iphonesimulator -F/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator9.0.sdk/Developer/Library/Frameworks -F/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks -filelist /Users/John/Library/Developer/Xcode/DerivedData/Test-aertfqgditidcgdgjozgjseufxmx/Build/Intermediates/Test.build/Debug-iphonesimulator/TestTests.build/Objects-normal/x86_64/TestTests.LinkFileList -Xlinker -rpath -Xlinker @executable_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -mios-simulator-version-min=8.2 -bundle_loader /Users/John/Library/Developer/Xcode/DerivedData/Test-aertfqgditidcgdgjozgjseufxmx/Build/Products/Debug-iphonesimulator/Test.app/Test -Xlinker -objc_abi_version -Xlinker 2 -framework XCTest -L/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator -Xlinker -add_ast_path -Xlinker /Users/John/Library/Developer/Xcode/DerivedData/Test-aertfqgditidcgdgjozgjseufxmx/Build/Intermediates/Test.build/Debug-iphonesimulator/TestTests.build/Objects-normal/x86_64/TestTests.swiftmodule -Xlinker -dependency_info -Xlinker /Users/John/Library/Developer/Xcode/DerivedData/Test-aertfqgditidcgdgjozgjseufxmx/Build/Intermediates/Test.build/Debug-iphonesimulator/TestTests.build/Objects-normal/x86_64/TestTests_dependency_info.dat -o /Users/John/Library/Developer/Xcode/DerivedData/Test-aertfqgditidcgdgjozgjseufxmx/Build/Products/Debug-iphonesimulator/TestTests.xctest/TestTests
I looked in the directory given in the warning, and there is not a "Frameworks" directory, under the ../iPhoneSimulator9.0.sdk/Developer/Library/ directory.
Not sure where to go to fix this. (A new Swift project builds just fine.
Anyone?
Thanks.