We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d447ca4 commit 9e9b3b4Copy full SHA for 9e9b3b4
Sources/SymbolGraphBuilder/Toolchains/SSGC.Toolchain.swift
@@ -449,6 +449,14 @@ extension SSGC.Toolchain
449
compiler; see https://github.com/apple/swift/issues/68767.
450
""")
451
}
452
+ catch SystemProcessError.exit(134, _)
453
+ {
454
+ print("""
455
+ Failed to dump symbols for module '\(id)' due to SIGABRT \
456
+ from 'swift symbolgraph-extract'. This is a known bug in the Apple Swift \
457
+ compiler; see https://github.com/swiftlang/swift/issues/75318.
458
+ """)
459
+ }
460
catch SystemProcessError.exit(let code, let invocation)
461
{
462
throw SSGC.PackageBuildError.swift_symbolgraph_extract(code, invocation)
0 commit comments