SwiftSyntax with Swift 5.1

Here's a hacky workaround. You can run this after the first build for testing, then running the tests from within Xcode should work.

for path in ~/Library/Developer/Xcode/DerivedData/*/Build/Products/Debug/; do
    cp "$(xcode-select -p)/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/lib_InternalSwiftSyntaxParser.dylib" $path
done
2 Likes