I have a fairly large project which is failing to build with the Xcode 12 beta
The build error is as follows:
:0: error: circular reference
:0: note: through reference here
:0: note: through reference here
:0: note: through reference here
:0: error: circular reference
:0: note: through reference here
:0: note: through reference here
:0: note: through reference here
:0: error: circular reference
:0: note: through reference here
:0: note: through reference here
:0: note: through reference hereCommand MergeSwiftModule failed with a nonzero exit code
Other possibly relevant details:
- It is cross-platform, all of the targets (iOS, tvOS, macOS) fail to build in the same way.
- There is an obj-c bridging header.
- There are no 3rd party dependencies.
So my question is, how might I be able to work around this?
Even a general strategy for dealing with this sort of issue would be helpful!