We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e24532 commit 5eeef58Copy full SHA for 5eeef58
1 file changed
tools/system_libs.py
@@ -1494,11 +1494,8 @@ def can_use(self):
1494
class libprintf_long_double(libc):
1495
name = 'libprintf_long_double'
1496
cflags = ['-DEMSCRIPTEN_PRINTF_LONG_DOUBLE']
1497
-
1498
- def get_files(self):
1499
- return files_in_path(
1500
- path='system/lib/libc/musl/src/stdio',
1501
- filenames=['vfprintf.c'])
+ src_dir = 'system/lib/libc/musl/src/stdio'
+ src_files = ['vfprintf.c']
1502
1503
def can_use(self):
1504
return super().can_use() and settings.PRINTF_LONG_DOUBLE
0 commit comments