Skip to content

Commit

Permalink
disabled asan - clang ubasan checks, too.
Browse files Browse the repository at this point in the history
  • Loading branch information
klemens-morgenstern committed Jun 23, 2023
1 parent a4a90af commit 099dcb5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .drone.star
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def main(ctx):
],
# Standards
'>=11',
docs=False, ubsan=False
docs=False, ubsan=False, asan=False
)

alljobs.extend(generatedjobs)
Expand Down
13 changes: 10 additions & 3 deletions Jamfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 099dcb5

Please sign in to comment.