Hello,
Upgrading to Xcode 15 and building for testing ends up with errors.
Note:
Xcode 15.1 beta3 & 15.0.1 - normal debug build works
Xcode 15.1 beta3 & 15.0.1 - unit test build fails
Xcode 14.3.1 - both builds work
Using Swift Package Manager to add the packages
Error:
ld: Undefined symbols:
(extension in PackageX):...-> SwiftUI.Font, referenced from: PackageY... in PackageY.o
(extension in PackageX)...
...
clang: error: linker command failed with exit code 1 (use -v to see invocation)
What I've tried:
clean up project
remove & add involved packages
adding 'other linker flags' to the main target build settings such as -ld64, -ld_classic
What should I update to work in Xcode 15?
Thank you.