Kenta Kubo

Results 59 comments of Kenta Kubo

Ink is not actively maintained. So I'd like to replace it with something like [swift-markdown-ui](https://swiftpackageindex.com/gonzalezreal/swift-markdown-ui) if the Swift Playgrounds app supports ClangTarget.

> I think just adding them to your binary target in Package.swift should do what you want - did you try it? Only the swiftc flags can be passed in...

To illustrate with the example given in my first comment, `-experimental-hermetic-seal-at-link` is a flag of swiftc and `--experimental-lto-mode=full` is a flag of swift-build.

@hassila Thank you, but I don't think #262 resolves this issue because `--experimental-lto-mode` is not a flag of swiftc. It's a flag of SwiftPM.

> It seems to work? I tried specifically with the command at > > https://github.com/ordo-one/package-benchmark/releases/tag/1.25.0 Sorry, I'll give it a try.

If you haven't read this yet, it's worth a read. https://github.com/swiftlang/swift-package-manager/pull/6611 The following sentence is particularly important. If you use swiftc's `lto` option, it does not generate intermediate products in...

OK, I'll create new issues in swiftlang/swift-package-manager and ordo-one/package-benchmark. By the way, the command you have written in the [release note](https://github.com/ordo-one/package-benchmark/releases/tag/1.25.0) will cause the following errors. ```console $ swift --version...

@mortenbekditlevsen No, `String` is already available in the main snapshot toolchain. - https://github.com/apple/swift/blob/main/docs/EmbeddedSwift/EmbeddedSwiftStatus.md - https://github.com/apple/swift/pull/70446