You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's a bit late to be renaming the Tagged struct something else that doesn't clash with the module name, but maybe you have a suggestion for how to avoid this issue with xcodebuild. I'm trying to archive a framework with xcodebuild that depends on swift-tagged, but it seems to be prepending the module name onto the struct while compiling and then getting confused by trying to interpret that as meaning there's a Tagged member on the Tagged struct.
/Users/MyUser/Library/Developer/Xcode/DerivedData/MyProject-arzdwthrubjwyeczbiqlmjkjwywx/Build/Intermediates.noindex/ArchiveIntermediates/MyScheme/IntermediateBuildFilesPath/swift-tagged.build/Release-iphoneos/Tagged.build/Objects-normal/arm64/Tagged.swiftinterface:132:18: error: 'Tagged' is not a member type of generic struct 'Tagged.Tagged'
extension Tagged.Tagged : Swift.Numeric where RawValue : Swift.Numeric {
The text was updated successfully, but these errors were encountered:
It's a bit late to be renaming the
Tagged
struct something else that doesn't clash with the module name, but maybe you have a suggestion for how to avoid this issue withxcodebuild
. I'm trying to archive a framework withxcodebuild
that depends onswift-tagged
, but it seems to be prepending the module name onto the struct while compiling and then getting confused by trying to interpret that as meaning there's aTagged
member on theTagged
struct.The text was updated successfully, but these errors were encountered: