disabled asan - clang ubasan checks, too.

This commit is contained in:
Klemens Morgenstern
2023-05-26 10:19:41 +08:00
committed by Klemens Morgenstern
parent a4a90af541
commit 099dcb58e8
2 changed files with 11 additions and 4 deletions

View File

@@ -44,7 +44,7 @@ def main(ctx):
], ],
# Standards # Standards
'>=11', '>=11',
docs=False, ubsan=False docs=False, ubsan=False, asan=False
) )
alljobs.extend(generatedjobs) alljobs.extend(generatedjobs)

11
Jamfile
View File

@@ -105,6 +105,11 @@ lib lib-asio
$(defines) $(defines)
; ;
if [ os.name ] = LINUX
{
lib dl ;
}
lib lib-asio-ssl lib lib-asio-ssl
: test/lib_asio_ssl.cpp : test/lib_asio_ssl.cpp
: requirements : requirements
@@ -114,10 +119,12 @@ lib lib-asio-ssl
[ ac.check-library /openssl//crypto : <library>/openssl//crypto/<link>shared : <build>no ] [ ac.check-library /openssl//crypto : <library>/openssl//crypto/<link>shared : <build>no ]
: usage-requirements : usage-requirements
$(defines) $(defines)
[ ac.check-library /openssl//ssl : <library>/openssl//ssl/<link>shared : <build>no ] <library>/openssl//ssl/<link>shared
[ ac.check-library /openssl//crypto : <library>/openssl//crypto/<link>shared : <build>no ] <library>/openssl//crypto/<link>shared
<target-os>linux:<library>dl
; ;
lib lib-beast lib lib-beast
: test/lib_beast.cpp : test/lib_beast.cpp
: requirements : requirements