clang on windows support

This commit is contained in:
wuggy 2026-09-10 08:32:59 -07:00
commit 1d44f05fba
22 changed files with 208 additions and 65 deletions

View file

@ -11,3 +11,9 @@
GeckoSharedLibrary('lgpllibs', linkage=None)
SHARED_LIBRARY_NAME = 'lgpllibs'
if CONFIG['CLANG_CL']:
# SoundTouch uses clang's OpenMP runtime. Link its import library into the
# containing LGPL DLL and place the runtime beside the browser binaries.
OS_LIBS += ['C:/clang/lib/libomp']
FINAL_TARGET_FILES += ['C:/clang/bin/libomp.dll']