mirror of
https://github.com/boostorg/beast.git
synced 2025-08-04 23:34:31 +02:00
disabled asan - clang ubasan checks, too.
This commit is contained in:
committed by
Klemens Morgenstern
parent
a4a90af541
commit
099dcb58e8
@@ -44,7 +44,7 @@ def main(ctx):
|
||||
],
|
||||
# Standards
|
||||
'>=11',
|
||||
docs=False, ubsan=False
|
||||
docs=False, ubsan=False, asan=False
|
||||
)
|
||||
|
||||
alljobs.extend(generatedjobs)
|
||||
|
13
Jamfile
13
Jamfile
@@ -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
|
||||
|
Reference in New Issue
Block a user