Skip to content

Releases: swiftwasm/swift

swift-wasm-5.10-SNAPSHOT-2023-11-22-a

23 Nov 01:13
Compare
Choose a tag to compare
Pre-release
[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

22 Nov 01:19
98e65d0
Compare
Choose a tag to compare
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

18 Nov 01:18
a759703
Compare
Choose a tag to compare
Merge pull request #69919 from jckarter/test-resilient-error-handling…

swift-wasm-5.10-SNAPSHOT-2023-11-15-a

16 Nov 01:26
Compare
Choose a tag to compare
Pre-release
[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

14 Nov 01:18
Compare
Choose a tag to compare
Pre-release
[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

13 Nov 01:12
Compare
Choose a tag to compare
Pre-release
[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

16 Nov 01:16
cabb5e1
Compare
Choose a tag to compare
Merge pull request #69807 from apple/revert-69450-uninarrayfix

swift-wasm-5.9-SNAPSHOT-2023-11-09-a

11 Nov 01:13
Compare
Choose a tag to compare
Pre-release
[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

11 Nov 01:09
Compare
Choose a tag to compare
Pre-release
[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

10 Nov 01:18
Compare
Choose a tag to compare
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]>