Skip to content

Commit

Permalink
Always disable perl for aws-lc (#577)
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitriyMusatkin authored Jul 17, 2024
1 parent 436d58c commit c5b91cd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion awscrt/s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ class S3Client(NativeResource):
Default values scale with target throughput and are currently
between 2GiB and 8GiB (may change in future)
network_interface_names: (Optional[Sequence(str)])
network_interface_names: (Optional[Sequence(str)])
**THIS IS AN EXPERIMENTAL AND UNSTABLE API.**
A sequence of network interface names. The client will distribute the
connections across network interfaces. If any interface name is invalid, goes down,
Expand Down
4 changes: 1 addition & 3 deletions crt/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,9 @@ if(UNIX AND NOT APPLE)
set(DISABLE_GO ON CACHE BOOL "Build without using Go, we don't want the extra dependency")
set(BUILD_LIBSSL OFF CACHE BOOL "Don't need libssl, only need libcrypto")

set(DISABLE_PERL ON CACHE BOOL "Build without using Perl, we don't want the extra dependency")
if(CMAKE_C_COMPILER_ID MATCHES "GNU" AND CMAKE_C_COMPILER_VERSION VERSION_LESS "5.0")
set(DISABLE_PERL OFF CACHE BOOL "Build with Perl to avoid using pre-compiled binary with AVX512")
set(MY_ASSEMBLER_IS_TOO_OLD_FOR_512AVX ON CACHE BOOL "Disable AVX512 on old GCC that not supports it")
else()
set(DISABLE_PERL ON CACHE BOOL "Build without using Perl, we don't want the extra dependency")
endif()

add_subdirectory(aws-lc)
Expand Down
2 changes: 1 addition & 1 deletion crt/aws-c-http
2 changes: 1 addition & 1 deletion crt/aws-lc

0 comments on commit c5b91cd

Please sign in to comment.