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
|
# Standards
|
||||||
'>=11',
|
'>=11',
|
||||||
docs=False, ubsan=False
|
docs=False, ubsan=False, asan=False
|
||||||
)
|
)
|
||||||
|
|
||||||
alljobs.extend(generatedjobs)
|
alljobs.extend(generatedjobs)
|
||||||
|
13
Jamfile
13
Jamfile
@@ -105,19 +105,26 @@ 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
|
||||||
<link>static
|
<link>static
|
||||||
$(defines)
|
$(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 ]
|
[ 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
|
||||||
|
Reference in New Issue
Block a user