Hi,
I'm trying to test the waters for importing a few select modules a large C++20 codebase into the swift compiler.
I reported one issue already, where the Swift compiler doesn't understand the new char types (char8_t, char16_t, char32_t). Interop: Use of c++20 type char8_t confuses the swift compiler and Xcode · Issue #68726 · apple/swift · GitHub
After commenting out the type traits we have with those types in them, I get the next error when trying to ctrl+click the imported module in my main.swift file of the example project:
...which is less than helpful. The project builds fine when running the build procedure in Xcode and when building from the command line with cmake --build Xcode-build-dir.
Where can I view the logs for this conversion process to see exactly what part of my library is tripping the Swift compiler so I can reduce the test case?
Thanks