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
'>=11',
docs=False, ubsan=False
docs=False, ubsan=False, asan=False
)
alljobs.extend(generatedjobs)

13
Jamfile
View File

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