fix: linux x86 binaries not loading on distros with glibc < 2.34

This commit is contained in:
jeefo 2023-05-13 18:09:47 +03:00
commit 5f52489033
No known key found for this signature in database
GPG key ID: 927BCA0779BEA8ED
2 changed files with 2 additions and 2 deletions

View file

@ -90,7 +90,7 @@ endif
# configure flags gcc and clang
if cxx == 'clang' or cxx == 'gcc'
cxxflags += [
'-mtune=generic', '-fno-threadsafe-statics'
'-mtune=generic', '-fno-threadsafe-statics', '-pthread'
]
if cpu == 'aarch64'