Adaptive default toolchain version based on Swift version on builder (#481)

adaptive default toolchain with buidler of carton
This commit is contained in:
omochimetaru 2024-06-09 20:46:31 +08:00 committed by GitHub
parent 8c7ac43e79
commit 1dc1649262
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions

View File

@ -12,4 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#if compiler(>=5.10)
public let defaultToolchainVersion = "wasm-5.10.0-RELEASE"
#else
public let defaultToolchainVersion = "wasm-5.9.2-RELEASE"
#endif