Skip to content

Commit 0b0653e

Browse files
authored
[WasmFS] Use the same system library inheritance order as libc (#17315)
To ensure that the `MTLibrary` base names have a higher priority as `DebugLibrary` and `AsanInstrumentedLibrary`.
1 parent ae64672 commit 0b0653e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/system_libs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1538,7 +1538,7 @@ def get_files(self):
15381538
return [utils.path_from_root('system/lib/stb_image.c')]
15391539

15401540

1541-
class libwasmfs(MTLibrary, DebugLibrary, AsanInstrumentedLibrary):
1541+
class libwasmfs(DebugLibrary, AsanInstrumentedLibrary, MTLibrary):
15421542
name = 'libwasmfs'
15431543

15441544
cflags = ['-fno-exceptions', '-std=c++17']

0 commit comments

Comments
 (0)