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

@ -1 +1 @@
Subproject commit 8053580ddde4ad6c8de7b33d1e29131fb87facd1
Subproject commit 0100e71e95d3e49f4448ef9d3adcab6544fa593e

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'