File tree 3 files changed +12
-7
lines changed
3 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -88,8 +88,8 @@ let operatingSystemVersion: String = {
88
88
}
89
89
}
90
90
#elseif os(WASI)
91
- if let libcVersion = swt_getWASIVersion ( ) . flatMap ( String . init ( validatingCString: ) ) , !libcVersion . isEmpty {
92
- return " WASI with libc \( libcVersion ) "
91
+ if let version = swt_getWASIVersion ( ) . flatMap ( String . init ( validatingCString: ) ) {
92
+ return version
93
93
}
94
94
#else
95
95
#warning("Platform-specific implementation missing: OS version unavailable")
Original file line number Diff line number Diff line change 10
10
11
11
#include " Versions.h"
12
12
13
- #if defined(_SWT_TESTING_LIBRARY_VERSION)
13
+ #if defined(__wasi__) && __has_include(<wasi/version.h>)
14
+ #include < wasi/version.h>
15
+ #endif
16
+
17
+ #if defined(_SWT_TESTING_LIBRARY_VERSION) && !defined(SWT_TESTING_LIBRARY_VERSION)
14
18
#warning _SWT_TESTING_LIBRARY_VERSION is deprecated
15
19
#warning Define SWT_TESTING_LIBRARY_VERSION and optionally SWT_TARGET_TRIPLE instead
20
+ #define SWT_TESTING_LIBRARY_VERSION _SWT_TESTING_LIBRARY_VERSION
16
21
#endif
17
22
18
23
const char *swt_getTestingLibraryVersion (void ) {
@@ -41,8 +46,8 @@ const char *swt_getTargetTriple(void) {
41
46
42
47
#if defined(__wasi__)
43
48
const char *swt_getWASIVersion (void ) {
44
- #if defined(WASI_LIBC_VERSION )
45
- return WASI_LIBC_VERSION ;
49
+ #if defined(WASI_SDK_VERSION )
50
+ return WASI_SDK_VERSION ;
46
51
#else
47
52
return nullptr ;
48
53
#endif
Original file line number Diff line number Diff line change @@ -32,10 +32,10 @@ SWT_EXTERN const char *_Nullable swt_getTargetTriple(void);
32
32
/// Get the version of the C standard library and runtime used by WASI, if
33
33
/// available.
34
34
///
35
- /// This function is provided because `WASI_LIBC_VERSION ` may or may not be
35
+ /// This function is provided because `WASI_SDK_VERSION ` may or may not be
36
36
/// defined and may or may not be a complex macro.
37
37
///
38
- /// For more information about the `WASI_LIBC_VERSION ` macro, see
38
+ /// For more information about the `WASI_SDK_VERSION ` macro, see
39
39
/// [wasi-libc-#490](https://github.com/WebAssembly/wasi-libc/issues/490).
40
40
SWT_EXTERN const char * _Nullable swt_getWASIVersion (void );
41
41
You can’t perform that action at this time.
0 commit comments