Skip to content

Commit 22941c8

Browse files
authored
Another fix for other.test_sdl3_ttf. NFC (#26452)
This failure was not being caught by out CI because of #26451.
1 parent f4a833c commit 22941c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/ports/sdl3_ttf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def get(ports, settings, shared):
2727
def create(final):
2828
src_root = ports.get_dir('sdl3_ttf', 'SDL_ttf-' + TAG)
2929
ports.install_header_dir(os.path.join(src_root, 'include'), target='.')
30-
flags = ['-DTTF_USE_HARFBUZZ=1', '-sUSE_SDL=3', '-sUSE_FREETYPE', '-sUSE_HARFBUZZ']
30+
flags = ['-Wno-experimental', '-DTTF_USE_HARFBUZZ=1', '-sUSE_SDL=3', '-sUSE_FREETYPE', '-sUSE_HARFBUZZ']
3131
if settings.PTHREADS:
3232
flags += ['-pthread']
3333

0 commit comments

Comments
 (0)