Releases: swiftwasm/swift
Releases · swiftwasm/swift
swift-wasm-5.10-SNAPSHOT-2023-11-22-a
[lit] Repair tests for stdlib-only build `config.host_triple` can be None when no host tools are built This is based on 21d57e887ad1f2d319b8e89af90d2732d50ecf55 in main branch
swift-wasm-DEVELOPMENT-SNAPSHOT-2023-11-21-a
Merge pull request #69946 from tshortli/silgen-lazy-typecheck-lazy-var Sema: Always mark initializers of lazy vars as subsumed
swift-wasm-DEVELOPMENT-SNAPSHOT-2023-11-17-a
Merge pull request #69919 from jckarter/test-resilient-error-handling…
swift-wasm-5.10-SNAPSHOT-2023-11-15-a
[lit] Repair tests for stdlib-only build `config.host_triple` can be None when no host tools are built This is based on 21d57e887ad1f2d319b8e89af90d2732d50ecf55 in main branch
swift-wasm-5.10-SNAPSHOT-2023-11-13-a
[lit] Repair tests for stdlib-only build `config.host_triple` can be None when no host tools are built This is based on 21d57e887ad1f2d319b8e89af90d2732d50ecf55 in main branch
swift-wasm-5.10-SNAPSHOT-2023-11-11-a
[lit] Repair tests for stdlib-only build `config.host_triple` can be None when no host tools are built This is based on 21d57e887ad1f2d319b8e89af90d2732d50ecf55 in main branch
swift-wasm-DEVELOPMENT-SNAPSHOT-2023-11-15-a
Merge pull request #69807 from apple/revert-69450-uninarrayfix
swift-wasm-5.9-SNAPSHOT-2023-11-09-a
[lit] Repair tests for stdlib-only build `config.host_triple` can be None when no host tools are built This is based on 21d57e887ad1f2d319b8e89af90d2732d50ecf55 in main branch
swift-wasm-5.10-SNAPSHOT-2023-11-09-a
[lit] Repair tests for stdlib-only build `config.host_triple` can be None when no host tools are built This is based on 21d57e887ad1f2d319b8e89af90d2732d50ecf55 in main branch
swift-wasm-DEVELOPMENT-SNAPSHOT-2023-11-09-a
Fix calling convention mismatch for debugger utility functions This is the 3rd attempt to fix the mismatch, where the actual definition (e.g. `swift_retainCount`) are defined with C calling-convention and the callers wrongly expect Swift calling-convention. The 1st fix broke ABI compatibility by introducing new symbol references from app-side without any availability checks. The 2nd fix broke lldb's retain counting feature due to new x-ref to Clang module in serialized function body by `@_alwaysEmitIntoClient`. This attemps to avoid introducing serialized x-ref to Clang module by using new `@extern(c)` attribute. Co-authored-by: Karoy Lorentey <[email protected]>