From b5b3e0e2f168108bb38b99d86ef2a9c4e1e26a6d Mon Sep 17 00:00:00 2001 From: DmitriyMusatkin Date: Fri, 24 Oct 2025 16:57:06 -0700 Subject: [PATCH 1/6] make setup work on homebrew python --- setup.py | 31 +++++++++++++++++++++++++++++-- 1 file changed, 29 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 61d91d999..8e759dce4 100644 --- a/setup.py +++ b/setup.py @@ -315,6 +315,7 @@ def _build_dependencies_impl(self, build_dir, install_path, osx_arch=None): run_cmd(build_cmd) def _build_dependencies(self): + build_dir = os.path.join(self.build_temp, 'deps') install_path = os.path.join(self.build_temp, 'deps', 'install') @@ -375,6 +376,32 @@ def _build_dependencies(self): self.library_dirs.insert(0, os.path.join(install_path, lib_dir)) + def build_extension(self, ext): + + # Warning: very hacky. feel free to replace with something cleaner + # Problem: if you install python through homebrew, python config ldflags + # will point to homebrew lib folder. + # setuptools puts python ldflags before any of our lib paths, so if there is openssl or + # another libcrypto in homebrew libs, it will get picked up before aws-lc we are building against. + # And then we have fun failures due to lib mismatch. + # I could not find a cleaner way, so lets just hook into linker command and make sure + # our libs appear before other libs. + if sys.platform == 'darwin' and using_libcrypto() and not using_system_libs() and not using_system_libcrypto(): + + orig_linker_so = self.compiler.linker_so[:] + + for i, item in enumerate(self.compiler.linker_so): + if item.startswith('-L'): + self.compiler.linker_so[i:i] = [f"-L{item}" for item in self.library_dirs] + ['-Wl,-search_paths_first'] + break + + try: + super().build_extension(ext) + finally: + self.compiler.linker_so = orig_linker_so + else: + super().build_extension(ext) + def run(self): if using_system_libs(): print("Skip building dependencies") @@ -422,7 +449,6 @@ def awscrt_ext(): elif sys.platform == 'darwin': extra_link_args += ['-framework', 'Security'] - else: # unix if forcing_static_libs(): # linker will prefer shared libraries over static if it can find both. @@ -502,6 +528,8 @@ def awscrt_ext(): define_macros.append(('Py_LIMITED_API', '0x030B0000')) py_limited_api = True + print + return setuptools.Extension( '_awscrt', language='c', @@ -514,7 +542,6 @@ def awscrt_ext(): py_limited_api=py_limited_api, ) - def _load_version(): init_path = os.path.join(PROJECT_DIR, 'awscrt', '__init__.py') with open(init_path) as fp: From c6b19ece7ec597c9c7bd1bca9824f06b80d3615c Mon Sep 17 00:00:00 2001 From: DmitriyMusatkin Date: Fri, 24 Oct 2025 17:00:59 -0700 Subject: [PATCH 2/6] lint --- crt/aws-c-cal | 2 +- foo.txt | 1436 +++++++++++++++++++++++++++++++++++++++++++++++++ setup.py | 10 +- 3 files changed, 1442 insertions(+), 6 deletions(-) create mode 100644 foo.txt diff --git a/crt/aws-c-cal b/crt/aws-c-cal index cdd052bf0..c5858e4d6 160000 --- a/crt/aws-c-cal +++ b/crt/aws-c-cal @@ -1 +1 @@ -Subproject commit cdd052bf0ac38d72177d6376ea668755fca13df4 +Subproject commit c5858e4d6b1a2faeeb551ad6acc06059a7d6f9cf diff --git a/foo.txt b/foo.txt new file mode 100644 index 000000000..77c2b4cae --- /dev/null +++ b/foo.txt @@ -0,0 +1,1436 @@ + Running command pip subprocess to install build dependencies + Collecting setuptools>=75.3.1 + Using cached setuptools-80.9.0-py3-none-any.whl.metadata (6.6 kB) + Using cached setuptools-80.9.0-py3-none-any.whl (1.2 MB) + Installing collected packages: setuptools + Successfully installed setuptools-80.9.0 + + [notice] A new release of pip is available: 24.0 -> 25.2 + [notice] To update, run: pip install --upgrade pip + Running command Checking if build backend supports build_editable + Running command Getting requirements to build editable + /private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-build-env-u75ex_bl/overlay/lib/python3.11/site-packages/setuptools/config/_apply_pyprojecttoml.py:82: SetuptoolsDeprecationWarning: `project.license` as a TOML table is deprecated + !! + + ******************************************************************************** + Please use a simple string containing a SPDX expression for `project.license`. You can also use `project.license-files`. (Both options available on setuptools>=77.0.0). + + By 2026-Feb-18, you need to update your project and remove deprecated calls + or your builds will no longer be supported. + + See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. + ******************************************************************************** + + !! + corresp(dist, value, root_dir) + running egg_info + writing awscrt.egg-info/PKG-INFO + writing dependency_links to awscrt.egg-info/dependency_links.txt + writing requirements to awscrt.egg-info/requires.txt + writing top-level names to awscrt.egg-info/top_level.txt + reading manifest file 'awscrt.egg-info/SOURCES.txt' + reading manifest template 'MANIFEST.in' + warning: no previously-included files matching '.travis*' found anywhere in distribution + warning: no previously-included files matching '.travis/**' found anywhere in distribution + no previously-included directories found matching 'crt/aws-c-s3/benchmarks' + no previously-included directories found matching 'crt/aws-lc/third_party/jitterentropy/tests' + no previously-included directories found matching 'crt/aws-lc/third_party/jitterentropy/doc' + adding license file 'LICENSE' + adding license file 'NOTICE' + writing manifest file 'awscrt.egg-info/SOURCES.txt' + Running command Preparing editable metadata (pyproject.toml) + /private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-build-env-u75ex_bl/overlay/lib/python3.11/site-packages/setuptools/config/_apply_pyprojecttoml.py:82: SetuptoolsDeprecationWarning: `project.license` as a TOML table is deprecated + !! + + ******************************************************************************** + Please use a simple string containing a SPDX expression for `project.license`. You can also use `project.license-files`. (Both options available on setuptools>=77.0.0). + + By 2026-Feb-18, you need to update your project and remove deprecated calls + or your builds will no longer be supported. + + See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. + ******************************************************************************** + + !! + corresp(dist, value, root_dir) + running dist_info + creating /private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-modern-metadata-jl4hdosg/awscrt.egg-info + writing /private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-modern-metadata-jl4hdosg/awscrt.egg-info/PKG-INFO + writing dependency_links to /private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-modern-metadata-jl4hdosg/awscrt.egg-info/dependency_links.txt + writing requirements to /private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-modern-metadata-jl4hdosg/awscrt.egg-info/requires.txt + writing top-level names to /private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-modern-metadata-jl4hdosg/awscrt.egg-info/top_level.txt + writing manifest file '/private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-modern-metadata-jl4hdosg/awscrt.egg-info/SOURCES.txt' + reading manifest file '/private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-modern-metadata-jl4hdosg/awscrt.egg-info/SOURCES.txt' + reading manifest template 'MANIFEST.in' + warning: no previously-included files matching '.travis*' found anywhere in distribution + warning: no previously-included files matching '.travis/**' found anywhere in distribution + no previously-included directories found matching 'crt/aws-c-s3/benchmarks' + no previously-included directories found matching 'crt/aws-lc/third_party/jitterentropy/tests' + no previously-included directories found matching 'crt/aws-lc/third_party/jitterentropy/doc' + adding license file 'LICENSE' + adding license file 'NOTICE' + writing manifest file '/private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-modern-metadata-jl4hdosg/awscrt.egg-info/SOURCES.txt' + creating '/private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-modern-metadata-jl4hdosg/awscrt-1.0.0.dev0.dist-info' +Running command Checking if build backend supports build_editable + Running command Building editable for awscrt (pyproject.toml) + /private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-build-env-u75ex_bl/overlay/lib/python3.11/site-packages/setuptools/config/_apply_pyprojecttoml.py:82: SetuptoolsDeprecationWarning: `project.license` as a TOML table is deprecated + !! + + ******************************************************************************** + Please use a simple string containing a SPDX expression for `project.license`. You can also use `project.license-files`. (Both options available on setuptools>=77.0.0). + + By 2026-Feb-18, you need to update your project and remove deprecated calls + or your builds will no longer be supported. + + See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. + ******************************************************************************** + + !! + corresp(dist, value, root_dir) + running editable_wheel + creating /private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-wheel-dnfmnm23/.tmp-sznk5w2u/awscrt.egg-info + writing /private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-wheel-dnfmnm23/.tmp-sznk5w2u/awscrt.egg-info/PKG-INFO + writing dependency_links to /private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-wheel-dnfmnm23/.tmp-sznk5w2u/awscrt.egg-info/dependency_links.txt + writing requirements to /private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-wheel-dnfmnm23/.tmp-sznk5w2u/awscrt.egg-info/requires.txt + writing top-level names to /private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-wheel-dnfmnm23/.tmp-sznk5w2u/awscrt.egg-info/top_level.txt + writing manifest file '/private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-wheel-dnfmnm23/.tmp-sznk5w2u/awscrt.egg-info/SOURCES.txt' + reading manifest file '/private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-wheel-dnfmnm23/.tmp-sznk5w2u/awscrt.egg-info/SOURCES.txt' + reading manifest template 'MANIFEST.in' + warning: no previously-included files matching '.travis*' found anywhere in distribution + warning: no previously-included files matching '.travis/**' found anywhere in distribution + no previously-included directories found matching 'crt/aws-c-s3/benchmarks' + no previously-included directories found matching 'crt/aws-lc/third_party/jitterentropy/tests' + no previously-included directories found matching 'crt/aws-lc/third_party/jitterentropy/doc' + adding license file 'LICENSE' + adding license file 'NOTICE' + writing manifest file '/private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-wheel-dnfmnm23/.tmp-sznk5w2u/awscrt.egg-info/SOURCES.txt' + creating '/private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-wheel-dnfmnm23/.tmp-sznk5w2u/awscrt-1.0.0.dev0.dist-info' + creating /private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-wheel-dnfmnm23/.tmp-sznk5w2u/awscrt-1.0.0.dev0.dist-info/WHEEL + running build_py + running build_ext + -- The C compiler identification is AppleClang 15.0.0.15000309 + -- The CXX compiler identification is AppleClang 15.0.0.15000309 + -- Detecting C compiler ABI info + -- Detecting C compiler ABI info - done + -- Check for working C compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc - skipped + -- Detecting C compile features + -- Detecting C compile features - done + -- Detecting CXX compiler ABI info + -- Detecting CXX compiler ABI info - done + -- Check for working CXX compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ - skipped + -- Detecting CXX compile features + -- Detecting CXX compile features - done + -- cmake command for dependency AWSLC: /opt/homebrew/Cellar/cmake/3.30.3/bin/cmake;-DCMAKE_CXX_COMPILER=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++;-DCMAKE_CXX_FLAGS_DEBUG=-g;-DCMAKE_CXX_FLAGS_MINSIZEREL=-Os -DNDEBUG;-DCMAKE_CXX_FLAGS_RELEASE=-O3 -DNDEBUG;-DCMAKE_CXX_FLAGS_RELWITHDEBINFO=-O2 -g1 -DNDEBUG;-DCMAKE_C_COMPILER=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc;-DCMAKE_C_FLAGS_DEBUG=-g;-DCMAKE_C_FLAGS_MINSIZEREL=-Os -DNDEBUG;-DCMAKE_C_FLAGS_RELEASE=-O3 -DNDEBUG;-DCMAKE_C_FLAGS_RELWITHDEBINFO=-O2 -g1 -DNDEBUG;-DCMAKE_GENERATOR=Unix Makefiles;-DCMAKE_MAKE_PROGRAM=/usr/bin/make;-DCMAKE_OSX_DEPLOYMENT_TARGET=14.4;-DCMAKE_OSX_SYSROOT=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk;-H/Users/musatkd/dev/aws-crt-python/crt/aws-lc;-B/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC;-DCMAKE_BUILD_TYPE=RelWithDebInfo;-DCMAKE_PREFIX_PATH=;-DCMAKE_INSTALL_PREFIX=/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install;-DCMAKE_INSTALL_RPATH=;-DBUILD_SHARED_LIBS=OFF;-GUnix Makefiles;-DDISABLE_GO=ON;-DDISABLE_PERL=ON;-DBUILD_LIBSSL=OFF;-DBUILD_TESTING=OFF;-DCMAKE_BUILD_TYPE=RelWithDebInfo;-DOPENSSL_SMALL=1 + -- ENABLE_PRE_SONAME_BUILD: ON + -- PERFORM_SONAME_BUILD: 0 + -- The C compiler identification is AppleClang 15.0.0.15000309 + -- Detecting C compiler ABI info + -- Detecting C compiler ABI info - done + -- Check for working C compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc - skipped + -- Detecting C compile features + -- Detecting C compile features - done + -- Entropy source configured: Dynamic (default: CPU Jitter) + -- Go not found. Disabling some code generation and using pre-generated code in generated-src/ + -- Perl not found. Disabling some code generation and using pre-generated code in generated-src/ + -- Setting CMAKE_C_STANDARD=11 + -- Performing Test HAVE_C_FLAG__Wno_cast_function_type + -- Performing Test HAVE_C_FLAG__Wno_cast_function_type - Success + -- Compiler supports '-Wno-cast-function-type', adding to CMAKE_C_FLAGS + -- Performing Test HAVE_C_FLAG__Wstring_concatenation + -- Performing Test HAVE_C_FLAG__Wstring_concatenation - Success + -- Compiler supports '-Wstring-concatenation', adding to C_CXX_FLAGS + -- Performing Test HAVE_C_FLAG__Wimplicit_fallthrough + -- Performing Test HAVE_C_FLAG__Wimplicit_fallthrough - Success + -- Compiler supports '-Wimplicit-fallthrough', adding to C_CXX_FLAGS + -- linux_random_h.c probe is negative, NOT enabling HAVE_LINUX_RANDOM_H: + -- Change Dir: '/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/CMakeFiles/CMakeTmp' + + Run Build Command(s): /opt/homebrew/Cellar/cmake/3.30.3/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_7f71b/fast + /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_7f71b.dir/build.make CMakeFiles/cmTC_7f71b.dir/build + Building C object CMakeFiles/cmTC_7f71b.dir/linux_random_h.c.o + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -Wextra -Wunused -Wcomment -Wchar-subscripts -Wuninitialized -Wshadow -Wwrite-strings -Wformat-security -Wunused-result -Wno-overlength-strings -Wno-cast-function-type -Wall -fvisibility=hidden -fno-common -Wno-c11-extensions -Wvla -Wtype-limits -Wno-unused-parameter -Werror -Wformat=2 -Wsign-compare -Wmissing-field-initializers -Wwrite-strings -ggdb -Wnewline-eof -fcolor-diagnostics -Wstring-concatenation -Wimplicit-fallthrough -Wmissing-prototypes -Wold-style-definition -Wstrict-prototypes -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk -mmacosx-version-min=14.4 -Werror -MD -MT CMakeFiles/cmTC_7f71b.dir/linux_random_h.c.o -MF CMakeFiles/cmTC_7f71b.dir/linux_random_h.c.o.d -o CMakeFiles/cmTC_7f71b.dir/linux_random_h.c.o -c /Users/musatkd/dev/aws-crt-python/crt/aws-lc/tests/compiler_features_tests/linux_random_h.c + /Users/musatkd/dev/aws-crt-python/crt/aws-lc/tests/compiler_features_tests/linux_random_h.c:15:10: fatal error: 'linux/random.h' file not found + #include +  ^~~~~~~~~~~~~~~~ + 1 error generated. + make[1]: *** [CMakeFiles/cmTC_7f71b.dir/linux_random_h.c.o] Error 1 + make: *** [cmTC_7f71b/fast] Error 2 + + + -- linux_random_h.c probe is negative, NOT enabling AWS_LC_URANDOM_NEEDS_U32: + -- Change Dir: '/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/CMakeFiles/CMakeTmp' + + Run Build Command(s): /opt/homebrew/Cellar/cmake/3.30.3/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_f1a78/fast + /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_f1a78.dir/build.make CMakeFiles/cmTC_f1a78.dir/build + Building C object CMakeFiles/cmTC_f1a78.dir/linux_random_h.c.o + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -Wextra -Wunused -Wcomment -Wchar-subscripts -Wuninitialized -Wshadow -Wwrite-strings -Wformat-security -Wunused-result -Wno-overlength-strings -Wno-cast-function-type -Wall -fvisibility=hidden -fno-common -Wno-c11-extensions -Wvla -Wtype-limits -Wno-unused-parameter -Werror -Wformat=2 -Wsign-compare -Wmissing-field-initializers -Wwrite-strings -ggdb -Wnewline-eof -fcolor-diagnostics -Wstring-concatenation -Wimplicit-fallthrough -Wmissing-prototypes -Wold-style-definition -Wstrict-prototypes -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk -mmacosx-version-min=14.4 -Werror -DDEFINE_U32 -MD -MT CMakeFiles/cmTC_f1a78.dir/linux_random_h.c.o -MF CMakeFiles/cmTC_f1a78.dir/linux_random_h.c.o.d -o CMakeFiles/cmTC_f1a78.dir/linux_random_h.c.o -c /Users/musatkd/dev/aws-crt-python/crt/aws-lc/tests/compiler_features_tests/linux_random_h.c + /Users/musatkd/dev/aws-crt-python/crt/aws-lc/tests/compiler_features_tests/linux_random_h.c:15:10: fatal error: 'linux/random.h' file not found + #include +  ^~~~~~~~~~~~~~~~ + 1 error generated. + make[1]: *** [CMakeFiles/cmTC_f1a78.dir/linux_random_h.c.o] Error 1 + make: *** [cmTC_f1a78/fast] Error 2 + + + -- stdalign_check.c probe is positive, enabling AWS_LC_STDALIGN_AVAILABLE + -- builtin_swap_check.c probe is positive, enabling AWS_LC_BUILTIN_SWAP_SUPPORTED + -- Performing Test HAVE_C_FLAG__Wshadow + -- Performing Test HAVE_C_FLAG__Wshadow - Success + -- Compiler supports '-Wshadow', adding to C_CXX_FLAGS + -- The ASM compiler identification is AppleClang + -- Found assembler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc + Copying platform assembly files from /Users/musatkd/dev/aws-crt-python/crt/aws-lc/generated-src/ios-aarch64/crypto/ to /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/crypto + -- neon_sha3_check.c probe is positive, enabling MY_ASSEMBLER_SUPPORTS_NEON_SHA3_EXTENSION + -- Performing Test CMAKE_HAVE_LIBC_PTHREAD + -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success + -- Found Threads: TRUE + -- Configuring done (2.8s) + -- Generating done (0.2s) + CMake Warning: + Manually-specified variables were not used by the project: + + CMAKE_CXX_COMPILER + CMAKE_CXX_FLAGS_DEBUG + CMAKE_CXX_FLAGS_MINSIZEREL + CMAKE_CXX_FLAGS_RELWITHDEBINFO + + + -- Build files have been written to: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC + [ 0%] Built target boringssl_prefix_symbols + [ 0%] Building C object third_party/jitterentropy/CMakeFiles/jitterentropy.dir/jitterentropy-library/src/jitterentropy-base.c.o + [ 0%] Building C object third_party/jitterentropy/CMakeFiles/jitterentropy.dir/jitterentropy-library/src/jitterentropy-gcd.c.o + [ 1%] Building C object third_party/jitterentropy/CMakeFiles/jitterentropy.dir/jitterentropy-library/src/jitterentropy-timer.c.o + [ 1%] Building C object third_party/jitterentropy/CMakeFiles/jitterentropy.dir/jitterentropy-library/src/jitterentropy-sha3.c.o + [ 2%] Building C object third_party/jitterentropy/CMakeFiles/jitterentropy.dir/jitterentropy-library/src/jitterentropy-health.c.o + [ 2%] Building C object third_party/jitterentropy/CMakeFiles/jitterentropy.dir/jitterentropy-library/src/jitterentropy-noise.c.o + [ 2%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/a_bitstr.c.o + [ 2%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/a_bool.c.o + [ 2%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/a_gentm.c.o + [ 3%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/a_d2i_fp.c.o + [ 3%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/a_dup.c.o + [ 4%] Building C object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/bcm.c.o + [ 4%] Building C object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/fips_shared_support.c.o + [ 4%] Building C object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/cpucap/cpucap.c.o + [ 5%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/aesv8-armx.S.o + [ 5%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/aesv8-gcm-armv8.S.o + [ 5%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/a_i2d_fp.c.o + [ 6%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/a_int.c.o + [ 6%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/a_mbstr.c.o + [ 6%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/a_object.c.o + [ 6%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/aesv8-gcm-armv8-unroll8.S.o + [ 6%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/armv8-mont.S.o + [ 7%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/a_octet.c.o + [ 8%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/bn-armv8.S.o + [ 8%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/a_strex.c.o + [ 8%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/a_strnid.c.o + [ 8%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/ghash-neon-armv8.S.o + [ 8%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/a_time.c.o + [ 8%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/ghashv8-armx.S.o + [ 9%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/a_type.c.o + [ 10%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/keccak1600-armv8.S.o + [ 10%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/a_utctm.c.o + [ 10%] Built target jitterentropy + [ 10%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/md5-armv8.S.o + [ 10%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/p256-armv8-asm.S.o + [ 10%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/a_utf8.c.o + [ 11%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/asn1_lib.c.o + [ 11%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/p256_beeu-armv8-asm.S.o + [ 11%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/asn1_par.c.o + [ 11%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/asn_pack.c.o + [ 12%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/rndr-armv8.S.o + [ 12%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/sha1-armv8.S.o + [ 12%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/sha256-armv8.S.o + [ 13%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/sha512-armv8.S.o + [ 13%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/vpaes-armv8.S.o + [ 13%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p256/p256_montjscalarmul.S.o + [ 13%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p256/p256_montjscalarmul_alt.S.o + [ 13%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/f_int.c.o + [ 14%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/f_string.c.o + [ 14%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/tasn_dec.c.o + [ 15%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p256/bignum_montinv_p256.S.o + [ 15%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p384/bignum_sub_p384.S.o + [ 15%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/tasn_enc.c.o + [ 15%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p384/bignum_add_p384.S.o + [ 16%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p384/bignum_neg_p384.S.o + [ 16%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p384/bignum_tomont_p384.S.o + [ 17%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/tasn_fre.c.o + [ 17%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p384/bignum_deamont_p384.S.o + [ 17%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/tasn_new.c.o + [ 17%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p384/bignum_montmul_p384.S.o + [ 18%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p384/bignum_montmul_p384_alt.S.o + [ 18%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/tasn_typ.c.o + [ 18%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/tasn_utl.c.o + [ 19%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/posix_time.c.o + [ 19%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p384/bignum_montsqr_p384.S.o + [ 19%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p384/bignum_montsqr_p384_alt.S.o + [ 20%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p384/bignum_nonzero_6.S.o + [ 20%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p384/bignum_littleendian_6.S.o + [ 20%] Building C object crypto/CMakeFiles/crypto_objects.dir/base64/base64.c.o + [ 20%] Building C object crypto/CMakeFiles/crypto_objects.dir/bio/bio.c.o + [ 21%] Building C object crypto/CMakeFiles/crypto_objects.dir/bio/bio_addr.c.o + [ 21%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p384/p384_montjdouble.S.o + [ 21%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p384/p384_montjdouble_alt.S.o + [ 22%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p384/p384_montjscalarmul.S.o + [ 22%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p384/p384_montjscalarmul_alt.S.o + [ 22%] Building C object crypto/CMakeFiles/crypto_objects.dir/bio/bio_mem.c.o + [ 22%] Building C object crypto/CMakeFiles/crypto_objects.dir/bio/connect.c.o + [ 22%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p384/bignum_montinv_p384.S.o + [ 22%] Building C object crypto/CMakeFiles/crypto_objects.dir/bio/dgram.c.o + [ 22%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p521/bignum_add_p521.S.o + [ 23%] Building C object crypto/CMakeFiles/crypto_objects.dir/bio/errno.c.o + [ 23%] Building C object crypto/CMakeFiles/crypto_objects.dir/bio/fd.c.o + [ 24%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p521/bignum_sub_p521.S.o + [ 24%] Building C object crypto/CMakeFiles/crypto_objects.dir/bio/file.c.o + [ 24%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p521/bignum_neg_p521.S.o + [ 24%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p521/bignum_mul_p521.S.o + [ 24%] Building C object crypto/CMakeFiles/crypto_objects.dir/bio/hexdump.c.o + [ 25%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p521/bignum_mul_p521_alt.S.o + [ 26%] Building C object crypto/CMakeFiles/crypto_objects.dir/bio/md.c.o + [ 26%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p521/bignum_sqr_p521.S.o + [ 26%] Building C object crypto/CMakeFiles/crypto_objects.dir/bio/pair.c.o + [ 26%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p521/bignum_sqr_p521_alt.S.o + [ 26%] Building C object crypto/CMakeFiles/crypto_objects.dir/bio/printf.c.o + [ 26%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p521/bignum_tolebytes_p521.S.o + [ 27%] Building C object crypto/CMakeFiles/crypto_objects.dir/bio/socket.c.o + [ 27%] Building C object crypto/CMakeFiles/crypto_objects.dir/bio/socket_helper.c.o + [ 28%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p521/bignum_fromlebytes_p521.S.o + [ 28%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p521/p521_jdouble.S.o + [ 28%] Building C object crypto/CMakeFiles/crypto_objects.dir/blake2/blake2.c.o + [ 28%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p521/p521_jdouble_alt.S.o + [ 29%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p521/p521_jscalarmul_alt.S.o + [ 29%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p521/p521_jscalarmul.S.o + [ 29%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p521/bignum_inv_p521.S.o + [ 29%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/curve25519/bignum_mod_n25519.S.o + [ 29%] Building C object crypto/CMakeFiles/crypto_objects.dir/bn_extra/bn_asn1.c.o + [ 30%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/curve25519/bignum_neg_p25519.S.o + [ 30%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/curve25519/bignum_madd_n25519.S.o + [ 31%] Building C object crypto/CMakeFiles/crypto_objects.dir/bn_extra/convert.c.o + [ 31%] Building C object crypto/CMakeFiles/crypto_objects.dir/buf/buf.c.o + [ 31%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/curve25519/bignum_madd_n25519_alt.S.o + [ 31%] Building C object crypto/CMakeFiles/crypto_objects.dir/bytestring/asn1_compat.c.o + [ 32%] Building C object crypto/CMakeFiles/crypto_objects.dir/bytestring/ber.c.o + [ 32%] Building C object crypto/CMakeFiles/crypto_objects.dir/bytestring/cbb.c.o + [ 33%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/curve25519/edwards25519_decode.S.o + [ 33%] Building C object crypto/CMakeFiles/crypto_objects.dir/bytestring/cbs.c.o + [ 33%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/curve25519/edwards25519_decode_alt.S.o + [ 33%] Building C object crypto/CMakeFiles/crypto_objects.dir/bytestring/unicode.c.o + [ 34%] Building C object crypto/CMakeFiles/crypto_objects.dir/chacha/chacha.c.o + [ 34%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/curve25519/edwards25519_encode.S.o + [ 34%] Building C object crypto/CMakeFiles/crypto_objects.dir/cipher_extra/cipher_extra.c.o + [ 34%] Building C object crypto/CMakeFiles/crypto_objects.dir/cipher_extra/derive_key.c.o + [ 34%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/curve25519/edwards25519_scalarmulbase.S.o + [ 35%] Building C object crypto/CMakeFiles/crypto_objects.dir/cipher_extra/e_aesctrhmac.c.o + [ 35%] Building C object crypto/CMakeFiles/crypto_objects.dir/cipher_extra/e_aesgcmsiv.c.o + [ 36%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/curve25519/edwards25519_scalarmulbase_alt.S.o + [ 36%] Building C object crypto/CMakeFiles/crypto_objects.dir/cipher_extra/e_chacha20poly1305.c.o + [ 36%] Building C object crypto/CMakeFiles/crypto_objects.dir/cipher_extra/e_aes_cbc_hmac_sha1.c.o + [ 37%] Building C object crypto/CMakeFiles/crypto_objects.dir/cipher_extra/e_aes_cbc_hmac_sha256.c.o + [ 37%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/curve25519/edwards25519_scalarmuldouble.S.o + [ 37%] Building C object crypto/CMakeFiles/crypto_objects.dir/cipher_extra/e_des.c.o + [ 37%] Building C object crypto/CMakeFiles/crypto_objects.dir/cipher_extra/e_null.c.o + [ 37%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/curve25519/edwards25519_scalarmuldouble_alt.S.o + [ 38%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/curve25519/curve25519_x25519_byte.S.o + [ 38%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/curve25519/curve25519_x25519_byte_alt.S.o + [ 39%] Building C object crypto/CMakeFiles/crypto_objects.dir/cipher_extra/e_rc2.c.o + [ 39%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/curve25519/curve25519_x25519base_byte.S.o + [ 39%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/curve25519/curve25519_x25519base_byte_alt.S.o + [ 39%] Building C object crypto/CMakeFiles/crypto_objects.dir/cipher_extra/e_rc4.c.o + [ 39%] Building C object crypto/CMakeFiles/crypto_objects.dir/cipher_extra/e_tls.c.o + [ 40%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/fastmul/bignum_kmul_16_32.S.o + [ 40%] Building C object crypto/CMakeFiles/crypto_objects.dir/cipher_extra/tls_cbc.c.o + [ 40%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/fastmul/bignum_kmul_32_64.S.o + [ 41%] Building C object crypto/CMakeFiles/crypto_objects.dir/conf/conf.c.o + [ 41%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/fastmul/bignum_ksqr_16_32.S.o + [ 41%] Building C object crypto/CMakeFiles/crypto_objects.dir/console/console.c.o + [ 41%] Building C object crypto/CMakeFiles/crypto_objects.dir/crypto.c.o + [ 41%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/fastmul/bignum_ksqr_32_64.S.o + [ 42%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/fastmul/bignum_emontredc_8n.S.o + [ 43%] Building C object crypto/CMakeFiles/crypto_objects.dir/des/des.c.o + [ 43%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/generic/bignum_ge.S.o + [ 43%] Building C object crypto/CMakeFiles/crypto_objects.dir/dh_extra/params.c.o + [ 43%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/generic/bignum_mul.S.o + [ 43%] Building C object crypto/CMakeFiles/crypto_objects.dir/dh_extra/dh_asn1.c.o + [ 44%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/generic/bignum_optsub.S.o + [ 44%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/generic/bignum_sqr.S.o + [ 44%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/generic/bignum_copy_row_from_table.S.o + [ 44%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/generic/bignum_copy_row_from_table_8n.S.o + [ 45%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/generic/bignum_copy_row_from_table_16.S.o + [ 45%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/generic/bignum_copy_row_from_table_32.S.o + [ 45%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/sha3/sha3_keccak_f1600.S.o + [ 45%] Building C object crypto/CMakeFiles/crypto_objects.dir/digest_extra/digest_extra.c.o + [ 46%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/sha3/sha3_keccak4_f1600_alt.S.o + [ 47%] Building C object crypto/CMakeFiles/crypto_objects.dir/dsa/dsa.c.o + [ 47%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/sha3/sha3_keccak_f1600_alt.S.o + [ 47%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/sha3/sha3_keccak2_f1600.S.o + [ 47%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/sha3/sha3_keccak4_f1600_alt2.S.o + [ 48%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-to-be-imported/arm/aes/aes-xts-enc.S.o + [ 48%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-to-be-imported/arm/aes/aes-xts-dec.S.o + [ 48%] Building C object crypto/CMakeFiles/crypto_objects.dir/dsa/dsa_asn1.c.o + [ 48%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/ml_kem/mlkem/native/aarch64/src/intt.S.o + [ 48%] Building C object crypto/CMakeFiles/crypto_objects.dir/ecdh_extra/ecdh_extra.c.o + [ 48%] Building C object crypto/CMakeFiles/crypto_objects.dir/ecdsa_extra/ecdsa_asn1.c.o + [ 49%] Building C object crypto/CMakeFiles/crypto_objects.dir/ec_extra/ec_asn1.c.o + [ 50%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/ml_kem/mlkem/native/aarch64/src/ntt.S.o + [ 50%] Building C object crypto/CMakeFiles/crypto_objects.dir/ec_extra/ec_derive.c.o + [ 50%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/ml_kem/mlkem/native/aarch64/src/poly_mulcache_compute_asm.S.o + [ 51%] Building C object crypto/CMakeFiles/crypto_objects.dir/ec_extra/hash_to_curve.c.o + [ 51%] Building C object crypto/CMakeFiles/crypto_objects.dir/err/err.c.o + [ 51%] Building C object crypto/CMakeFiles/crypto_objects.dir/err_data.c.o + [ 51%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/ml_kem/mlkem/native/aarch64/src/poly_reduce_asm.S.o + [ 51%] Building C object crypto/CMakeFiles/crypto_objects.dir/engine/engine.c.o + [ 51%] Building C object crypto/CMakeFiles/crypto_objects.dir/evp_extra/evp_asn1.c.o + [ 51%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/ml_kem/mlkem/native/aarch64/src/poly_tobytes_asm.S.o + [ 52%] Building C object crypto/CMakeFiles/crypto_objects.dir/evp_extra/p_dh.c.o + [ 53%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/ml_kem/mlkem/native/aarch64/src/poly_tomont_asm.S.o + [ 53%] Building C object crypto/CMakeFiles/crypto_objects.dir/evp_extra/p_dh_asn1.c.o + [ 53%] Building C object crypto/CMakeFiles/crypto_objects.dir/evp_extra/p_dsa.c.o + [ 54%] Building C object crypto/CMakeFiles/crypto_objects.dir/evp_extra/p_dsa_asn1.c.o + [ 54%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/ml_kem/mlkem/native/aarch64/src/polyvec_basemul_acc_montgomery_cached_asm_k2.S.o + [ 54%] Building C object crypto/CMakeFiles/crypto_objects.dir/evp_extra/p_ec_asn1.c.o + [ 54%] Building C object crypto/CMakeFiles/crypto_objects.dir/evp_extra/p_ed25519_asn1.c.o + [ 54%] Building C object crypto/CMakeFiles/crypto_objects.dir/evp_extra/p_hmac_asn1.c.o + [ 54%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/ml_kem/mlkem/native/aarch64/src/polyvec_basemul_acc_montgomery_cached_asm_k3.S.o + [ 55%] Building C object crypto/CMakeFiles/crypto_objects.dir/evp_extra/p_kem_asn1.c.o + [ 56%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/ml_kem/mlkem/native/aarch64/src/polyvec_basemul_acc_montgomery_cached_asm_k4.S.o + [ 56%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/ml_kem/mlkem/native/aarch64/src/rej_uniform_asm.S.o + [ 56%] Building C object crypto/CMakeFiles/crypto_objects.dir/evp_extra/p_pqdsa_asn1.c.o + [ 56%] Building C object crypto/CMakeFiles/crypto_objects.dir/evp_extra/p_rsa_asn1.c.o + [ 57%] Building C object crypto/CMakeFiles/crypto_objects.dir/evp_extra/p_x25519.c.o + [ 57%] Building C object crypto/CMakeFiles/crypto_objects.dir/evp_extra/p_x25519_asn1.c.o + [ 57%] Building C object crypto/CMakeFiles/crypto_objects.dir/evp_extra/p_methods.c.o + [ 57%] Building C object crypto/CMakeFiles/crypto_objects.dir/evp_extra/print.c.o + [ 58%] Building C object crypto/CMakeFiles/crypto_objects.dir/evp_extra/scrypt.c.o + [ 58%] Building C object crypto/CMakeFiles/crypto_objects.dir/evp_extra/sign.c.o + [ 58%] Building C object crypto/CMakeFiles/crypto_objects.dir/ex_data.c.o + [ 59%] Building C object crypto/CMakeFiles/crypto_objects.dir/hpke/hpke.c.o + [ 59%] Building C object crypto/CMakeFiles/crypto_objects.dir/hrss/hrss.c.o + [ 59%] Building C object crypto/CMakeFiles/crypto_objects.dir/kyber/kyber512r3_ref.c.o + [ 59%] Building C object crypto/CMakeFiles/crypto_objects.dir/kyber/kyber768r3_ref.c.o + [ 60%] Building C object crypto/CMakeFiles/crypto_objects.dir/kyber/kyber1024r3_ref.c.o + [ 60%] Building C object crypto/CMakeFiles/crypto_objects.dir/kyber/pqcrystals_kyber_ref_common/fips202.c.o + [ 60%] Building C object crypto/CMakeFiles/crypto_objects.dir/kyber/kem_kyber.c.o + [ 60%] Building C object crypto/CMakeFiles/crypto_objects.dir/lhash/lhash.c.o + [ 61%] Building C object crypto/CMakeFiles/crypto_objects.dir/mem.c.o + [ 61%] Building C object crypto/CMakeFiles/crypto_objects.dir/obj/obj.c.o + [ 61%] Building C object crypto/CMakeFiles/crypto_objects.dir/obj/obj_xref.c.o + [ 62%] Building C object crypto/CMakeFiles/crypto_objects.dir/ocsp/ocsp_asn.c.o + [ 62%] Building C object crypto/CMakeFiles/crypto_objects.dir/ocsp/ocsp_client.c.o + [ 62%] Building C object crypto/CMakeFiles/crypto_objects.dir/ocsp/ocsp_extension.c.o + [ 62%] Building C object crypto/CMakeFiles/crypto_objects.dir/ocsp/ocsp_http.c.o + [ 63%] Building C object crypto/CMakeFiles/crypto_objects.dir/ocsp/ocsp_lib.c.o + [ 63%] Building C object crypto/CMakeFiles/crypto_objects.dir/ocsp/ocsp_print.c.o + [ 63%] Building C object crypto/CMakeFiles/crypto_objects.dir/ocsp/ocsp_server.c.o + [ 64%] Building C object crypto/CMakeFiles/crypto_objects.dir/ocsp/ocsp_verify.c.o + [ 64%] Building C object crypto/CMakeFiles/crypto_objects.dir/pem/pem_all.c.o + [ 64%] Building C object crypto/CMakeFiles/crypto_objects.dir/pem/pem_info.c.o + [ 64%] Building C object crypto/CMakeFiles/crypto_objects.dir/pem/pem_lib.c.o + [ 65%] Building C object crypto/CMakeFiles/crypto_objects.dir/pem/pem_oth.c.o + [ 65%] Building C object crypto/CMakeFiles/crypto_objects.dir/pem/pem_pkey.c.o + [ 65%] Building C object crypto/CMakeFiles/crypto_objects.dir/pem/pem_pk8.c.o + [ 66%] Building C object crypto/CMakeFiles/crypto_objects.dir/pem/pem_xaux.c.o + [ 66%] Building C object crypto/CMakeFiles/crypto_objects.dir/pem/pem_x509.c.o + [ 66%] Building C object crypto/CMakeFiles/crypto_objects.dir/pkcs7/bio/cipher.c.o + [ 66%] Building C object crypto/CMakeFiles/crypto_objects.dir/pkcs7/pkcs7.c.o + [ 67%] Building C object crypto/CMakeFiles/crypto_objects.dir/pkcs7/pkcs7_asn1.c.o + [ 67%] Building C object crypto/CMakeFiles/crypto_objects.dir/pkcs7/pkcs7_x509.c.o + [ 67%] Building C object crypto/CMakeFiles/crypto_objects.dir/pkcs8/pkcs8.c.o + [ 68%] Building C object crypto/CMakeFiles/crypto_objects.dir/pkcs8/pkcs8_x509.c.o + [ 68%] Building C object crypto/CMakeFiles/crypto_objects.dir/pkcs8/p5_pbev2.c.o + [ 68%] Building C object crypto/CMakeFiles/crypto_objects.dir/poly1305/poly1305.c.o + [ 68%] Building C object crypto/CMakeFiles/crypto_objects.dir/poly1305/poly1305_arm.c.o + [ 68%] Built target fipsmodule + [ 69%] Building C object crypto/CMakeFiles/crypto_objects.dir/pool/pool.c.o + [ 69%] Building C object crypto/CMakeFiles/crypto_objects.dir/poly1305/poly1305_vec.c.o + [ 69%] Building C object crypto/CMakeFiles/crypto_objects.dir/rand_extra/ccrandomgeneratebytes.c.o + [ 70%] Building C object crypto/CMakeFiles/crypto_objects.dir/rand_extra/deterministic.c.o + [ 70%] Building C object crypto/CMakeFiles/crypto_objects.dir/rand_extra/getentropy.c.o + [ 70%] Building C object crypto/CMakeFiles/crypto_objects.dir/rand_extra/rand_extra.c.o + [ 70%] Building C object crypto/CMakeFiles/crypto_objects.dir/rand_extra/snapsafe_fallback.c.o + [ 71%] Building C object crypto/CMakeFiles/crypto_objects.dir/rand_extra/urandom.c.o + [ 71%] Building C object crypto/CMakeFiles/crypto_objects.dir/rand_extra/windows.c.o + [ 71%] Building C object crypto/CMakeFiles/crypto_objects.dir/rc4/rc4.c.o + [ 71%] Building C object crypto/CMakeFiles/crypto_objects.dir/refcount_c11.c.o + [ 72%] Building C object crypto/CMakeFiles/crypto_objects.dir/refcount_lock.c.o + [ 72%] Building C object crypto/CMakeFiles/crypto_objects.dir/refcount_win.c.o + [ 72%] Building C object crypto/CMakeFiles/crypto_objects.dir/rsa_extra/rsa_asn1.c.o + [ 73%] Building C object crypto/CMakeFiles/crypto_objects.dir/rsa_extra/rsassa_pss_asn1.c.o + [ 73%] Building C object crypto/CMakeFiles/crypto_objects.dir/rsa_extra/rsa_crypt.c.o + [ 73%] Building C object crypto/CMakeFiles/crypto_objects.dir/rsa_extra/rsa_print.c.o + [ 73%] Building C object crypto/CMakeFiles/crypto_objects.dir/stack/stack.c.o + [ 74%] Building C object crypto/CMakeFiles/crypto_objects.dir/siphash/siphash.c.o + [ 74%] Building C object crypto/CMakeFiles/crypto_objects.dir/spake25519/spake25519.c.o + [ 74%] Building C object crypto/CMakeFiles/crypto_objects.dir/thread.c.o + [ 75%] Building C object crypto/CMakeFiles/crypto_objects.dir/thread_none.c.o + [ 75%] Building C object crypto/CMakeFiles/crypto_objects.dir/thread_pthread.c.o + [ 75%] Building C object crypto/CMakeFiles/crypto_objects.dir/thread_win.c.o + [ 75%] Building C object crypto/CMakeFiles/crypto_objects.dir/trust_token/pmbtoken.c.o + [ 76%] Building C object crypto/CMakeFiles/crypto_objects.dir/trust_token/trust_token.c.o + [ 76%] Building C object crypto/CMakeFiles/crypto_objects.dir/trust_token/voprf.c.o + [ 76%] Building C object crypto/CMakeFiles/crypto_objects.dir/ube/ube.c.o + [ 77%] Building C object crypto/CMakeFiles/crypto_objects.dir/ube/fork_detect.c.o + [ 77%] Building C object crypto/CMakeFiles/crypto_objects.dir/ube/snapsafe_detect.c.o + [ 77%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/a_digest.c.o + [ 77%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/a_sign.c.o + [ 78%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/a_verify.c.o + [ 78%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/algorithm.c.o + [ 78%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/asn1_gen.c.o + [ 79%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/by_dir.c.o + [ 79%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/by_file.c.o + [ 79%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/i2d_pr.c.o + [ 79%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/name_print.c.o + [ 80%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/policy.c.o + [ 80%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/rsa_pss.c.o + [ 80%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/t_crl.c.o + [ 80%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/t_req.c.o + [ 81%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/t_x509.c.o + [ 81%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/t_x509a.c.o + [ 81%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_akey.c.o + [ 82%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_akeya.c.o + [ 82%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_alt.c.o + [ 82%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_bcons.c.o + [ 82%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_bitst.c.o + [ 83%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_conf.c.o + [ 83%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_cpols.c.o + [ 83%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_crld.c.o + [ 84%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_enum.c.o + [ 84%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_extku.c.o + [ 84%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_genn.c.o + [ 84%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_ia5.c.o + [ 85%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_info.c.o + [ 85%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_int.c.o + [ 85%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_lib.c.o + [ 86%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_ncons.c.o + [ 86%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_ocsp.c.o + [ 86%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_pcons.c.o + [ 86%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_pmaps.c.o + [ 87%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_prn.c.o + [ 87%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_purp.c.o + [ 87%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_skey.c.o + [ 88%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_utl.c.o + [ 88%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x_algor.c.o + [ 88%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x_all.c.o + [ 88%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x_attrib.c.o + [ 89%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x_crl.c.o + [ 89%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x_exten.c.o + [ 89%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x_name.c.o + [ 90%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x_pubkey.c.o + [ 90%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x_req.c.o + [ 90%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x_sig.c.o + [ 90%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x_spki.c.o + [ 91%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x_val.c.o + [ 91%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x_x509.c.o + [ 91%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x_x509a.c.o + [ 91%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509_att.c.o + [ 92%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509_cmp.c.o + [ 92%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509_d2.c.o + [ 92%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509_def.c.o + [ 93%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509_ext.c.o + [ 93%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509_lu.c.o + [ 93%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509_obj.c.o + [ 93%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509_req.c.o + [ 94%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509_set.c.o + [ 94%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509_trs.c.o + [ 94%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509_txt.c.o + [ 95%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509_v3.c.o + [ 95%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509_vfy.c.o + [ 95%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509_vpm.c.o + [ 95%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509.c.o + [ 96%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509cset.c.o + [ 96%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509name.c.o + [ 96%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509rset.c.o + [ 97%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509spki.c.o + [ 97%] Building C object crypto/CMakeFiles/crypto_objects.dir/decrepit/bio/base64_bio.c.o + [ 97%] Building C object crypto/CMakeFiles/crypto_objects.dir/decrepit/blowfish/blowfish.c.o + [ 97%] Building C object crypto/CMakeFiles/crypto_objects.dir/decrepit/cast/cast.c.o + [ 98%] Building C object crypto/CMakeFiles/crypto_objects.dir/decrepit/cast/cast_tables.c.o + [ 98%] Building C object crypto/CMakeFiles/crypto_objects.dir/decrepit/cfb/cfb.c.o + [ 98%] Building C object crypto/CMakeFiles/crypto_objects.dir/decrepit/dh/dh_decrepit.c.o + [ 99%] Building C object crypto/CMakeFiles/crypto_objects.dir/decrepit/evp/evp_do_all.c.o + [ 99%] Building C object crypto/CMakeFiles/crypto_objects.dir/decrepit/obj/obj_decrepit.c.o + [ 99%] Building C object crypto/CMakeFiles/crypto_objects.dir/decrepit/ripemd/ripemd.c.o + [ 99%] Building C object crypto/CMakeFiles/crypto_objects.dir/decrepit/rsa/rsa_decrepit.c.o + [100%] Building C object crypto/CMakeFiles/crypto_objects.dir/decrepit/x509/x509_decrepit.c.o + [100%] Building ASM object crypto/CMakeFiles/crypto_objects.dir/chacha/chacha-armv8.S.o + [100%] Building ASM object crypto/CMakeFiles/crypto_objects.dir/test/trampoline-armv8.S.o + [100%] Building ASM object crypto/CMakeFiles/crypto_objects.dir/cipher_extra/chacha20_poly1305_armv8.S.o + [100%] Built target crypto_objects + [100%] Linking C static library libcrypto.a + [100%] Built target crypto + Install the project... + -- Install configuration: "RelWithDebInfo" + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/kdf.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/time.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/pem.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/nid.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/ssl3.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/ossl_typ.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/dtls1.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/asm_base.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/err.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/bn.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/ctrdrbg.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/experimental + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/experimental/kem_deterministic_api.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/blowfish.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/engine.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/bytestring.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/x509.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/asn1_mac.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/pool.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/ec_key.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/ui.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/base64.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/sha.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/asn1.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/chacha.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/opensslconf.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/arm_arch.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/bio.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/dh.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/digest.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/x509v3.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/conf.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/poly1305.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/hkdf.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/type_check.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/siphash.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/md5.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/x509_vfy.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/pkcs8.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/safestack.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/buf.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/obj.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/ecdsa.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/cipher.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/objects.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/pkcs12.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/crypto.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/opensslv.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/pkcs7.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/obj_mac.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/posix_time.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/buffer.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/ssl.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/thread.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/hpke.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/evp.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/e_os2.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/md4.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/hmac.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/service_indicator.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/aes.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/blake2.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/is_awslc.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/rc4.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/target.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/cpu.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/stack.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/des.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/ocsp.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/ec.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/hrss.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/ecdh.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/rand.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/aead.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/span.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/rsa.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/mem.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/ripemd.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/curve25519.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/tls1.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/dsa.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/x509v3_errors.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/trust_token.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/asn1t.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/cmac.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/evp_errors.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/lhash.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/ex_data.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/sshkdf.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/base.h + -- Up-to-date: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl + -- Up-to-date: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/experimental + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/boringssl_prefix_symbols_asm.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/boringssl_prefix_symbols_nasm.inc + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/boringssl_prefix_symbols.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/lib/pkgconfig/libcrypto.pc + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/lib/pkgconfig/libssl.pc + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/lib/pkgconfig/openssl.pc + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/lib/libcrypto.a + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/lib/crypto/cmake/crypto-config.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/lib/crypto/cmake/static/crypto-targets.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/lib/crypto/cmake/static/crypto-targets-relwithdebinfo.cmake + -- CMake 3.30.3 + -- Performing Test AWS_HAVE_GCC_OVERFLOW_MATH_EXTENSIONS + -- Performing Test AWS_HAVE_GCC_OVERFLOW_MATH_EXTENSIONS - Success + -- Performing Test AWS_HAVE_WINAPI_DESKTOP + -- Performing Test AWS_HAVE_WINAPI_DESKTOP - Failed + -- Performing Test AWS_ARCH_INTEL + -- Performing Test AWS_ARCH_INTEL - Failed + -- Performing Test AWS_ARCH_INTEL_X64 + -- Performing Test AWS_ARCH_INTEL_X64 - Failed + -- Performing Test AWS_ARCH_ARM64 + -- Performing Test AWS_ARCH_ARM64 - Success + -- Performing Test AWS_ARCH_ARM32 + -- Performing Test AWS_ARCH_ARM32 - Failed + -- Performing Test AWS_HAVE_GCC_INLINE_ASM + -- Performing Test AWS_HAVE_GCC_INLINE_ASM - Success + -- Performing Test AWS_HAVE_AUXV + -- Performing Test AWS_HAVE_AUXV - Failed + -- Performing Test AWS_HAVE_EXECINFO + -- Performing Test AWS_HAVE_EXECINFO - Success + -- Performing Test AWS_HAVE_LINUX_IF_LINK_H + -- Performing Test AWS_HAVE_LINUX_IF_LINK_H - Failed + -- Performing Test HAVE_MTUNE_NEOVERSE_V1 + -- Performing Test HAVE_MTUNE_NEOVERSE_V1 - Success + -- Performing Test HAVE_M_AVX2_FLAG + -- Performing Test HAVE_M_AVX2_FLAG - Success + -- Performing Test HAVE_M_AVX512_FLAG + -- Performing Test HAVE_M_AVX512_FLAG - Success + -- Performing Test AWS_HAVE_AVX2_INTRINSICS + -- Performing Test AWS_HAVE_AVX2_INTRINSICS - Failed + -- Performing Test AWS_HAVE_AVX512_INTRINSICS + -- Performing Test AWS_HAVE_AVX512_INTRINSICS - Failed + -- Performing Test AWS_HAVE_MM256_EXTRACT_EPI64 + -- Performing Test AWS_HAVE_MM256_EXTRACT_EPI64 - Failed + -- Performing Test AWS_HAVE_CLMUL + -- Performing Test AWS_HAVE_CLMUL - Failed + -- Performing Test AWS_HAVE_ARM32_CRC + -- Performing Test AWS_HAVE_ARM32_CRC - Success + -- Performing Test AWS_HAVE_ARMv8_1 + -- Performing Test AWS_HAVE_ARMv8_1 - Success + -- Performing Test CMAKE_HAVE_LIBC_PTHREAD + -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success + -- Found Threads: TRUE + -- Looking for pthread_mutexattr_init + -- Looking for pthread_mutexattr_init - not found + -- Performing Test HAS_FPIC_FLAG + -- Performing Test HAS_FPIC_FLAG - Success + -- Performing Test HAS_MOUTLINE_ATOMICS + -- Performing Test HAS_MOUTLINE_ATOMICS - Success + -- Performing Test HAS_64BIT_FILE_OFFSET_BY_DEFAULT + -- Performing Test HAS_64BIT_FILE_OFFSET_BY_DEFAULT - Success + -- Looking for fseeko + -- Looking for fseeko - found + -- Looking for stdint.h + -- Looking for stdint.h - found + -- Looking for stdbool.h + -- Looking for stdbool.h - found + -- Performing Test HAS_WGNU + -- Performing Test HAS_WGNU - Success + -- Performing Test NO_GNU_EXPR + -- Performing Test NO_GNU_EXPR - Success + -- Performing Test HAVE_SYSCONF + -- Performing Test HAVE_SYSCONF - Success + -- Packaging is only supported on Linux + -- CMAKE_OSX_SYSROOT is defined and set to: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk this value + -- Using prebuilt libcrypto from AWS-LC + -- FOUND AWS-LC CRYPTO cmake config - static + -- Configuring done (23.1s) + -- Generating done (0.2s) + -- Build files have been written to: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps + [ 1%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/allocator.c.o + [ 1%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/arch/arm/darwin/cpuid.c.o + [ 1%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/codegen.c.o + [ 2%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/condition_variable.c.o + [ 3%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/array_list.c.o + [ 4%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/cache.c.o + [ 4%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/byte_buf.c.o + [ 4%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/assert.c.o + [ 4%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/allocator_sba.c.o + [ 4%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/common.c.o + [ 5%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/command_line_parser.c.o + [ 5%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/cbor.c.o + [ 5%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/date_time.c.o + [ 5%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/device_random.c.o + [ 6%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/encoding.c.o + [ 6%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/error.c.o + [ 6%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/cJSON.c.o + [ 7%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/allocators.c.o + [ 7%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor.c.o + [ 7%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor/arrays.c.o + [ 8%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor/bytestrings.c.o + [ 8%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor/callbacks.c.o + [ 8%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor/common.c.o + [ 9%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor/encoding.c.o + [ 9%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor/floats_ctrls.c.o + [ 10%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor/internal/builder_callbacks.c.o + [ 10%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor/internal/encoders.c.o + [ 10%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor/internal/loaders.c.o + [ 11%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor/internal/memory_utils.c.o + [ 11%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor/internal/stack.c.o + [ 11%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor/internal/unicode.c.o + [ 12%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor/ints.c.o + [ 12%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor/maps.c.o + [ 12%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor/serialization.c.o + [ 13%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor/streaming.c.o + [ 13%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor/strings.c.o + [ 13%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor/tags.c.o + [ 14%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/fifo_cache.c.o + [ 14%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/file.c.o + [ 15%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/hash_table.c.o + [ 15%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/host_utils.c.o + [ 15%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/json.c.o + [ 16%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/lifo_cache.c.o + [ 16%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/linked_hash_table.c.o + [ 16%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/log_channel.c.o + [ 17%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/log_formatter.c.o + [ 17%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/log_writer.c.o + [ 17%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/logging.c.o + [ 18%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/lru_cache.c.o + [ 18%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/math.c.o + [ 18%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/memtrace.c.o + [ 19%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/platform_fallback_stubs/file_direct_io.c.o + [ 19%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/platform_fallback_stubs/system_info.c.o + [ 20%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/posix/clock.c.o + [ 20%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/posix/condition_variable.c.o + [ 20%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/posix/cross_process_lock.c.o + [ 21%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/posix/device_random.c.o + [ 21%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/posix/environment.c.o + [ 21%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/posix/file.c.o + [ 22%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/posix/mutex.c.o + [ 22%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/posix/process.c.o + [ 22%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/posix/rw_lock.c.o + [ 23%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/posix/system_info.c.o + [ 23%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/posix/system_resource_utils.c.o + [ 24%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/posix/thread.c.o + [ 24%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/posix/time.c.o + [ 24%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/priority_queue.c.o + [ 25%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/process_common.c.o + [ 25%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/ref_count.c.o + [ 25%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/ring_buffer.c.o + [ 25%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/system_info.c.o + [ 26%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/statistics.c.o + [ 26%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/string.c.o + [ 27%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/task_scheduler.c.o + [ 27%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/thread_scheduler.c.o + [ 27%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/thread_shared.c.o + [ 28%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/uri.c.o + [ 28%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/uuid.c.o + [ 29%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/xml_parser.c.o + [ 29%] Linking C static library libaws-c-common.a + [ 29%] Built target aws-c-common + [ 29%] Building C object aws-c-sdkutils/CMakeFiles/aws-c-sdkutils.dir/source/aws_profile.c.o + [ 29%] Building C object aws-c-sdkutils/CMakeFiles/aws-c-sdkutils.dir/source/endpoints_ruleset.c.o + [ 30%] Building C object aws-c-sdkutils/CMakeFiles/aws-c-sdkutils.dir/source/endpoints_types_impl.c.o + [ 30%] Building C object aws-c-sdkutils/CMakeFiles/aws-c-sdkutils.dir/source/endpoints_regex.c.o + [ 31%] Building C object aws-c-sdkutils/CMakeFiles/aws-c-sdkutils.dir/source/endpoints_rule_engine.c.o + [ 31%] Building C object aws-c-compression/CMakeFiles/aws-c-compression.dir/source/compression.c.o + [ 31%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/cal.c.o + [ 31%] Building C object aws-c-sdkutils/CMakeFiles/aws-c-sdkutils.dir/source/endpoints_standard_lib.c.o + [ 31%] Building C object aws-c-sdkutils/CMakeFiles/aws-c-sdkutils.dir/source/endpoints_util.c.o + [ 31%] Building C object aws-c-sdkutils/CMakeFiles/aws-c-sdkutils.dir/source/resource_name.c.o + [ 31%] Building C object aws-checksums/CMakeFiles/aws-checksums.dir/source/checksums.c.o + [ 32%] Building C object aws-c-sdkutils/CMakeFiles/aws-c-sdkutils.dir/source/partitions.c.o + [ 33%] Building C object aws-c-compression/CMakeFiles/aws-c-compression.dir/source/huffman.c.o + [ 33%] Building C object aws-c-sdkutils/CMakeFiles/aws-c-sdkutils.dir/source/sdkutils.c.o + [ 33%] Building C object aws-c-compression/CMakeFiles/aws-c-compression.dir/source/huffman_testing.c.o + [ 34%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/darwin/commoncrypto_aes.c.o + [ 35%] Building C object aws-checksums/CMakeFiles/aws-checksums.dir/source/crc64.c.o + [ 35%] Building C object aws-checksums/CMakeFiles/aws-checksums.dir/source/crc32.c.o + [ 35%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/darwin/commoncrypto_hmac.c.o + [ 35%] Building C object aws-checksums/CMakeFiles/aws-checksums.dir/source/crc64_sw.c.o + [ 35%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/darwin/commoncrypto_md5.c.o + [ 35%] Building C object aws-checksums/CMakeFiles/aws-checksums.dir/source/crc_sw.c.o + [ 36%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/darwin/commoncrypto_platform_init.c.o + [ 37%] Building C object aws-checksums/CMakeFiles/aws-checksums.dir/source/arm/crc32c_arm.c.o + [ 37%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/darwin/commoncrypto_sha1.c.o + [ 37%] Linking C static library libaws-c-compression.a + [ 38%] Linking C static library libaws-c-sdkutils.a + [ 39%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/darwin/commoncrypto_sha256.c.o + [ 39%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/darwin/commoncrypto_sha512.c.o + [ 39%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/darwin/securityframework_ecc.c.o + [ 40%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/darwin/securityframework_rsa.c.o + [ 40%] Building C object aws-checksums/CMakeFiles/aws-checksums.dir/source/arm/crc64_arm.c.o + [ 40%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/der.c.o + [ 40%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/ecc.c.o + [ 41%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/ed25519.c.o + [ 41%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/hash.c.o + [ 41%] Built target aws-c-compression + [ 41%] Built target aws-c-sdkutils + [ 41%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/hmac.c.o + [ 42%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/rsa.c.o + [ 42%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/shared/ed25519.c.o + [ 43%] Linking C static library libaws-checksums.a + [ 43%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/shared/lccrypto_common.c.o + [ 44%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/symmetric_cipher.c.o + [ 44%] Built target aws-checksums + [ 44%] Linking C static library libaws-c-cal.a + [ 44%] Built target aws-c-cal + [ 44%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/alpn_handler.c.o + [ 45%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/async_stream.c.o + [ 45%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/bsd/kqueue_event_loop.c.o + [ 45%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/channel.c.o + [ 46%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/channel_bootstrap.c.o + [ 46%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/event_loop.c.o + [ 47%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/darwin/nw_socket.c.o + [ 47%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/darwin/dispatch_queue_event_loop.c.o + [ 48%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/exponential_backoff_retry_strategy.c.o + [ 48%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/future.c.o + [ 48%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/darwin/darwin_pki_utils.c.o + [ 48%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/darwin/secure_transport_tls_channel_handler.c.o + [ 49%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/host_resolver.c.o + [ 49%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/io.c.o + [ 49%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/message_pool.c.o + [ 50%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/no_retry_strategy.c.o + [ 50%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/pem.c.o + [ 50%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/pkcs11_lib.c.o + [ 51%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/pkcs11_tls_op_handler.c.o + [ 51%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/posix/host_resolver.c.o + [ 51%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/posix/pipe.c.o + [ 52%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/posix/shared_library.c.o + [ 52%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/posix/socket.c.o + [ 52%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/retry_strategy.c.o + [ 53%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/socket.c.o + [ 53%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/socket_channel_handler.c.o + [ 54%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/socket_shared.c.o + [ 54%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/standard_retry_strategy.c.o + [ 54%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/statistics.c.o + [ 55%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/stream.c.o + [ 55%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/tls_channel_handler.c.o + [ 55%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/tls_channel_handler_shared.c.o + [ 56%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/tracing.c.o + [ 56%] Linking C static library libaws-c-io.a + [ 56%] Built target aws-c-io + [ 57%] Building C object aws-c-event-stream/CMakeFiles/aws-c-event-stream.dir/source/event_stream.c.o + [ 57%] Building C object aws-c-event-stream/CMakeFiles/aws-c-event-stream.dir/source/event_stream_channel_handler.c.o + [ 58%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/h1_encoder.c.o + [ 59%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/connection_monitor.c.o + [ 59%] Building C object aws-c-event-stream/CMakeFiles/aws-c-event-stream.dir/source/event_stream_rpc.c.o + [ 60%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/connection.c.o + [ 60%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/h1_connection.c.o + [ 61%] Building C object aws-c-event-stream/CMakeFiles/aws-c-event-stream.dir/source/event_stream_rpc_client.c.o + [ 61%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/connection_manager.c.o + [ 61%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/h1_decoder.c.o + [ 61%] Building C object aws-c-event-stream/CMakeFiles/aws-c-event-stream.dir/source/event_stream_rpc_server.c.o + [ 61%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/h1_stream.c.o + [ 61%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/h2_connection.c.o + [ 62%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/h2_decoder.c.o + [ 62%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/h2_frames.c.o + [ 62%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/h2_stream.c.o + [ 63%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/hpack.c.o + [ 63%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/hpack_decoder.c.o + [ 63%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/hpack_encoder.c.o + [ 64%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/hpack_huffman_static.c.o + [ 64%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/http.c.o + [ 65%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/http2_stream_manager.c.o + [ 65%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/no_proxy.c.o + [ 65%] Linking C static library libaws-c-event-stream.a + [ 65%] Built target aws-c-event-stream + [ 65%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/proxy_connection.c.o + [ 66%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/proxy_strategy.c.o + [ 66%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/random_access_set.c.o + [ 66%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/request_response.c.o + [ 67%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/statistics.c.o + [ 67%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/strutil.c.o + [ 67%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/websocket.c.o + [ 68%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/websocket_bootstrap.c.o + [ 68%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/websocket_decoder.c.o + [ 69%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/websocket_encoder.c.o + [ 69%] Linking C static library libaws-c-http.a + [ 69%] Built target aws-c-http + [ 69%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/auth.c.o + [ 69%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/credentials_provider_cached.c.o + [ 69%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/credentials_provider_default_chain.c.o + [ 70%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/credentials_provider_anonymous.c.o + [ 70%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/credentials_provider_chain.c.o + [ 71%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/aws_profile.c.o + [ 71%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/credentials.c.o + [ 71%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/client.c.o + [ 72%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/credentials_provider_cognito.c.o + [ 72%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/aws_imds_client.c.o + [ 72%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/credentials_provider_delegate.c.o + [ 72%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/aws_signing.c.o + [ 73%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/client_channel_handler.c.o + [ 74%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/credentials_provider_ecs.c.o + [ 74%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/client_impl_shared.c.o + [ 74%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/fixed_header.c.o + [ 75%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/mqtt.c.o + [ 75%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/mqtt311_decoder.c.o + [ 75%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/credentials_provider_environment.c.o + [ 76%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/mqtt311_listener.c.o + [ 77%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/credentials_provider_imds.c.o + [ 77%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/mqtt_subscription_set.c.o + [ 77%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/credentials_provider_process.c.o + [ 77%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/credentials_provider_profile.c.o + [ 78%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/credentials_provider_sso.c.o + [ 78%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/credentials_provider_static.c.o + [ 78%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/credentials_provider_sts.c.o + [ 78%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/packets.c.o + [ 79%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/credentials_provider_sts_web_identity.c.o + [ 80%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/request-response/protocol_adapter.c.o + [ 80%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/request-response/request_response_client.c.o + [ 80%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/credentials_provider_x509.c.o + [ 80%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/request-response/request_response_subscription_set.c.o + [ 80%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/credentials_utils.c.o + [ 81%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/key_derivation.c.o + [ 81%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/signable.c.o + [ 82%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/request-response/subscription_manager.c.o + [ 82%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/shared.c.o + [ 82%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/topic_tree.c.o + [ 83%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/v5/mqtt5_callbacks.c.o + [ 83%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/signable_chunk.c.o + [ 83%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/v5/mqtt5_client.c.o + [ 84%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/signable_http_request.c.o + [ 84%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/signable_trailer.c.o + [ 85%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/v5/mqtt5_decoder.c.o + [ 86%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/signing.c.o + [ 86%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/v5/mqtt5_encoder.c.o + [ 86%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/v5/mqtt5_listener.c.o + [ 86%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/signing_config.c.o + [ 86%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/signing_result.c.o + [ 87%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/v5/mqtt5_options_storage.c.o + [ 88%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/sigv4_http_request.c.o + [ 88%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/v5/mqtt5_to_mqtt3_adapter.c.o + [ 88%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/v5/mqtt5_topic_alias.c.o + [ 88%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/sso_token_utils.c.o + [ 89%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/v5/mqtt5_types.c.o + [ 89%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/token_provider_sso_profile.c.o + [ 90%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/token_provider_sso_session.c.o + [ 90%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/v5/mqtt5_utils.c.o + [ 90%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/v5/rate_limiters.c.o + [ 90%] Linking C static library libaws-c-auth.a + [ 91%] Linking C static library libaws-c-mqtt.a + [ 91%] Built target aws-c-auth + [ 91%] Built target aws-c-mqtt + [ 91%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3.c.o + [ 91%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_buffer_pool.c.o + [ 92%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_auto_ranged_put.c.o + [ 92%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_checksums.c.o + [ 92%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_client.c.o + [ 92%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_auto_ranged_get.c.o + [ 92%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_default_meta_request.c.o + [ 93%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_chunk_stream.c.o + [ 94%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_checksum_context.c.o + [ 94%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_copy_object.c.o + [ 95%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_default_buffer_pool.c.o + [ 95%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_checksum_stream.c.o + [ 95%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_endpoint.c.o + [ 96%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_list_objects.c.o + [ 96%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_list_parts.c.o + [ 96%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_meta_request.c.o + [ 97%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_paginator.c.o + [ 97%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_parallel_input_stream.c.o + [ 98%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_part_streaming_input_stream.c.o + [ 98%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_platform_info.c.o + [ 98%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_request.c.o + [ 99%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_request_messages.c.o + [ 99%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_util.c.o + [ 99%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3express_credentials_provider.c.o + [100%] Linking C static library libaws-c-s3.a + [100%] Built target aws-c-s3 + Install the project... + -- Install configuration: "RelWithDebInfo" + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/kdf.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/time.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/pem.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/nid.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/ssl3.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/ossl_typ.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/dtls1.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/asm_base.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/err.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/bn.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/ctrdrbg.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/experimental + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/experimental/kem_deterministic_api.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/blowfish.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/engine.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/bytestring.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/x509.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/asn1_mac.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/pool.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/ec_key.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/ui.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/base64.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/sha.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/asn1.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/chacha.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/opensslconf.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/arm_arch.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/bio.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/dh.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/digest.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/boringssl_prefix_symbols_asm.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/x509v3.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/boringssl_prefix_symbols_nasm.inc + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/conf.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/poly1305.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/hkdf.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/type_check.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/siphash.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/md5.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/x509_vfy.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/pkcs8.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/safestack.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/buf.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/obj.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/ecdsa.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/cipher.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/objects.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/pkcs12.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/crypto.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/opensslv.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/pkcs7.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/obj_mac.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/posix_time.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/buffer.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/ssl.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/thread.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/hpke.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/evp.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/e_os2.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/md4.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/hmac.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/boringssl_prefix_symbols.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/service_indicator.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/aes.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/blake2.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/is_awslc.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/rc4.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/target.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/cpu.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/stack.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/des.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/ocsp.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/ec.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/hrss.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/ecdh.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/rand.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/aead.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/span.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/rsa.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/mem.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/ripemd.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/curve25519.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/tls1.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/dsa.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/x509v3_errors.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/trust_token.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/asn1t.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/cmac.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/evp_errors.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/lhash.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/ex_data.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/sshkdf.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/base.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/libcrypto.a + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/crypto + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/crypto/cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/crypto/cmake/crypto-config.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/crypto/cmake/static + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/crypto/cmake/static/crypto-targets-relwithdebinfo.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/crypto/cmake/static/crypto-targets.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/pkgconfig + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/pkgconfig/openssl.pc + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/pkgconfig/libssl.pc + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/pkgconfig/libcrypto.pc + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/allocator.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/array_list.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/array_list.inl + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/assert.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/atomics.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/atomics.inl + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/atomics_fallback.inl + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/atomics_gnu.inl + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/atomics_gnu_old.inl + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/atomics_msvc.inl + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/byte_buf.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/byte_order.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/byte_order.inl + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/cache.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/cbor.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/clock.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/clock.inl + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/command_line_parser.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/common.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/condition_variable.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/cpuid.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/cross_process_lock.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/date_time.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/device_random.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/encoding.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/encoding.inl + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/environment.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/error.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/error.inl + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/exports.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/fifo_cache.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/file.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/hash_table.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/host_utils.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/json.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/lifo_cache.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/linked_hash_table.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/linked_list.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/linked_list.inl + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/log_channel.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/log_formatter.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/log_writer.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/logging.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/lru_cache.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/macros.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/math.cbmc.inl + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/math.fallback.inl + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/math.gcc_arm64_asm.inl + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/math.gcc_builtin.inl + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/math.gcc_overflow.inl + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/math.gcc_x64_asm.inl + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/math.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/math.inl + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/math.msvc_x64.inl + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/mutex.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/package.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/platform.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/predicates.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/priority_queue.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/process.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/ref_count.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/ring_buffer.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/ring_buffer.inl + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/rw_lock.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/shutdown_types.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/statistics.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/stdbool.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/stdint.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/string.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/string.inl + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/system_info.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/system_resource_util.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/task_scheduler.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/thread.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/thread_scheduler.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/time.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/uri.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/uuid.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/xml_parser.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/zero.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/zero.inl + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/posix/common.inl + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/config.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/testing/aws_test_harness.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/external/ittnotify.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/libaws-c-common.a + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-common/static/aws-c-common-targets.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-common/static/aws-c-common-targets-relwithdebinfo.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-common/aws-c-common-config.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-common/modules/AwsCFlags.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-common/modules/AwsCheckHeaders.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-common/modules/AwsSharedLibSetup.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-common/modules/AwsTestHarness.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-common/modules/AwsLibFuzzer.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-common/modules/AwsSanitizers.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-common/modules/AwsSIMD.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-common/modules/AwsFindPackage.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-common/modules/AwsFeatureTests.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-common/modules/AwsCRuntime.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/libaws-c-sdkutils.a + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/sdkutils/aws_profile.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/sdkutils/endpoints_rule_engine.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/sdkutils/exports.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/sdkutils/partitions.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/sdkutils/resource_name.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/sdkutils/sdkutils.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-sdkutils/static/aws-c-sdkutils-targets.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-sdkutils/static/aws-c-sdkutils-targets-relwithdebinfo.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-sdkutils/aws-c-sdkutils-config.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/libaws-c-cal.a + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/cal/cal.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/cal/ecc.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/cal/ed25519.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/cal/exports.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/cal/hash.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/cal/hmac.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/cal/rsa.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/cal/symmetric_cipher.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-cal/static/aws-c-cal-targets.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-cal/static/aws-c-cal-targets-relwithdebinfo.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-cal/aws-c-cal-config.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-cal/modules/Findcrypto.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/libaws-c-io.a + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/async_stream.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/channel.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/channel_bootstrap.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/event_loop.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/exports.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/file_utils.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/future.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/host_resolver.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/io.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/logging.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/message_pool.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/pem.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/pipe.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/pkcs11.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/retry_strategy.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/shared_library.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/socket.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/socket_channel_handler.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/statistics.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/stream.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/tls_channel_handler.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/uri.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/testing/async_stream_tester.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/testing/io_testing_channel.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/testing/stream_tester.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-io/static/aws-c-io-targets.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-io/static/aws-c-io-targets-relwithdebinfo.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-io/aws-c-io-config.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/libaws-checksums.a + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/checksums/checksums.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/checksums/crc.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/checksums/exports.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-checksums/static/aws-checksums-targets.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-checksums/static/aws-checksums-targets-relwithdebinfo.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-checksums/aws-checksums-config.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/libaws-c-compression.a + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/compression/compression.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/compression/exports.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/compression/huffman.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-compression/static/aws-c-compression-targets.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-compression/static/aws-c-compression-targets-relwithdebinfo.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-compression/aws-c-compression-config.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/libaws-c-event-stream.a + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/event-stream/event_stream.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/event-stream/event_stream_channel_handler.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/event-stream/event_stream_exports.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/event-stream/event_stream_rpc.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/event-stream/event_stream_rpc_client.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/event-stream/event_stream_rpc_server.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-event-stream/static/aws-c-event-stream-targets.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-event-stream/static/aws-c-event-stream-targets-relwithdebinfo.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-event-stream/aws-c-event-stream-config.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/libaws-c-http.a + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/http/connection.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/http/connection_manager.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/http/exports.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/http/http.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/http/http2_stream_manager.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/http/proxy.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/http/request_response.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/http/server.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/http/statistics.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/http/status_code.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/http/websocket.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-http/static/aws-c-http-targets.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-http/static/aws-c-http-targets-relwithdebinfo.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-http/aws-c-http-config.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/libaws-c-auth.a + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/auth/auth.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/auth/aws_imds_client.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/auth/credentials.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/auth/exports.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/auth/signable.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/auth/signing.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/auth/signing_config.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/auth/signing_result.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-auth/static/aws-c-auth-targets.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-auth/static/aws-c-auth-targets-relwithdebinfo.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-auth/aws-c-auth-config.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/libaws-c-mqtt.a + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/mqtt/client.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/mqtt/exports.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/mqtt/mqtt.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/mqtt/v5/mqtt5_client.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/mqtt/v5/mqtt5_listener.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/mqtt/v5/mqtt5_packet_storage.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/mqtt/v5/mqtt5_types.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/mqtt/request-response/request_response_client.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/mqtt/private/mqtt_client_test_helper.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-mqtt/static/aws-c-mqtt-targets.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-mqtt/static/aws-c-mqtt-targets-relwithdebinfo.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-mqtt/aws-c-mqtt-config.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/libaws-c-s3.a + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/s3/exports.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/s3/s3.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/s3/s3_buffer_pool.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/s3/s3_client.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/s3/s3_endpoint_resolver.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/s3/s3express_credentials_provider.h + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-s3/static/aws-c-s3-targets.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-s3/static/aws-c-s3-targets-relwithdebinfo.cmake + -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-s3/aws-c-s3-config.cmake + > /opt/homebrew/bin/cmake -H/Users/musatkd/dev/aws-crt-python/crt -B/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps -DCMAKE_INSTALL_PREFIX=/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install -DCMAKE_BUILD_TYPE=RelWithDebInfo -DAWS_USE_LIBCRYPTO_TO_SUPPORT_ED25519_EVERYWHERE=ON -DCMAKE_OSX_DEPLOYMENT_TARGET=14.4 + > /opt/homebrew/bin/cmake --build /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps --config RelWithDebInfo --target install + foo + ['clang', '-bundle', '-undefined', 'dynamic_lookup', '-L/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib', '-L/Users/musatkd/.pyenv/versions/3.11.9/lib', '-Wl,-search_paths_first', '-L/opt/homebrew/opt/readline/lib', '-L/opt/homebrew/opt/readline/lib', '-L/Users/musatkd/.pyenv/versions/3.11.9/lib', '-Wl,-rpath,/Users/musatkd/.pyenv/versions/3.11.9/lib', '-L/opt/homebrew/lib', '-Wl,-rpath,/opt/homebrew/lib', '-L/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib', '-L/opt/homebrew/opt/readline/lib', '-L/opt/homebrew/opt/readline/lib', '-L/Users/musatkd/.pyenv/versions/3.11.9/lib', '-Wl,-rpath,/Users/musatkd/.pyenv/versions/3.11.9/lib', '-L/opt/homebrew/lib', '-Wl,-rpath,/opt/homebrew/lib', '-L/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib'] + building '_awscrt' extension + creating /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source + clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/auth_credentials.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/auth_credentials.o -Wno-strict-aliasing -std=gnu99 + clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/auth_signer.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/auth_signer.o -Wno-strict-aliasing -std=gnu99 + clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/auth_signing_config.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/auth_signing_config.o -Wno-strict-aliasing -std=gnu99 + clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/cbor.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/cbor.o -Wno-strict-aliasing -std=gnu99 + clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/common.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/common.o -Wno-strict-aliasing -std=gnu99 + clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/crc.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/crc.o -Wno-strict-aliasing -std=gnu99 + clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/crypto.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/crypto.o -Wno-strict-aliasing -std=gnu99 + clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/event_stream_headers.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/event_stream_headers.o -Wno-strict-aliasing -std=gnu99 + clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/event_stream_rpc_client_connection.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/event_stream_rpc_client_connection.o -Wno-strict-aliasing -std=gnu99 + clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/event_stream_rpc_client_continuation.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/event_stream_rpc_client_continuation.o -Wno-strict-aliasing -std=gnu99 + clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/http_connection.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/http_connection.o -Wno-strict-aliasing -std=gnu99 + clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/http_headers.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/http_headers.o -Wno-strict-aliasing -std=gnu99 + clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/http_message.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/http_message.o -Wno-strict-aliasing -std=gnu99 + clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/http_proxy.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/http_proxy.o -Wno-strict-aliasing -std=gnu99 + clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/http_stream.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/http_stream.o -Wno-strict-aliasing -std=gnu99 + clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/io.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/io.o -Wno-strict-aliasing -std=gnu99 + clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/module.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/module.o -Wno-strict-aliasing -std=gnu99 + clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/mqtt5_client.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/mqtt5_client.o -Wno-strict-aliasing -std=gnu99 + clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/mqtt_client.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/mqtt_client.o -Wno-strict-aliasing -std=gnu99 + clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/mqtt_client_connection.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/mqtt_client_connection.o -Wno-strict-aliasing -std=gnu99 + clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/mqtt_request_response.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/mqtt_request_response.o -Wno-strict-aliasing -std=gnu99 + clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/pkcs11_lib.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/pkcs11_lib.o -Wno-strict-aliasing -std=gnu99 + clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/s3_client.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/s3_client.o -Wno-strict-aliasing -std=gnu99 + clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/s3_meta_request.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/s3_meta_request.o -Wno-strict-aliasing -std=gnu99 + clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/websocket.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/websocket.o -Wno-strict-aliasing -std=gnu99 + clang -bundle -undefined dynamic_lookup -L/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib -L/Users/musatkd/.pyenv/versions/3.11.9/lib -Wl,-search_paths_first -L/opt/homebrew/opt/readline/lib -L/opt/homebrew/opt/readline/lib -L/Users/musatkd/.pyenv/versions/3.11.9/lib -Wl,-rpath,/Users/musatkd/.pyenv/versions/3.11.9/lib -L/opt/homebrew/lib -Wl,-rpath,/opt/homebrew/lib -L/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib -L/opt/homebrew/opt/readline/lib -L/opt/homebrew/opt/readline/lib -L/Users/musatkd/.pyenv/versions/3.11.9/lib -Wl,-rpath,/Users/musatkd/.pyenv/versions/3.11.9/lib -L/opt/homebrew/lib -Wl,-rpath,/opt/homebrew/lib -L/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/auth_credentials.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/auth_signer.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/auth_signing_config.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/cbor.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/common.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/crc.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/crypto.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/event_stream_headers.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/event_stream_rpc_client_connection.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/event_stream_rpc_client_continuation.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/http_connection.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/http_headers.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/http_message.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/http_proxy.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/http_stream.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/io.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/module.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/mqtt5_client.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/mqtt_client.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/mqtt_client_connection.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/mqtt_request_response.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/pkcs11_lib.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/s3_client.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/s3_meta_request.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/websocket.o -L/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib -L/Users/musatkd/.pyenv/versions/3.11.9/lib -laws-c-s3 -laws-c-mqtt -laws-c-auth -laws-c-http -laws-c-event-stream -laws-c-compression -laws-checksums -laws-c-io -laws-c-cal -laws-c-sdkutils -laws-c-common -lcrypto -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmp6lc9g4v0.build-lib/_awscrt.abi3.so -framework Security + ld: warning: duplicate -rpath '/Users/musatkd/.pyenv/versions/3.11.9/lib' ignored + ld: warning: duplicate -rpath '/opt/homebrew/lib' ignored + copying /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmp6lc9g4v0.build-lib/_awscrt.abi3.so -> + running egg_info + creating /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/awscrt.egg-info + writing /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/awscrt.egg-info/PKG-INFO + writing dependency_links to /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/awscrt.egg-info/dependency_links.txt + writing requirements to /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/awscrt.egg-info/requires.txt + writing top-level names to /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/awscrt.egg-info/top_level.txt + writing manifest file '/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/awscrt.egg-info/SOURCES.txt' + reading manifest file '/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/awscrt.egg-info/SOURCES.txt' + reading manifest template 'MANIFEST.in' + warning: no previously-included files matching '.travis*' found anywhere in distribution + warning: no previously-included files matching '.travis/**' found anywhere in distribution + no previously-included directories found matching 'crt/aws-c-s3/benchmarks' + no previously-included directories found matching 'crt/aws-lc/third_party/jitterentropy/tests' + no previously-included directories found matching 'crt/aws-lc/third_party/jitterentropy/doc' + adding license file 'LICENSE' + adding license file 'NOTICE' + writing manifest file '/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/awscrt.egg-info/SOURCES.txt' + Editable install will be performed using a meta path finder. + + Options like `package-data`, `include/exclude-package-data` or + `packages.find.exclude/include` may have no effect. + + adding '__editable___awscrt_1_0_0_dev0_finder.py' + adding '__editable__.awscrt-1.0.0.dev0.pth' + creating '/private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-wheel-dnfmnm23/.tmp-sznk5w2u/awscrt-1.0.0.dev0-0.editable-cp311-abi3-macosx_14_0_arm64.whl' and adding '/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpv28kq8ooawscrt-1.0.0.dev0-0.editable-cp311-abi3-macosx_14_0_arm64.whl' to it + adding 'awscrt-1.0.0.dev0.dist-info/licenses/LICENSE' + adding 'awscrt-1.0.0.dev0.dist-info/licenses/NOTICE' + adding 'awscrt-1.0.0.dev0.dist-info/METADATA' + adding 'awscrt-1.0.0.dev0.dist-info/WHEEL' + adding 'awscrt-1.0.0.dev0.dist-info/top_level.txt' + adding 'awscrt-1.0.0.dev0.dist-info/RECORD' + /private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-build-env-u75ex_bl/overlay/lib/python3.11/site-packages/setuptools/command/editable_wheel.py:351: InformationOnly: Editable installation. + !! + + ******************************************************************************** + Please be careful with folders in your working directory with the same + name as your package as they may take precedence during imports. + ******************************************************************************** + + !! + with strategy, WheelFile(wheel_path, "w") as wheel_obj: + +[notice] A new release of pip is available: 24.0 -> 25.2 +[notice] To update, run: pip install --upgrade pip diff --git a/setup.py b/setup.py index 8e759dce4..a9a512ceb 100644 --- a/setup.py +++ b/setup.py @@ -380,11 +380,11 @@ def build_extension(self, ext): # Warning: very hacky. feel free to replace with something cleaner # Problem: if you install python through homebrew, python config ldflags - # will point to homebrew lib folder. + # will point to homebrew lib folder. # setuptools puts python ldflags before any of our lib paths, so if there is openssl or # another libcrypto in homebrew libs, it will get picked up before aws-lc we are building against. # And then we have fun failures due to lib mismatch. - # I could not find a cleaner way, so lets just hook into linker command and make sure + # I could not find a cleaner way, so lets just hook into linker command and make sure # our libs appear before other libs. if sys.platform == 'darwin' and using_libcrypto() and not using_system_libs() and not using_system_libcrypto(): @@ -392,7 +392,8 @@ def build_extension(self, ext): for i, item in enumerate(self.compiler.linker_so): if item.startswith('-L'): - self.compiler.linker_so[i:i] = [f"-L{item}" for item in self.library_dirs] + ['-Wl,-search_paths_first'] + self.compiler.linker_so[i:i] = [ + f"-L{item}" for item in self.library_dirs] + ['-Wl,-search_paths_first'] break try: @@ -528,8 +529,6 @@ def awscrt_ext(): define_macros.append(('Py_LIMITED_API', '0x030B0000')) py_limited_api = True - print - return setuptools.Extension( '_awscrt', language='c', @@ -542,6 +541,7 @@ def awscrt_ext(): py_limited_api=py_limited_api, ) + def _load_version(): init_path = os.path.join(PROJECT_DIR, 'awscrt', '__init__.py') with open(init_path) as fp: From e27bd79abd1ea90e3d2937b8144dc1774e6565be Mon Sep 17 00:00:00 2001 From: DmitriyMusatkin Date: Sun, 26 Oct 2025 23:24:40 -0700 Subject: [PATCH 3/6] remove test file --- foo.txt | 1436 ------------------------------------------------------- 1 file changed, 1436 deletions(-) delete mode 100644 foo.txt diff --git a/foo.txt b/foo.txt deleted file mode 100644 index 77c2b4cae..000000000 --- a/foo.txt +++ /dev/null @@ -1,1436 +0,0 @@ - Running command pip subprocess to install build dependencies - Collecting setuptools>=75.3.1 - Using cached setuptools-80.9.0-py3-none-any.whl.metadata (6.6 kB) - Using cached setuptools-80.9.0-py3-none-any.whl (1.2 MB) - Installing collected packages: setuptools - Successfully installed setuptools-80.9.0 - - [notice] A new release of pip is available: 24.0 -> 25.2 - [notice] To update, run: pip install --upgrade pip - Running command Checking if build backend supports build_editable - Running command Getting requirements to build editable - /private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-build-env-u75ex_bl/overlay/lib/python3.11/site-packages/setuptools/config/_apply_pyprojecttoml.py:82: SetuptoolsDeprecationWarning: `project.license` as a TOML table is deprecated - !! - - ******************************************************************************** - Please use a simple string containing a SPDX expression for `project.license`. You can also use `project.license-files`. (Both options available on setuptools>=77.0.0). - - By 2026-Feb-18, you need to update your project and remove deprecated calls - or your builds will no longer be supported. - - See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. - ******************************************************************************** - - !! - corresp(dist, value, root_dir) - running egg_info - writing awscrt.egg-info/PKG-INFO - writing dependency_links to awscrt.egg-info/dependency_links.txt - writing requirements to awscrt.egg-info/requires.txt - writing top-level names to awscrt.egg-info/top_level.txt - reading manifest file 'awscrt.egg-info/SOURCES.txt' - reading manifest template 'MANIFEST.in' - warning: no previously-included files matching '.travis*' found anywhere in distribution - warning: no previously-included files matching '.travis/**' found anywhere in distribution - no previously-included directories found matching 'crt/aws-c-s3/benchmarks' - no previously-included directories found matching 'crt/aws-lc/third_party/jitterentropy/tests' - no previously-included directories found matching 'crt/aws-lc/third_party/jitterentropy/doc' - adding license file 'LICENSE' - adding license file 'NOTICE' - writing manifest file 'awscrt.egg-info/SOURCES.txt' - Running command Preparing editable metadata (pyproject.toml) - /private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-build-env-u75ex_bl/overlay/lib/python3.11/site-packages/setuptools/config/_apply_pyprojecttoml.py:82: SetuptoolsDeprecationWarning: `project.license` as a TOML table is deprecated - !! - - ******************************************************************************** - Please use a simple string containing a SPDX expression for `project.license`. You can also use `project.license-files`. (Both options available on setuptools>=77.0.0). - - By 2026-Feb-18, you need to update your project and remove deprecated calls - or your builds will no longer be supported. - - See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. - ******************************************************************************** - - !! - corresp(dist, value, root_dir) - running dist_info - creating /private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-modern-metadata-jl4hdosg/awscrt.egg-info - writing /private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-modern-metadata-jl4hdosg/awscrt.egg-info/PKG-INFO - writing dependency_links to /private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-modern-metadata-jl4hdosg/awscrt.egg-info/dependency_links.txt - writing requirements to /private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-modern-metadata-jl4hdosg/awscrt.egg-info/requires.txt - writing top-level names to /private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-modern-metadata-jl4hdosg/awscrt.egg-info/top_level.txt - writing manifest file '/private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-modern-metadata-jl4hdosg/awscrt.egg-info/SOURCES.txt' - reading manifest file '/private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-modern-metadata-jl4hdosg/awscrt.egg-info/SOURCES.txt' - reading manifest template 'MANIFEST.in' - warning: no previously-included files matching '.travis*' found anywhere in distribution - warning: no previously-included files matching '.travis/**' found anywhere in distribution - no previously-included directories found matching 'crt/aws-c-s3/benchmarks' - no previously-included directories found matching 'crt/aws-lc/third_party/jitterentropy/tests' - no previously-included directories found matching 'crt/aws-lc/third_party/jitterentropy/doc' - adding license file 'LICENSE' - adding license file 'NOTICE' - writing manifest file '/private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-modern-metadata-jl4hdosg/awscrt.egg-info/SOURCES.txt' - creating '/private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-modern-metadata-jl4hdosg/awscrt-1.0.0.dev0.dist-info' -Running command Checking if build backend supports build_editable - Running command Building editable for awscrt (pyproject.toml) - /private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-build-env-u75ex_bl/overlay/lib/python3.11/site-packages/setuptools/config/_apply_pyprojecttoml.py:82: SetuptoolsDeprecationWarning: `project.license` as a TOML table is deprecated - !! - - ******************************************************************************** - Please use a simple string containing a SPDX expression for `project.license`. You can also use `project.license-files`. (Both options available on setuptools>=77.0.0). - - By 2026-Feb-18, you need to update your project and remove deprecated calls - or your builds will no longer be supported. - - See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. - ******************************************************************************** - - !! - corresp(dist, value, root_dir) - running editable_wheel - creating /private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-wheel-dnfmnm23/.tmp-sznk5w2u/awscrt.egg-info - writing /private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-wheel-dnfmnm23/.tmp-sznk5w2u/awscrt.egg-info/PKG-INFO - writing dependency_links to /private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-wheel-dnfmnm23/.tmp-sznk5w2u/awscrt.egg-info/dependency_links.txt - writing requirements to /private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-wheel-dnfmnm23/.tmp-sznk5w2u/awscrt.egg-info/requires.txt - writing top-level names to /private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-wheel-dnfmnm23/.tmp-sznk5w2u/awscrt.egg-info/top_level.txt - writing manifest file '/private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-wheel-dnfmnm23/.tmp-sznk5w2u/awscrt.egg-info/SOURCES.txt' - reading manifest file '/private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-wheel-dnfmnm23/.tmp-sznk5w2u/awscrt.egg-info/SOURCES.txt' - reading manifest template 'MANIFEST.in' - warning: no previously-included files matching '.travis*' found anywhere in distribution - warning: no previously-included files matching '.travis/**' found anywhere in distribution - no previously-included directories found matching 'crt/aws-c-s3/benchmarks' - no previously-included directories found matching 'crt/aws-lc/third_party/jitterentropy/tests' - no previously-included directories found matching 'crt/aws-lc/third_party/jitterentropy/doc' - adding license file 'LICENSE' - adding license file 'NOTICE' - writing manifest file '/private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-wheel-dnfmnm23/.tmp-sznk5w2u/awscrt.egg-info/SOURCES.txt' - creating '/private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-wheel-dnfmnm23/.tmp-sznk5w2u/awscrt-1.0.0.dev0.dist-info' - creating /private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-wheel-dnfmnm23/.tmp-sznk5w2u/awscrt-1.0.0.dev0.dist-info/WHEEL - running build_py - running build_ext - -- The C compiler identification is AppleClang 15.0.0.15000309 - -- The CXX compiler identification is AppleClang 15.0.0.15000309 - -- Detecting C compiler ABI info - -- Detecting C compiler ABI info - done - -- Check for working C compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc - skipped - -- Detecting C compile features - -- Detecting C compile features - done - -- Detecting CXX compiler ABI info - -- Detecting CXX compiler ABI info - done - -- Check for working CXX compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ - skipped - -- Detecting CXX compile features - -- Detecting CXX compile features - done - -- cmake command for dependency AWSLC: /opt/homebrew/Cellar/cmake/3.30.3/bin/cmake;-DCMAKE_CXX_COMPILER=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++;-DCMAKE_CXX_FLAGS_DEBUG=-g;-DCMAKE_CXX_FLAGS_MINSIZEREL=-Os -DNDEBUG;-DCMAKE_CXX_FLAGS_RELEASE=-O3 -DNDEBUG;-DCMAKE_CXX_FLAGS_RELWITHDEBINFO=-O2 -g1 -DNDEBUG;-DCMAKE_C_COMPILER=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc;-DCMAKE_C_FLAGS_DEBUG=-g;-DCMAKE_C_FLAGS_MINSIZEREL=-Os -DNDEBUG;-DCMAKE_C_FLAGS_RELEASE=-O3 -DNDEBUG;-DCMAKE_C_FLAGS_RELWITHDEBINFO=-O2 -g1 -DNDEBUG;-DCMAKE_GENERATOR=Unix Makefiles;-DCMAKE_MAKE_PROGRAM=/usr/bin/make;-DCMAKE_OSX_DEPLOYMENT_TARGET=14.4;-DCMAKE_OSX_SYSROOT=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk;-H/Users/musatkd/dev/aws-crt-python/crt/aws-lc;-B/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC;-DCMAKE_BUILD_TYPE=RelWithDebInfo;-DCMAKE_PREFIX_PATH=;-DCMAKE_INSTALL_PREFIX=/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install;-DCMAKE_INSTALL_RPATH=;-DBUILD_SHARED_LIBS=OFF;-GUnix Makefiles;-DDISABLE_GO=ON;-DDISABLE_PERL=ON;-DBUILD_LIBSSL=OFF;-DBUILD_TESTING=OFF;-DCMAKE_BUILD_TYPE=RelWithDebInfo;-DOPENSSL_SMALL=1 - -- ENABLE_PRE_SONAME_BUILD: ON - -- PERFORM_SONAME_BUILD: 0 - -- The C compiler identification is AppleClang 15.0.0.15000309 - -- Detecting C compiler ABI info - -- Detecting C compiler ABI info - done - -- Check for working C compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc - skipped - -- Detecting C compile features - -- Detecting C compile features - done - -- Entropy source configured: Dynamic (default: CPU Jitter) - -- Go not found. Disabling some code generation and using pre-generated code in generated-src/ - -- Perl not found. Disabling some code generation and using pre-generated code in generated-src/ - -- Setting CMAKE_C_STANDARD=11 - -- Performing Test HAVE_C_FLAG__Wno_cast_function_type - -- Performing Test HAVE_C_FLAG__Wno_cast_function_type - Success - -- Compiler supports '-Wno-cast-function-type', adding to CMAKE_C_FLAGS - -- Performing Test HAVE_C_FLAG__Wstring_concatenation - -- Performing Test HAVE_C_FLAG__Wstring_concatenation - Success - -- Compiler supports '-Wstring-concatenation', adding to C_CXX_FLAGS - -- Performing Test HAVE_C_FLAG__Wimplicit_fallthrough - -- Performing Test HAVE_C_FLAG__Wimplicit_fallthrough - Success - -- Compiler supports '-Wimplicit-fallthrough', adding to C_CXX_FLAGS - -- linux_random_h.c probe is negative, NOT enabling HAVE_LINUX_RANDOM_H: - -- Change Dir: '/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/CMakeFiles/CMakeTmp' - - Run Build Command(s): /opt/homebrew/Cellar/cmake/3.30.3/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_7f71b/fast - /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_7f71b.dir/build.make CMakeFiles/cmTC_7f71b.dir/build - Building C object CMakeFiles/cmTC_7f71b.dir/linux_random_h.c.o - /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -Wextra -Wunused -Wcomment -Wchar-subscripts -Wuninitialized -Wshadow -Wwrite-strings -Wformat-security -Wunused-result -Wno-overlength-strings -Wno-cast-function-type -Wall -fvisibility=hidden -fno-common -Wno-c11-extensions -Wvla -Wtype-limits -Wno-unused-parameter -Werror -Wformat=2 -Wsign-compare -Wmissing-field-initializers -Wwrite-strings -ggdb -Wnewline-eof -fcolor-diagnostics -Wstring-concatenation -Wimplicit-fallthrough -Wmissing-prototypes -Wold-style-definition -Wstrict-prototypes -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk -mmacosx-version-min=14.4 -Werror -MD -MT CMakeFiles/cmTC_7f71b.dir/linux_random_h.c.o -MF CMakeFiles/cmTC_7f71b.dir/linux_random_h.c.o.d -o CMakeFiles/cmTC_7f71b.dir/linux_random_h.c.o -c /Users/musatkd/dev/aws-crt-python/crt/aws-lc/tests/compiler_features_tests/linux_random_h.c - /Users/musatkd/dev/aws-crt-python/crt/aws-lc/tests/compiler_features_tests/linux_random_h.c:15:10: fatal error: 'linux/random.h' file not found - #include -  ^~~~~~~~~~~~~~~~ - 1 error generated. - make[1]: *** [CMakeFiles/cmTC_7f71b.dir/linux_random_h.c.o] Error 1 - make: *** [cmTC_7f71b/fast] Error 2 - - - -- linux_random_h.c probe is negative, NOT enabling AWS_LC_URANDOM_NEEDS_U32: - -- Change Dir: '/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/CMakeFiles/CMakeTmp' - - Run Build Command(s): /opt/homebrew/Cellar/cmake/3.30.3/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_f1a78/fast - /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_f1a78.dir/build.make CMakeFiles/cmTC_f1a78.dir/build - Building C object CMakeFiles/cmTC_f1a78.dir/linux_random_h.c.o - /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -Wextra -Wunused -Wcomment -Wchar-subscripts -Wuninitialized -Wshadow -Wwrite-strings -Wformat-security -Wunused-result -Wno-overlength-strings -Wno-cast-function-type -Wall -fvisibility=hidden -fno-common -Wno-c11-extensions -Wvla -Wtype-limits -Wno-unused-parameter -Werror -Wformat=2 -Wsign-compare -Wmissing-field-initializers -Wwrite-strings -ggdb -Wnewline-eof -fcolor-diagnostics -Wstring-concatenation -Wimplicit-fallthrough -Wmissing-prototypes -Wold-style-definition -Wstrict-prototypes -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk -mmacosx-version-min=14.4 -Werror -DDEFINE_U32 -MD -MT CMakeFiles/cmTC_f1a78.dir/linux_random_h.c.o -MF CMakeFiles/cmTC_f1a78.dir/linux_random_h.c.o.d -o CMakeFiles/cmTC_f1a78.dir/linux_random_h.c.o -c /Users/musatkd/dev/aws-crt-python/crt/aws-lc/tests/compiler_features_tests/linux_random_h.c - /Users/musatkd/dev/aws-crt-python/crt/aws-lc/tests/compiler_features_tests/linux_random_h.c:15:10: fatal error: 'linux/random.h' file not found - #include -  ^~~~~~~~~~~~~~~~ - 1 error generated. - make[1]: *** [CMakeFiles/cmTC_f1a78.dir/linux_random_h.c.o] Error 1 - make: *** [cmTC_f1a78/fast] Error 2 - - - -- stdalign_check.c probe is positive, enabling AWS_LC_STDALIGN_AVAILABLE - -- builtin_swap_check.c probe is positive, enabling AWS_LC_BUILTIN_SWAP_SUPPORTED - -- Performing Test HAVE_C_FLAG__Wshadow - -- Performing Test HAVE_C_FLAG__Wshadow - Success - -- Compiler supports '-Wshadow', adding to C_CXX_FLAGS - -- The ASM compiler identification is AppleClang - -- Found assembler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc - Copying platform assembly files from /Users/musatkd/dev/aws-crt-python/crt/aws-lc/generated-src/ios-aarch64/crypto/ to /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/crypto - -- neon_sha3_check.c probe is positive, enabling MY_ASSEMBLER_SUPPORTS_NEON_SHA3_EXTENSION - -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success - -- Found Threads: TRUE - -- Configuring done (2.8s) - -- Generating done (0.2s) - CMake Warning: - Manually-specified variables were not used by the project: - - CMAKE_CXX_COMPILER - CMAKE_CXX_FLAGS_DEBUG - CMAKE_CXX_FLAGS_MINSIZEREL - CMAKE_CXX_FLAGS_RELWITHDEBINFO - - - -- Build files have been written to: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC - [ 0%] Built target boringssl_prefix_symbols - [ 0%] Building C object third_party/jitterentropy/CMakeFiles/jitterentropy.dir/jitterentropy-library/src/jitterentropy-base.c.o - [ 0%] Building C object third_party/jitterentropy/CMakeFiles/jitterentropy.dir/jitterentropy-library/src/jitterentropy-gcd.c.o - [ 1%] Building C object third_party/jitterentropy/CMakeFiles/jitterentropy.dir/jitterentropy-library/src/jitterentropy-timer.c.o - [ 1%] Building C object third_party/jitterentropy/CMakeFiles/jitterentropy.dir/jitterentropy-library/src/jitterentropy-sha3.c.o - [ 2%] Building C object third_party/jitterentropy/CMakeFiles/jitterentropy.dir/jitterentropy-library/src/jitterentropy-health.c.o - [ 2%] Building C object third_party/jitterentropy/CMakeFiles/jitterentropy.dir/jitterentropy-library/src/jitterentropy-noise.c.o - [ 2%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/a_bitstr.c.o - [ 2%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/a_bool.c.o - [ 2%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/a_gentm.c.o - [ 3%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/a_d2i_fp.c.o - [ 3%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/a_dup.c.o - [ 4%] Building C object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/bcm.c.o - [ 4%] Building C object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/fips_shared_support.c.o - [ 4%] Building C object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/cpucap/cpucap.c.o - [ 5%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/aesv8-armx.S.o - [ 5%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/aesv8-gcm-armv8.S.o - [ 5%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/a_i2d_fp.c.o - [ 6%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/a_int.c.o - [ 6%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/a_mbstr.c.o - [ 6%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/a_object.c.o - [ 6%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/aesv8-gcm-armv8-unroll8.S.o - [ 6%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/armv8-mont.S.o - [ 7%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/a_octet.c.o - [ 8%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/bn-armv8.S.o - [ 8%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/a_strex.c.o - [ 8%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/a_strnid.c.o - [ 8%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/ghash-neon-armv8.S.o - [ 8%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/a_time.c.o - [ 8%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/ghashv8-armx.S.o - [ 9%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/a_type.c.o - [ 10%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/keccak1600-armv8.S.o - [ 10%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/a_utctm.c.o - [ 10%] Built target jitterentropy - [ 10%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/md5-armv8.S.o - [ 10%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/p256-armv8-asm.S.o - [ 10%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/a_utf8.c.o - [ 11%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/asn1_lib.c.o - [ 11%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/p256_beeu-armv8-asm.S.o - [ 11%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/asn1_par.c.o - [ 11%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/asn_pack.c.o - [ 12%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/rndr-armv8.S.o - [ 12%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/sha1-armv8.S.o - [ 12%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/sha256-armv8.S.o - [ 13%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/sha512-armv8.S.o - [ 13%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/vpaes-armv8.S.o - [ 13%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p256/p256_montjscalarmul.S.o - [ 13%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p256/p256_montjscalarmul_alt.S.o - [ 13%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/f_int.c.o - [ 14%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/f_string.c.o - [ 14%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/tasn_dec.c.o - [ 15%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p256/bignum_montinv_p256.S.o - [ 15%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p384/bignum_sub_p384.S.o - [ 15%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/tasn_enc.c.o - [ 15%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p384/bignum_add_p384.S.o - [ 16%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p384/bignum_neg_p384.S.o - [ 16%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p384/bignum_tomont_p384.S.o - [ 17%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/tasn_fre.c.o - [ 17%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p384/bignum_deamont_p384.S.o - [ 17%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/tasn_new.c.o - [ 17%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p384/bignum_montmul_p384.S.o - [ 18%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p384/bignum_montmul_p384_alt.S.o - [ 18%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/tasn_typ.c.o - [ 18%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/tasn_utl.c.o - [ 19%] Building C object crypto/CMakeFiles/crypto_objects.dir/asn1/posix_time.c.o - [ 19%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p384/bignum_montsqr_p384.S.o - [ 19%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p384/bignum_montsqr_p384_alt.S.o - [ 20%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p384/bignum_nonzero_6.S.o - [ 20%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p384/bignum_littleendian_6.S.o - [ 20%] Building C object crypto/CMakeFiles/crypto_objects.dir/base64/base64.c.o - [ 20%] Building C object crypto/CMakeFiles/crypto_objects.dir/bio/bio.c.o - [ 21%] Building C object crypto/CMakeFiles/crypto_objects.dir/bio/bio_addr.c.o - [ 21%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p384/p384_montjdouble.S.o - [ 21%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p384/p384_montjdouble_alt.S.o - [ 22%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p384/p384_montjscalarmul.S.o - [ 22%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p384/p384_montjscalarmul_alt.S.o - [ 22%] Building C object crypto/CMakeFiles/crypto_objects.dir/bio/bio_mem.c.o - [ 22%] Building C object crypto/CMakeFiles/crypto_objects.dir/bio/connect.c.o - [ 22%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p384/bignum_montinv_p384.S.o - [ 22%] Building C object crypto/CMakeFiles/crypto_objects.dir/bio/dgram.c.o - [ 22%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p521/bignum_add_p521.S.o - [ 23%] Building C object crypto/CMakeFiles/crypto_objects.dir/bio/errno.c.o - [ 23%] Building C object crypto/CMakeFiles/crypto_objects.dir/bio/fd.c.o - [ 24%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p521/bignum_sub_p521.S.o - [ 24%] Building C object crypto/CMakeFiles/crypto_objects.dir/bio/file.c.o - [ 24%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p521/bignum_neg_p521.S.o - [ 24%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p521/bignum_mul_p521.S.o - [ 24%] Building C object crypto/CMakeFiles/crypto_objects.dir/bio/hexdump.c.o - [ 25%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p521/bignum_mul_p521_alt.S.o - [ 26%] Building C object crypto/CMakeFiles/crypto_objects.dir/bio/md.c.o - [ 26%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p521/bignum_sqr_p521.S.o - [ 26%] Building C object crypto/CMakeFiles/crypto_objects.dir/bio/pair.c.o - [ 26%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p521/bignum_sqr_p521_alt.S.o - [ 26%] Building C object crypto/CMakeFiles/crypto_objects.dir/bio/printf.c.o - [ 26%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p521/bignum_tolebytes_p521.S.o - [ 27%] Building C object crypto/CMakeFiles/crypto_objects.dir/bio/socket.c.o - [ 27%] Building C object crypto/CMakeFiles/crypto_objects.dir/bio/socket_helper.c.o - [ 28%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p521/bignum_fromlebytes_p521.S.o - [ 28%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p521/p521_jdouble.S.o - [ 28%] Building C object crypto/CMakeFiles/crypto_objects.dir/blake2/blake2.c.o - [ 28%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p521/p521_jdouble_alt.S.o - [ 29%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p521/p521_jscalarmul_alt.S.o - [ 29%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p521/p521_jscalarmul.S.o - [ 29%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/p521/bignum_inv_p521.S.o - [ 29%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/curve25519/bignum_mod_n25519.S.o - [ 29%] Building C object crypto/CMakeFiles/crypto_objects.dir/bn_extra/bn_asn1.c.o - [ 30%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/curve25519/bignum_neg_p25519.S.o - [ 30%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/curve25519/bignum_madd_n25519.S.o - [ 31%] Building C object crypto/CMakeFiles/crypto_objects.dir/bn_extra/convert.c.o - [ 31%] Building C object crypto/CMakeFiles/crypto_objects.dir/buf/buf.c.o - [ 31%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/curve25519/bignum_madd_n25519_alt.S.o - [ 31%] Building C object crypto/CMakeFiles/crypto_objects.dir/bytestring/asn1_compat.c.o - [ 32%] Building C object crypto/CMakeFiles/crypto_objects.dir/bytestring/ber.c.o - [ 32%] Building C object crypto/CMakeFiles/crypto_objects.dir/bytestring/cbb.c.o - [ 33%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/curve25519/edwards25519_decode.S.o - [ 33%] Building C object crypto/CMakeFiles/crypto_objects.dir/bytestring/cbs.c.o - [ 33%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/curve25519/edwards25519_decode_alt.S.o - [ 33%] Building C object crypto/CMakeFiles/crypto_objects.dir/bytestring/unicode.c.o - [ 34%] Building C object crypto/CMakeFiles/crypto_objects.dir/chacha/chacha.c.o - [ 34%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/curve25519/edwards25519_encode.S.o - [ 34%] Building C object crypto/CMakeFiles/crypto_objects.dir/cipher_extra/cipher_extra.c.o - [ 34%] Building C object crypto/CMakeFiles/crypto_objects.dir/cipher_extra/derive_key.c.o - [ 34%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/curve25519/edwards25519_scalarmulbase.S.o - [ 35%] Building C object crypto/CMakeFiles/crypto_objects.dir/cipher_extra/e_aesctrhmac.c.o - [ 35%] Building C object crypto/CMakeFiles/crypto_objects.dir/cipher_extra/e_aesgcmsiv.c.o - [ 36%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/curve25519/edwards25519_scalarmulbase_alt.S.o - [ 36%] Building C object crypto/CMakeFiles/crypto_objects.dir/cipher_extra/e_chacha20poly1305.c.o - [ 36%] Building C object crypto/CMakeFiles/crypto_objects.dir/cipher_extra/e_aes_cbc_hmac_sha1.c.o - [ 37%] Building C object crypto/CMakeFiles/crypto_objects.dir/cipher_extra/e_aes_cbc_hmac_sha256.c.o - [ 37%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/curve25519/edwards25519_scalarmuldouble.S.o - [ 37%] Building C object crypto/CMakeFiles/crypto_objects.dir/cipher_extra/e_des.c.o - [ 37%] Building C object crypto/CMakeFiles/crypto_objects.dir/cipher_extra/e_null.c.o - [ 37%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/curve25519/edwards25519_scalarmuldouble_alt.S.o - [ 38%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/curve25519/curve25519_x25519_byte.S.o - [ 38%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/curve25519/curve25519_x25519_byte_alt.S.o - [ 39%] Building C object crypto/CMakeFiles/crypto_objects.dir/cipher_extra/e_rc2.c.o - [ 39%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/curve25519/curve25519_x25519base_byte.S.o - [ 39%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/curve25519/curve25519_x25519base_byte_alt.S.o - [ 39%] Building C object crypto/CMakeFiles/crypto_objects.dir/cipher_extra/e_rc4.c.o - [ 39%] Building C object crypto/CMakeFiles/crypto_objects.dir/cipher_extra/e_tls.c.o - [ 40%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/fastmul/bignum_kmul_16_32.S.o - [ 40%] Building C object crypto/CMakeFiles/crypto_objects.dir/cipher_extra/tls_cbc.c.o - [ 40%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/fastmul/bignum_kmul_32_64.S.o - [ 41%] Building C object crypto/CMakeFiles/crypto_objects.dir/conf/conf.c.o - [ 41%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/fastmul/bignum_ksqr_16_32.S.o - [ 41%] Building C object crypto/CMakeFiles/crypto_objects.dir/console/console.c.o - [ 41%] Building C object crypto/CMakeFiles/crypto_objects.dir/crypto.c.o - [ 41%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/fastmul/bignum_ksqr_32_64.S.o - [ 42%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/fastmul/bignum_emontredc_8n.S.o - [ 43%] Building C object crypto/CMakeFiles/crypto_objects.dir/des/des.c.o - [ 43%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/generic/bignum_ge.S.o - [ 43%] Building C object crypto/CMakeFiles/crypto_objects.dir/dh_extra/params.c.o - [ 43%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/generic/bignum_mul.S.o - [ 43%] Building C object crypto/CMakeFiles/crypto_objects.dir/dh_extra/dh_asn1.c.o - [ 44%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/generic/bignum_optsub.S.o - [ 44%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/generic/bignum_sqr.S.o - [ 44%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/generic/bignum_copy_row_from_table.S.o - [ 44%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/generic/bignum_copy_row_from_table_8n.S.o - [ 45%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/generic/bignum_copy_row_from_table_16.S.o - [ 45%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/generic/bignum_copy_row_from_table_32.S.o - [ 45%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/sha3/sha3_keccak_f1600.S.o - [ 45%] Building C object crypto/CMakeFiles/crypto_objects.dir/digest_extra/digest_extra.c.o - [ 46%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/sha3/sha3_keccak4_f1600_alt.S.o - [ 47%] Building C object crypto/CMakeFiles/crypto_objects.dir/dsa/dsa.c.o - [ 47%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/sha3/sha3_keccak_f1600_alt.S.o - [ 47%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/sha3/sha3_keccak2_f1600.S.o - [ 47%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-imported/arm/sha3/sha3_keccak4_f1600_alt2.S.o - [ 48%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-to-be-imported/arm/aes/aes-xts-enc.S.o - [ 48%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/__/__/third_party/s2n-bignum/s2n-bignum-to-be-imported/arm/aes/aes-xts-dec.S.o - [ 48%] Building C object crypto/CMakeFiles/crypto_objects.dir/dsa/dsa_asn1.c.o - [ 48%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/ml_kem/mlkem/native/aarch64/src/intt.S.o - [ 48%] Building C object crypto/CMakeFiles/crypto_objects.dir/ecdh_extra/ecdh_extra.c.o - [ 48%] Building C object crypto/CMakeFiles/crypto_objects.dir/ecdsa_extra/ecdsa_asn1.c.o - [ 49%] Building C object crypto/CMakeFiles/crypto_objects.dir/ec_extra/ec_asn1.c.o - [ 50%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/ml_kem/mlkem/native/aarch64/src/ntt.S.o - [ 50%] Building C object crypto/CMakeFiles/crypto_objects.dir/ec_extra/ec_derive.c.o - [ 50%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/ml_kem/mlkem/native/aarch64/src/poly_mulcache_compute_asm.S.o - [ 51%] Building C object crypto/CMakeFiles/crypto_objects.dir/ec_extra/hash_to_curve.c.o - [ 51%] Building C object crypto/CMakeFiles/crypto_objects.dir/err/err.c.o - [ 51%] Building C object crypto/CMakeFiles/crypto_objects.dir/err_data.c.o - [ 51%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/ml_kem/mlkem/native/aarch64/src/poly_reduce_asm.S.o - [ 51%] Building C object crypto/CMakeFiles/crypto_objects.dir/engine/engine.c.o - [ 51%] Building C object crypto/CMakeFiles/crypto_objects.dir/evp_extra/evp_asn1.c.o - [ 51%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/ml_kem/mlkem/native/aarch64/src/poly_tobytes_asm.S.o - [ 52%] Building C object crypto/CMakeFiles/crypto_objects.dir/evp_extra/p_dh.c.o - [ 53%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/ml_kem/mlkem/native/aarch64/src/poly_tomont_asm.S.o - [ 53%] Building C object crypto/CMakeFiles/crypto_objects.dir/evp_extra/p_dh_asn1.c.o - [ 53%] Building C object crypto/CMakeFiles/crypto_objects.dir/evp_extra/p_dsa.c.o - [ 54%] Building C object crypto/CMakeFiles/crypto_objects.dir/evp_extra/p_dsa_asn1.c.o - [ 54%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/ml_kem/mlkem/native/aarch64/src/polyvec_basemul_acc_montgomery_cached_asm_k2.S.o - [ 54%] Building C object crypto/CMakeFiles/crypto_objects.dir/evp_extra/p_ec_asn1.c.o - [ 54%] Building C object crypto/CMakeFiles/crypto_objects.dir/evp_extra/p_ed25519_asn1.c.o - [ 54%] Building C object crypto/CMakeFiles/crypto_objects.dir/evp_extra/p_hmac_asn1.c.o - [ 54%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/ml_kem/mlkem/native/aarch64/src/polyvec_basemul_acc_montgomery_cached_asm_k3.S.o - [ 55%] Building C object crypto/CMakeFiles/crypto_objects.dir/evp_extra/p_kem_asn1.c.o - [ 56%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/ml_kem/mlkem/native/aarch64/src/polyvec_basemul_acc_montgomery_cached_asm_k4.S.o - [ 56%] Building ASM object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/ml_kem/mlkem/native/aarch64/src/rej_uniform_asm.S.o - [ 56%] Building C object crypto/CMakeFiles/crypto_objects.dir/evp_extra/p_pqdsa_asn1.c.o - [ 56%] Building C object crypto/CMakeFiles/crypto_objects.dir/evp_extra/p_rsa_asn1.c.o - [ 57%] Building C object crypto/CMakeFiles/crypto_objects.dir/evp_extra/p_x25519.c.o - [ 57%] Building C object crypto/CMakeFiles/crypto_objects.dir/evp_extra/p_x25519_asn1.c.o - [ 57%] Building C object crypto/CMakeFiles/crypto_objects.dir/evp_extra/p_methods.c.o - [ 57%] Building C object crypto/CMakeFiles/crypto_objects.dir/evp_extra/print.c.o - [ 58%] Building C object crypto/CMakeFiles/crypto_objects.dir/evp_extra/scrypt.c.o - [ 58%] Building C object crypto/CMakeFiles/crypto_objects.dir/evp_extra/sign.c.o - [ 58%] Building C object crypto/CMakeFiles/crypto_objects.dir/ex_data.c.o - [ 59%] Building C object crypto/CMakeFiles/crypto_objects.dir/hpke/hpke.c.o - [ 59%] Building C object crypto/CMakeFiles/crypto_objects.dir/hrss/hrss.c.o - [ 59%] Building C object crypto/CMakeFiles/crypto_objects.dir/kyber/kyber512r3_ref.c.o - [ 59%] Building C object crypto/CMakeFiles/crypto_objects.dir/kyber/kyber768r3_ref.c.o - [ 60%] Building C object crypto/CMakeFiles/crypto_objects.dir/kyber/kyber1024r3_ref.c.o - [ 60%] Building C object crypto/CMakeFiles/crypto_objects.dir/kyber/pqcrystals_kyber_ref_common/fips202.c.o - [ 60%] Building C object crypto/CMakeFiles/crypto_objects.dir/kyber/kem_kyber.c.o - [ 60%] Building C object crypto/CMakeFiles/crypto_objects.dir/lhash/lhash.c.o - [ 61%] Building C object crypto/CMakeFiles/crypto_objects.dir/mem.c.o - [ 61%] Building C object crypto/CMakeFiles/crypto_objects.dir/obj/obj.c.o - [ 61%] Building C object crypto/CMakeFiles/crypto_objects.dir/obj/obj_xref.c.o - [ 62%] Building C object crypto/CMakeFiles/crypto_objects.dir/ocsp/ocsp_asn.c.o - [ 62%] Building C object crypto/CMakeFiles/crypto_objects.dir/ocsp/ocsp_client.c.o - [ 62%] Building C object crypto/CMakeFiles/crypto_objects.dir/ocsp/ocsp_extension.c.o - [ 62%] Building C object crypto/CMakeFiles/crypto_objects.dir/ocsp/ocsp_http.c.o - [ 63%] Building C object crypto/CMakeFiles/crypto_objects.dir/ocsp/ocsp_lib.c.o - [ 63%] Building C object crypto/CMakeFiles/crypto_objects.dir/ocsp/ocsp_print.c.o - [ 63%] Building C object crypto/CMakeFiles/crypto_objects.dir/ocsp/ocsp_server.c.o - [ 64%] Building C object crypto/CMakeFiles/crypto_objects.dir/ocsp/ocsp_verify.c.o - [ 64%] Building C object crypto/CMakeFiles/crypto_objects.dir/pem/pem_all.c.o - [ 64%] Building C object crypto/CMakeFiles/crypto_objects.dir/pem/pem_info.c.o - [ 64%] Building C object crypto/CMakeFiles/crypto_objects.dir/pem/pem_lib.c.o - [ 65%] Building C object crypto/CMakeFiles/crypto_objects.dir/pem/pem_oth.c.o - [ 65%] Building C object crypto/CMakeFiles/crypto_objects.dir/pem/pem_pkey.c.o - [ 65%] Building C object crypto/CMakeFiles/crypto_objects.dir/pem/pem_pk8.c.o - [ 66%] Building C object crypto/CMakeFiles/crypto_objects.dir/pem/pem_xaux.c.o - [ 66%] Building C object crypto/CMakeFiles/crypto_objects.dir/pem/pem_x509.c.o - [ 66%] Building C object crypto/CMakeFiles/crypto_objects.dir/pkcs7/bio/cipher.c.o - [ 66%] Building C object crypto/CMakeFiles/crypto_objects.dir/pkcs7/pkcs7.c.o - [ 67%] Building C object crypto/CMakeFiles/crypto_objects.dir/pkcs7/pkcs7_asn1.c.o - [ 67%] Building C object crypto/CMakeFiles/crypto_objects.dir/pkcs7/pkcs7_x509.c.o - [ 67%] Building C object crypto/CMakeFiles/crypto_objects.dir/pkcs8/pkcs8.c.o - [ 68%] Building C object crypto/CMakeFiles/crypto_objects.dir/pkcs8/pkcs8_x509.c.o - [ 68%] Building C object crypto/CMakeFiles/crypto_objects.dir/pkcs8/p5_pbev2.c.o - [ 68%] Building C object crypto/CMakeFiles/crypto_objects.dir/poly1305/poly1305.c.o - [ 68%] Building C object crypto/CMakeFiles/crypto_objects.dir/poly1305/poly1305_arm.c.o - [ 68%] Built target fipsmodule - [ 69%] Building C object crypto/CMakeFiles/crypto_objects.dir/pool/pool.c.o - [ 69%] Building C object crypto/CMakeFiles/crypto_objects.dir/poly1305/poly1305_vec.c.o - [ 69%] Building C object crypto/CMakeFiles/crypto_objects.dir/rand_extra/ccrandomgeneratebytes.c.o - [ 70%] Building C object crypto/CMakeFiles/crypto_objects.dir/rand_extra/deterministic.c.o - [ 70%] Building C object crypto/CMakeFiles/crypto_objects.dir/rand_extra/getentropy.c.o - [ 70%] Building C object crypto/CMakeFiles/crypto_objects.dir/rand_extra/rand_extra.c.o - [ 70%] Building C object crypto/CMakeFiles/crypto_objects.dir/rand_extra/snapsafe_fallback.c.o - [ 71%] Building C object crypto/CMakeFiles/crypto_objects.dir/rand_extra/urandom.c.o - [ 71%] Building C object crypto/CMakeFiles/crypto_objects.dir/rand_extra/windows.c.o - [ 71%] Building C object crypto/CMakeFiles/crypto_objects.dir/rc4/rc4.c.o - [ 71%] Building C object crypto/CMakeFiles/crypto_objects.dir/refcount_c11.c.o - [ 72%] Building C object crypto/CMakeFiles/crypto_objects.dir/refcount_lock.c.o - [ 72%] Building C object crypto/CMakeFiles/crypto_objects.dir/refcount_win.c.o - [ 72%] Building C object crypto/CMakeFiles/crypto_objects.dir/rsa_extra/rsa_asn1.c.o - [ 73%] Building C object crypto/CMakeFiles/crypto_objects.dir/rsa_extra/rsassa_pss_asn1.c.o - [ 73%] Building C object crypto/CMakeFiles/crypto_objects.dir/rsa_extra/rsa_crypt.c.o - [ 73%] Building C object crypto/CMakeFiles/crypto_objects.dir/rsa_extra/rsa_print.c.o - [ 73%] Building C object crypto/CMakeFiles/crypto_objects.dir/stack/stack.c.o - [ 74%] Building C object crypto/CMakeFiles/crypto_objects.dir/siphash/siphash.c.o - [ 74%] Building C object crypto/CMakeFiles/crypto_objects.dir/spake25519/spake25519.c.o - [ 74%] Building C object crypto/CMakeFiles/crypto_objects.dir/thread.c.o - [ 75%] Building C object crypto/CMakeFiles/crypto_objects.dir/thread_none.c.o - [ 75%] Building C object crypto/CMakeFiles/crypto_objects.dir/thread_pthread.c.o - [ 75%] Building C object crypto/CMakeFiles/crypto_objects.dir/thread_win.c.o - [ 75%] Building C object crypto/CMakeFiles/crypto_objects.dir/trust_token/pmbtoken.c.o - [ 76%] Building C object crypto/CMakeFiles/crypto_objects.dir/trust_token/trust_token.c.o - [ 76%] Building C object crypto/CMakeFiles/crypto_objects.dir/trust_token/voprf.c.o - [ 76%] Building C object crypto/CMakeFiles/crypto_objects.dir/ube/ube.c.o - [ 77%] Building C object crypto/CMakeFiles/crypto_objects.dir/ube/fork_detect.c.o - [ 77%] Building C object crypto/CMakeFiles/crypto_objects.dir/ube/snapsafe_detect.c.o - [ 77%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/a_digest.c.o - [ 77%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/a_sign.c.o - [ 78%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/a_verify.c.o - [ 78%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/algorithm.c.o - [ 78%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/asn1_gen.c.o - [ 79%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/by_dir.c.o - [ 79%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/by_file.c.o - [ 79%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/i2d_pr.c.o - [ 79%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/name_print.c.o - [ 80%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/policy.c.o - [ 80%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/rsa_pss.c.o - [ 80%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/t_crl.c.o - [ 80%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/t_req.c.o - [ 81%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/t_x509.c.o - [ 81%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/t_x509a.c.o - [ 81%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_akey.c.o - [ 82%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_akeya.c.o - [ 82%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_alt.c.o - [ 82%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_bcons.c.o - [ 82%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_bitst.c.o - [ 83%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_conf.c.o - [ 83%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_cpols.c.o - [ 83%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_crld.c.o - [ 84%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_enum.c.o - [ 84%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_extku.c.o - [ 84%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_genn.c.o - [ 84%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_ia5.c.o - [ 85%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_info.c.o - [ 85%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_int.c.o - [ 85%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_lib.c.o - [ 86%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_ncons.c.o - [ 86%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_ocsp.c.o - [ 86%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_pcons.c.o - [ 86%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_pmaps.c.o - [ 87%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_prn.c.o - [ 87%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_purp.c.o - [ 87%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_skey.c.o - [ 88%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/v3_utl.c.o - [ 88%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x_algor.c.o - [ 88%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x_all.c.o - [ 88%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x_attrib.c.o - [ 89%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x_crl.c.o - [ 89%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x_exten.c.o - [ 89%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x_name.c.o - [ 90%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x_pubkey.c.o - [ 90%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x_req.c.o - [ 90%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x_sig.c.o - [ 90%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x_spki.c.o - [ 91%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x_val.c.o - [ 91%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x_x509.c.o - [ 91%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x_x509a.c.o - [ 91%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509_att.c.o - [ 92%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509_cmp.c.o - [ 92%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509_d2.c.o - [ 92%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509_def.c.o - [ 93%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509_ext.c.o - [ 93%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509_lu.c.o - [ 93%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509_obj.c.o - [ 93%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509_req.c.o - [ 94%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509_set.c.o - [ 94%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509_trs.c.o - [ 94%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509_txt.c.o - [ 95%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509_v3.c.o - [ 95%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509_vfy.c.o - [ 95%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509_vpm.c.o - [ 95%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509.c.o - [ 96%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509cset.c.o - [ 96%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509name.c.o - [ 96%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509rset.c.o - [ 97%] Building C object crypto/CMakeFiles/crypto_objects.dir/x509/x509spki.c.o - [ 97%] Building C object crypto/CMakeFiles/crypto_objects.dir/decrepit/bio/base64_bio.c.o - [ 97%] Building C object crypto/CMakeFiles/crypto_objects.dir/decrepit/blowfish/blowfish.c.o - [ 97%] Building C object crypto/CMakeFiles/crypto_objects.dir/decrepit/cast/cast.c.o - [ 98%] Building C object crypto/CMakeFiles/crypto_objects.dir/decrepit/cast/cast_tables.c.o - [ 98%] Building C object crypto/CMakeFiles/crypto_objects.dir/decrepit/cfb/cfb.c.o - [ 98%] Building C object crypto/CMakeFiles/crypto_objects.dir/decrepit/dh/dh_decrepit.c.o - [ 99%] Building C object crypto/CMakeFiles/crypto_objects.dir/decrepit/evp/evp_do_all.c.o - [ 99%] Building C object crypto/CMakeFiles/crypto_objects.dir/decrepit/obj/obj_decrepit.c.o - [ 99%] Building C object crypto/CMakeFiles/crypto_objects.dir/decrepit/ripemd/ripemd.c.o - [ 99%] Building C object crypto/CMakeFiles/crypto_objects.dir/decrepit/rsa/rsa_decrepit.c.o - [100%] Building C object crypto/CMakeFiles/crypto_objects.dir/decrepit/x509/x509_decrepit.c.o - [100%] Building ASM object crypto/CMakeFiles/crypto_objects.dir/chacha/chacha-armv8.S.o - [100%] Building ASM object crypto/CMakeFiles/crypto_objects.dir/test/trampoline-armv8.S.o - [100%] Building ASM object crypto/CMakeFiles/crypto_objects.dir/cipher_extra/chacha20_poly1305_armv8.S.o - [100%] Built target crypto_objects - [100%] Linking C static library libcrypto.a - [100%] Built target crypto - Install the project... - -- Install configuration: "RelWithDebInfo" - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/kdf.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/time.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/pem.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/nid.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/ssl3.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/ossl_typ.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/dtls1.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/asm_base.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/err.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/bn.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/ctrdrbg.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/experimental - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/experimental/kem_deterministic_api.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/blowfish.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/engine.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/bytestring.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/x509.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/asn1_mac.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/pool.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/ec_key.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/ui.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/base64.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/sha.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/asn1.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/chacha.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/opensslconf.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/arm_arch.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/bio.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/dh.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/digest.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/x509v3.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/conf.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/poly1305.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/hkdf.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/type_check.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/siphash.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/md5.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/x509_vfy.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/pkcs8.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/safestack.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/buf.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/obj.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/ecdsa.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/cipher.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/objects.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/pkcs12.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/crypto.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/opensslv.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/pkcs7.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/obj_mac.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/posix_time.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/buffer.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/ssl.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/thread.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/hpke.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/evp.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/e_os2.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/md4.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/hmac.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/service_indicator.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/aes.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/blake2.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/is_awslc.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/rc4.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/target.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/cpu.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/stack.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/des.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/ocsp.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/ec.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/hrss.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/ecdh.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/rand.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/aead.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/span.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/rsa.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/mem.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/ripemd.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/curve25519.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/tls1.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/dsa.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/x509v3_errors.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/trust_token.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/asn1t.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/cmac.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/evp_errors.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/lhash.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/ex_data.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/sshkdf.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/base.h - -- Up-to-date: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl - -- Up-to-date: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/experimental - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/boringssl_prefix_symbols_asm.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/boringssl_prefix_symbols_nasm.inc - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/include/openssl/boringssl_prefix_symbols.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/lib/pkgconfig/libcrypto.pc - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/lib/pkgconfig/libssl.pc - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/lib/pkgconfig/openssl.pc - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/lib/libcrypto.a - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/lib/crypto/cmake/crypto-config.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/lib/crypto/cmake/static/crypto-targets.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/deps/AWSLC/install/lib/crypto/cmake/static/crypto-targets-relwithdebinfo.cmake - -- CMake 3.30.3 - -- Performing Test AWS_HAVE_GCC_OVERFLOW_MATH_EXTENSIONS - -- Performing Test AWS_HAVE_GCC_OVERFLOW_MATH_EXTENSIONS - Success - -- Performing Test AWS_HAVE_WINAPI_DESKTOP - -- Performing Test AWS_HAVE_WINAPI_DESKTOP - Failed - -- Performing Test AWS_ARCH_INTEL - -- Performing Test AWS_ARCH_INTEL - Failed - -- Performing Test AWS_ARCH_INTEL_X64 - -- Performing Test AWS_ARCH_INTEL_X64 - Failed - -- Performing Test AWS_ARCH_ARM64 - -- Performing Test AWS_ARCH_ARM64 - Success - -- Performing Test AWS_ARCH_ARM32 - -- Performing Test AWS_ARCH_ARM32 - Failed - -- Performing Test AWS_HAVE_GCC_INLINE_ASM - -- Performing Test AWS_HAVE_GCC_INLINE_ASM - Success - -- Performing Test AWS_HAVE_AUXV - -- Performing Test AWS_HAVE_AUXV - Failed - -- Performing Test AWS_HAVE_EXECINFO - -- Performing Test AWS_HAVE_EXECINFO - Success - -- Performing Test AWS_HAVE_LINUX_IF_LINK_H - -- Performing Test AWS_HAVE_LINUX_IF_LINK_H - Failed - -- Performing Test HAVE_MTUNE_NEOVERSE_V1 - -- Performing Test HAVE_MTUNE_NEOVERSE_V1 - Success - -- Performing Test HAVE_M_AVX2_FLAG - -- Performing Test HAVE_M_AVX2_FLAG - Success - -- Performing Test HAVE_M_AVX512_FLAG - -- Performing Test HAVE_M_AVX512_FLAG - Success - -- Performing Test AWS_HAVE_AVX2_INTRINSICS - -- Performing Test AWS_HAVE_AVX2_INTRINSICS - Failed - -- Performing Test AWS_HAVE_AVX512_INTRINSICS - -- Performing Test AWS_HAVE_AVX512_INTRINSICS - Failed - -- Performing Test AWS_HAVE_MM256_EXTRACT_EPI64 - -- Performing Test AWS_HAVE_MM256_EXTRACT_EPI64 - Failed - -- Performing Test AWS_HAVE_CLMUL - -- Performing Test AWS_HAVE_CLMUL - Failed - -- Performing Test AWS_HAVE_ARM32_CRC - -- Performing Test AWS_HAVE_ARM32_CRC - Success - -- Performing Test AWS_HAVE_ARMv8_1 - -- Performing Test AWS_HAVE_ARMv8_1 - Success - -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success - -- Found Threads: TRUE - -- Looking for pthread_mutexattr_init - -- Looking for pthread_mutexattr_init - not found - -- Performing Test HAS_FPIC_FLAG - -- Performing Test HAS_FPIC_FLAG - Success - -- Performing Test HAS_MOUTLINE_ATOMICS - -- Performing Test HAS_MOUTLINE_ATOMICS - Success - -- Performing Test HAS_64BIT_FILE_OFFSET_BY_DEFAULT - -- Performing Test HAS_64BIT_FILE_OFFSET_BY_DEFAULT - Success - -- Looking for fseeko - -- Looking for fseeko - found - -- Looking for stdint.h - -- Looking for stdint.h - found - -- Looking for stdbool.h - -- Looking for stdbool.h - found - -- Performing Test HAS_WGNU - -- Performing Test HAS_WGNU - Success - -- Performing Test NO_GNU_EXPR - -- Performing Test NO_GNU_EXPR - Success - -- Performing Test HAVE_SYSCONF - -- Performing Test HAVE_SYSCONF - Success - -- Packaging is only supported on Linux - -- CMAKE_OSX_SYSROOT is defined and set to: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk this value - -- Using prebuilt libcrypto from AWS-LC - -- FOUND AWS-LC CRYPTO cmake config - static - -- Configuring done (23.1s) - -- Generating done (0.2s) - -- Build files have been written to: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps - [ 1%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/allocator.c.o - [ 1%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/arch/arm/darwin/cpuid.c.o - [ 1%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/codegen.c.o - [ 2%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/condition_variable.c.o - [ 3%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/array_list.c.o - [ 4%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/cache.c.o - [ 4%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/byte_buf.c.o - [ 4%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/assert.c.o - [ 4%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/allocator_sba.c.o - [ 4%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/common.c.o - [ 5%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/command_line_parser.c.o - [ 5%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/cbor.c.o - [ 5%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/date_time.c.o - [ 5%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/device_random.c.o - [ 6%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/encoding.c.o - [ 6%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/error.c.o - [ 6%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/cJSON.c.o - [ 7%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/allocators.c.o - [ 7%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor.c.o - [ 7%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor/arrays.c.o - [ 8%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor/bytestrings.c.o - [ 8%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor/callbacks.c.o - [ 8%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor/common.c.o - [ 9%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor/encoding.c.o - [ 9%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor/floats_ctrls.c.o - [ 10%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor/internal/builder_callbacks.c.o - [ 10%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor/internal/encoders.c.o - [ 10%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor/internal/loaders.c.o - [ 11%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor/internal/memory_utils.c.o - [ 11%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor/internal/stack.c.o - [ 11%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor/internal/unicode.c.o - [ 12%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor/ints.c.o - [ 12%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor/maps.c.o - [ 12%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor/serialization.c.o - [ 13%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor/streaming.c.o - [ 13%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor/strings.c.o - [ 13%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/external/libcbor/cbor/tags.c.o - [ 14%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/fifo_cache.c.o - [ 14%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/file.c.o - [ 15%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/hash_table.c.o - [ 15%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/host_utils.c.o - [ 15%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/json.c.o - [ 16%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/lifo_cache.c.o - [ 16%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/linked_hash_table.c.o - [ 16%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/log_channel.c.o - [ 17%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/log_formatter.c.o - [ 17%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/log_writer.c.o - [ 17%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/logging.c.o - [ 18%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/lru_cache.c.o - [ 18%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/math.c.o - [ 18%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/memtrace.c.o - [ 19%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/platform_fallback_stubs/file_direct_io.c.o - [ 19%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/platform_fallback_stubs/system_info.c.o - [ 20%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/posix/clock.c.o - [ 20%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/posix/condition_variable.c.o - [ 20%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/posix/cross_process_lock.c.o - [ 21%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/posix/device_random.c.o - [ 21%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/posix/environment.c.o - [ 21%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/posix/file.c.o - [ 22%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/posix/mutex.c.o - [ 22%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/posix/process.c.o - [ 22%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/posix/rw_lock.c.o - [ 23%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/posix/system_info.c.o - [ 23%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/posix/system_resource_utils.c.o - [ 24%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/posix/thread.c.o - [ 24%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/posix/time.c.o - [ 24%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/priority_queue.c.o - [ 25%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/process_common.c.o - [ 25%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/ref_count.c.o - [ 25%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/ring_buffer.c.o - [ 25%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/system_info.c.o - [ 26%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/statistics.c.o - [ 26%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/string.c.o - [ 27%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/task_scheduler.c.o - [ 27%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/thread_scheduler.c.o - [ 27%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/thread_shared.c.o - [ 28%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/uri.c.o - [ 28%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/uuid.c.o - [ 29%] Building C object aws-c-common/CMakeFiles/aws-c-common.dir/source/xml_parser.c.o - [ 29%] Linking C static library libaws-c-common.a - [ 29%] Built target aws-c-common - [ 29%] Building C object aws-c-sdkutils/CMakeFiles/aws-c-sdkutils.dir/source/aws_profile.c.o - [ 29%] Building C object aws-c-sdkutils/CMakeFiles/aws-c-sdkutils.dir/source/endpoints_ruleset.c.o - [ 30%] Building C object aws-c-sdkutils/CMakeFiles/aws-c-sdkutils.dir/source/endpoints_types_impl.c.o - [ 30%] Building C object aws-c-sdkutils/CMakeFiles/aws-c-sdkutils.dir/source/endpoints_regex.c.o - [ 31%] Building C object aws-c-sdkutils/CMakeFiles/aws-c-sdkutils.dir/source/endpoints_rule_engine.c.o - [ 31%] Building C object aws-c-compression/CMakeFiles/aws-c-compression.dir/source/compression.c.o - [ 31%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/cal.c.o - [ 31%] Building C object aws-c-sdkutils/CMakeFiles/aws-c-sdkutils.dir/source/endpoints_standard_lib.c.o - [ 31%] Building C object aws-c-sdkutils/CMakeFiles/aws-c-sdkutils.dir/source/endpoints_util.c.o - [ 31%] Building C object aws-c-sdkutils/CMakeFiles/aws-c-sdkutils.dir/source/resource_name.c.o - [ 31%] Building C object aws-checksums/CMakeFiles/aws-checksums.dir/source/checksums.c.o - [ 32%] Building C object aws-c-sdkutils/CMakeFiles/aws-c-sdkutils.dir/source/partitions.c.o - [ 33%] Building C object aws-c-compression/CMakeFiles/aws-c-compression.dir/source/huffman.c.o - [ 33%] Building C object aws-c-sdkutils/CMakeFiles/aws-c-sdkutils.dir/source/sdkutils.c.o - [ 33%] Building C object aws-c-compression/CMakeFiles/aws-c-compression.dir/source/huffman_testing.c.o - [ 34%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/darwin/commoncrypto_aes.c.o - [ 35%] Building C object aws-checksums/CMakeFiles/aws-checksums.dir/source/crc64.c.o - [ 35%] Building C object aws-checksums/CMakeFiles/aws-checksums.dir/source/crc32.c.o - [ 35%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/darwin/commoncrypto_hmac.c.o - [ 35%] Building C object aws-checksums/CMakeFiles/aws-checksums.dir/source/crc64_sw.c.o - [ 35%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/darwin/commoncrypto_md5.c.o - [ 35%] Building C object aws-checksums/CMakeFiles/aws-checksums.dir/source/crc_sw.c.o - [ 36%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/darwin/commoncrypto_platform_init.c.o - [ 37%] Building C object aws-checksums/CMakeFiles/aws-checksums.dir/source/arm/crc32c_arm.c.o - [ 37%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/darwin/commoncrypto_sha1.c.o - [ 37%] Linking C static library libaws-c-compression.a - [ 38%] Linking C static library libaws-c-sdkutils.a - [ 39%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/darwin/commoncrypto_sha256.c.o - [ 39%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/darwin/commoncrypto_sha512.c.o - [ 39%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/darwin/securityframework_ecc.c.o - [ 40%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/darwin/securityframework_rsa.c.o - [ 40%] Building C object aws-checksums/CMakeFiles/aws-checksums.dir/source/arm/crc64_arm.c.o - [ 40%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/der.c.o - [ 40%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/ecc.c.o - [ 41%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/ed25519.c.o - [ 41%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/hash.c.o - [ 41%] Built target aws-c-compression - [ 41%] Built target aws-c-sdkutils - [ 41%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/hmac.c.o - [ 42%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/rsa.c.o - [ 42%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/shared/ed25519.c.o - [ 43%] Linking C static library libaws-checksums.a - [ 43%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/shared/lccrypto_common.c.o - [ 44%] Building C object aws-c-cal/CMakeFiles/aws-c-cal.dir/source/symmetric_cipher.c.o - [ 44%] Built target aws-checksums - [ 44%] Linking C static library libaws-c-cal.a - [ 44%] Built target aws-c-cal - [ 44%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/alpn_handler.c.o - [ 45%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/async_stream.c.o - [ 45%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/bsd/kqueue_event_loop.c.o - [ 45%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/channel.c.o - [ 46%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/channel_bootstrap.c.o - [ 46%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/event_loop.c.o - [ 47%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/darwin/nw_socket.c.o - [ 47%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/darwin/dispatch_queue_event_loop.c.o - [ 48%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/exponential_backoff_retry_strategy.c.o - [ 48%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/future.c.o - [ 48%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/darwin/darwin_pki_utils.c.o - [ 48%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/darwin/secure_transport_tls_channel_handler.c.o - [ 49%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/host_resolver.c.o - [ 49%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/io.c.o - [ 49%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/message_pool.c.o - [ 50%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/no_retry_strategy.c.o - [ 50%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/pem.c.o - [ 50%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/pkcs11_lib.c.o - [ 51%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/pkcs11_tls_op_handler.c.o - [ 51%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/posix/host_resolver.c.o - [ 51%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/posix/pipe.c.o - [ 52%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/posix/shared_library.c.o - [ 52%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/posix/socket.c.o - [ 52%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/retry_strategy.c.o - [ 53%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/socket.c.o - [ 53%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/socket_channel_handler.c.o - [ 54%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/socket_shared.c.o - [ 54%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/standard_retry_strategy.c.o - [ 54%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/statistics.c.o - [ 55%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/stream.c.o - [ 55%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/tls_channel_handler.c.o - [ 55%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/tls_channel_handler_shared.c.o - [ 56%] Building C object aws-c-io/CMakeFiles/aws-c-io.dir/source/tracing.c.o - [ 56%] Linking C static library libaws-c-io.a - [ 56%] Built target aws-c-io - [ 57%] Building C object aws-c-event-stream/CMakeFiles/aws-c-event-stream.dir/source/event_stream.c.o - [ 57%] Building C object aws-c-event-stream/CMakeFiles/aws-c-event-stream.dir/source/event_stream_channel_handler.c.o - [ 58%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/h1_encoder.c.o - [ 59%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/connection_monitor.c.o - [ 59%] Building C object aws-c-event-stream/CMakeFiles/aws-c-event-stream.dir/source/event_stream_rpc.c.o - [ 60%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/connection.c.o - [ 60%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/h1_connection.c.o - [ 61%] Building C object aws-c-event-stream/CMakeFiles/aws-c-event-stream.dir/source/event_stream_rpc_client.c.o - [ 61%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/connection_manager.c.o - [ 61%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/h1_decoder.c.o - [ 61%] Building C object aws-c-event-stream/CMakeFiles/aws-c-event-stream.dir/source/event_stream_rpc_server.c.o - [ 61%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/h1_stream.c.o - [ 61%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/h2_connection.c.o - [ 62%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/h2_decoder.c.o - [ 62%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/h2_frames.c.o - [ 62%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/h2_stream.c.o - [ 63%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/hpack.c.o - [ 63%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/hpack_decoder.c.o - [ 63%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/hpack_encoder.c.o - [ 64%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/hpack_huffman_static.c.o - [ 64%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/http.c.o - [ 65%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/http2_stream_manager.c.o - [ 65%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/no_proxy.c.o - [ 65%] Linking C static library libaws-c-event-stream.a - [ 65%] Built target aws-c-event-stream - [ 65%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/proxy_connection.c.o - [ 66%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/proxy_strategy.c.o - [ 66%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/random_access_set.c.o - [ 66%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/request_response.c.o - [ 67%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/statistics.c.o - [ 67%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/strutil.c.o - [ 67%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/websocket.c.o - [ 68%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/websocket_bootstrap.c.o - [ 68%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/websocket_decoder.c.o - [ 69%] Building C object aws-c-http/CMakeFiles/aws-c-http.dir/source/websocket_encoder.c.o - [ 69%] Linking C static library libaws-c-http.a - [ 69%] Built target aws-c-http - [ 69%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/auth.c.o - [ 69%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/credentials_provider_cached.c.o - [ 69%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/credentials_provider_default_chain.c.o - [ 70%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/credentials_provider_anonymous.c.o - [ 70%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/credentials_provider_chain.c.o - [ 71%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/aws_profile.c.o - [ 71%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/credentials.c.o - [ 71%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/client.c.o - [ 72%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/credentials_provider_cognito.c.o - [ 72%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/aws_imds_client.c.o - [ 72%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/credentials_provider_delegate.c.o - [ 72%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/aws_signing.c.o - [ 73%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/client_channel_handler.c.o - [ 74%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/credentials_provider_ecs.c.o - [ 74%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/client_impl_shared.c.o - [ 74%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/fixed_header.c.o - [ 75%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/mqtt.c.o - [ 75%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/mqtt311_decoder.c.o - [ 75%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/credentials_provider_environment.c.o - [ 76%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/mqtt311_listener.c.o - [ 77%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/credentials_provider_imds.c.o - [ 77%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/mqtt_subscription_set.c.o - [ 77%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/credentials_provider_process.c.o - [ 77%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/credentials_provider_profile.c.o - [ 78%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/credentials_provider_sso.c.o - [ 78%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/credentials_provider_static.c.o - [ 78%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/credentials_provider_sts.c.o - [ 78%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/packets.c.o - [ 79%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/credentials_provider_sts_web_identity.c.o - [ 80%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/request-response/protocol_adapter.c.o - [ 80%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/request-response/request_response_client.c.o - [ 80%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/credentials_provider_x509.c.o - [ 80%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/request-response/request_response_subscription_set.c.o - [ 80%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/credentials_utils.c.o - [ 81%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/key_derivation.c.o - [ 81%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/signable.c.o - [ 82%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/request-response/subscription_manager.c.o - [ 82%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/shared.c.o - [ 82%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/topic_tree.c.o - [ 83%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/v5/mqtt5_callbacks.c.o - [ 83%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/signable_chunk.c.o - [ 83%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/v5/mqtt5_client.c.o - [ 84%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/signable_http_request.c.o - [ 84%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/signable_trailer.c.o - [ 85%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/v5/mqtt5_decoder.c.o - [ 86%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/signing.c.o - [ 86%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/v5/mqtt5_encoder.c.o - [ 86%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/v5/mqtt5_listener.c.o - [ 86%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/signing_config.c.o - [ 86%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/signing_result.c.o - [ 87%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/v5/mqtt5_options_storage.c.o - [ 88%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/sigv4_http_request.c.o - [ 88%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/v5/mqtt5_to_mqtt3_adapter.c.o - [ 88%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/v5/mqtt5_topic_alias.c.o - [ 88%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/sso_token_utils.c.o - [ 89%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/v5/mqtt5_types.c.o - [ 89%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/token_provider_sso_profile.c.o - [ 90%] Building C object aws-c-auth/CMakeFiles/aws-c-auth.dir/source/token_provider_sso_session.c.o - [ 90%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/v5/mqtt5_utils.c.o - [ 90%] Building C object aws-c-mqtt/CMakeFiles/aws-c-mqtt.dir/source/v5/rate_limiters.c.o - [ 90%] Linking C static library libaws-c-auth.a - [ 91%] Linking C static library libaws-c-mqtt.a - [ 91%] Built target aws-c-auth - [ 91%] Built target aws-c-mqtt - [ 91%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3.c.o - [ 91%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_buffer_pool.c.o - [ 92%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_auto_ranged_put.c.o - [ 92%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_checksums.c.o - [ 92%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_client.c.o - [ 92%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_auto_ranged_get.c.o - [ 92%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_default_meta_request.c.o - [ 93%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_chunk_stream.c.o - [ 94%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_checksum_context.c.o - [ 94%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_copy_object.c.o - [ 95%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_default_buffer_pool.c.o - [ 95%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_checksum_stream.c.o - [ 95%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_endpoint.c.o - [ 96%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_list_objects.c.o - [ 96%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_list_parts.c.o - [ 96%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_meta_request.c.o - [ 97%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_paginator.c.o - [ 97%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_parallel_input_stream.c.o - [ 98%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_part_streaming_input_stream.c.o - [ 98%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_platform_info.c.o - [ 98%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_request.c.o - [ 99%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_request_messages.c.o - [ 99%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3_util.c.o - [ 99%] Building C object aws-c-s3/CMakeFiles/aws-c-s3.dir/source/s3express_credentials_provider.c.o - [100%] Linking C static library libaws-c-s3.a - [100%] Built target aws-c-s3 - Install the project... - -- Install configuration: "RelWithDebInfo" - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/kdf.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/time.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/pem.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/nid.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/ssl3.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/ossl_typ.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/dtls1.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/asm_base.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/err.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/bn.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/ctrdrbg.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/experimental - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/experimental/kem_deterministic_api.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/blowfish.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/engine.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/bytestring.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/x509.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/asn1_mac.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/pool.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/ec_key.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/ui.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/base64.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/sha.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/asn1.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/chacha.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/opensslconf.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/arm_arch.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/bio.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/dh.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/digest.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/boringssl_prefix_symbols_asm.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/x509v3.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/boringssl_prefix_symbols_nasm.inc - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/conf.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/poly1305.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/hkdf.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/type_check.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/siphash.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/md5.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/x509_vfy.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/pkcs8.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/safestack.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/buf.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/obj.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/ecdsa.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/cipher.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/objects.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/pkcs12.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/crypto.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/opensslv.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/pkcs7.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/obj_mac.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/posix_time.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/buffer.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/ssl.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/thread.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/hpke.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/evp.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/e_os2.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/md4.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/hmac.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/boringssl_prefix_symbols.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/service_indicator.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/aes.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/blake2.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/is_awslc.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/rc4.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/target.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/cpu.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/stack.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/des.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/ocsp.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/ec.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/hrss.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/ecdh.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/rand.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/aead.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/span.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/rsa.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/mem.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/ripemd.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/curve25519.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/tls1.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/dsa.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/x509v3_errors.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/trust_token.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/asn1t.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/cmac.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/evp_errors.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/lhash.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/ex_data.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/sshkdf.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/openssl/base.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/libcrypto.a - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/crypto - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/crypto/cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/crypto/cmake/crypto-config.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/crypto/cmake/static - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/crypto/cmake/static/crypto-targets-relwithdebinfo.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/crypto/cmake/static/crypto-targets.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/pkgconfig - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/pkgconfig/openssl.pc - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/pkgconfig/libssl.pc - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/pkgconfig/libcrypto.pc - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/allocator.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/array_list.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/array_list.inl - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/assert.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/atomics.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/atomics.inl - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/atomics_fallback.inl - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/atomics_gnu.inl - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/atomics_gnu_old.inl - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/atomics_msvc.inl - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/byte_buf.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/byte_order.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/byte_order.inl - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/cache.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/cbor.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/clock.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/clock.inl - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/command_line_parser.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/common.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/condition_variable.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/cpuid.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/cross_process_lock.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/date_time.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/device_random.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/encoding.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/encoding.inl - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/environment.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/error.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/error.inl - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/exports.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/fifo_cache.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/file.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/hash_table.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/host_utils.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/json.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/lifo_cache.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/linked_hash_table.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/linked_list.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/linked_list.inl - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/log_channel.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/log_formatter.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/log_writer.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/logging.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/lru_cache.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/macros.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/math.cbmc.inl - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/math.fallback.inl - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/math.gcc_arm64_asm.inl - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/math.gcc_builtin.inl - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/math.gcc_overflow.inl - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/math.gcc_x64_asm.inl - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/math.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/math.inl - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/math.msvc_x64.inl - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/mutex.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/package.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/platform.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/predicates.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/priority_queue.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/process.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/ref_count.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/ring_buffer.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/ring_buffer.inl - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/rw_lock.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/shutdown_types.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/statistics.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/stdbool.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/stdint.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/string.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/string.inl - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/system_info.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/system_resource_util.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/task_scheduler.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/thread.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/thread_scheduler.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/time.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/uri.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/uuid.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/xml_parser.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/zero.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/zero.inl - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/posix/common.inl - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/config.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/testing/aws_test_harness.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/common/external/ittnotify.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/libaws-c-common.a - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-common/static/aws-c-common-targets.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-common/static/aws-c-common-targets-relwithdebinfo.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-common/aws-c-common-config.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-common/modules/AwsCFlags.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-common/modules/AwsCheckHeaders.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-common/modules/AwsSharedLibSetup.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-common/modules/AwsTestHarness.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-common/modules/AwsLibFuzzer.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-common/modules/AwsSanitizers.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-common/modules/AwsSIMD.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-common/modules/AwsFindPackage.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-common/modules/AwsFeatureTests.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-common/modules/AwsCRuntime.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/libaws-c-sdkutils.a - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/sdkutils/aws_profile.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/sdkutils/endpoints_rule_engine.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/sdkutils/exports.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/sdkutils/partitions.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/sdkutils/resource_name.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/sdkutils/sdkutils.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-sdkutils/static/aws-c-sdkutils-targets.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-sdkutils/static/aws-c-sdkutils-targets-relwithdebinfo.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-sdkutils/aws-c-sdkutils-config.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/libaws-c-cal.a - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/cal/cal.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/cal/ecc.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/cal/ed25519.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/cal/exports.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/cal/hash.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/cal/hmac.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/cal/rsa.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/cal/symmetric_cipher.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-cal/static/aws-c-cal-targets.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-cal/static/aws-c-cal-targets-relwithdebinfo.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-cal/aws-c-cal-config.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-cal/modules/Findcrypto.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/libaws-c-io.a - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/async_stream.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/channel.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/channel_bootstrap.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/event_loop.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/exports.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/file_utils.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/future.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/host_resolver.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/io.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/logging.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/message_pool.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/pem.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/pipe.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/pkcs11.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/retry_strategy.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/shared_library.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/socket.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/socket_channel_handler.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/statistics.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/stream.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/tls_channel_handler.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/io/uri.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/testing/async_stream_tester.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/testing/io_testing_channel.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/testing/stream_tester.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-io/static/aws-c-io-targets.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-io/static/aws-c-io-targets-relwithdebinfo.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-io/aws-c-io-config.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/libaws-checksums.a - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/checksums/checksums.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/checksums/crc.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/checksums/exports.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-checksums/static/aws-checksums-targets.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-checksums/static/aws-checksums-targets-relwithdebinfo.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-checksums/aws-checksums-config.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/libaws-c-compression.a - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/compression/compression.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/compression/exports.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/compression/huffman.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-compression/static/aws-c-compression-targets.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-compression/static/aws-c-compression-targets-relwithdebinfo.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-compression/aws-c-compression-config.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/libaws-c-event-stream.a - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/event-stream/event_stream.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/event-stream/event_stream_channel_handler.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/event-stream/event_stream_exports.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/event-stream/event_stream_rpc.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/event-stream/event_stream_rpc_client.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/event-stream/event_stream_rpc_server.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-event-stream/static/aws-c-event-stream-targets.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-event-stream/static/aws-c-event-stream-targets-relwithdebinfo.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-event-stream/aws-c-event-stream-config.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/libaws-c-http.a - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/http/connection.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/http/connection_manager.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/http/exports.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/http/http.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/http/http2_stream_manager.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/http/proxy.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/http/request_response.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/http/server.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/http/statistics.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/http/status_code.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/http/websocket.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-http/static/aws-c-http-targets.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-http/static/aws-c-http-targets-relwithdebinfo.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-http/aws-c-http-config.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/libaws-c-auth.a - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/auth/auth.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/auth/aws_imds_client.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/auth/credentials.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/auth/exports.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/auth/signable.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/auth/signing.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/auth/signing_config.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/auth/signing_result.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-auth/static/aws-c-auth-targets.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-auth/static/aws-c-auth-targets-relwithdebinfo.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-auth/aws-c-auth-config.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/libaws-c-mqtt.a - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/mqtt/client.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/mqtt/exports.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/mqtt/mqtt.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/mqtt/v5/mqtt5_client.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/mqtt/v5/mqtt5_listener.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/mqtt/v5/mqtt5_packet_storage.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/mqtt/v5/mqtt5_types.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/mqtt/request-response/request_response_client.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/mqtt/private/mqtt_client_test_helper.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-mqtt/static/aws-c-mqtt-targets.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-mqtt/static/aws-c-mqtt-targets-relwithdebinfo.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-mqtt/aws-c-mqtt-config.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/libaws-c-s3.a - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/s3/exports.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/s3/s3.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/s3/s3_buffer_pool.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/s3/s3_client.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/s3/s3_endpoint_resolver.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include/aws/s3/s3express_credentials_provider.h - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-s3/static/aws-c-s3-targets.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-s3/static/aws-c-s3-targets-relwithdebinfo.cmake - -- Installing: /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib/cmake/aws-c-s3/aws-c-s3-config.cmake - > /opt/homebrew/bin/cmake -H/Users/musatkd/dev/aws-crt-python/crt -B/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps -DCMAKE_INSTALL_PREFIX=/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install -DCMAKE_BUILD_TYPE=RelWithDebInfo -DAWS_USE_LIBCRYPTO_TO_SUPPORT_ED25519_EVERYWHERE=ON -DCMAKE_OSX_DEPLOYMENT_TARGET=14.4 - > /opt/homebrew/bin/cmake --build /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps --config RelWithDebInfo --target install - foo - ['clang', '-bundle', '-undefined', 'dynamic_lookup', '-L/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib', '-L/Users/musatkd/.pyenv/versions/3.11.9/lib', '-Wl,-search_paths_first', '-L/opt/homebrew/opt/readline/lib', '-L/opt/homebrew/opt/readline/lib', '-L/Users/musatkd/.pyenv/versions/3.11.9/lib', '-Wl,-rpath,/Users/musatkd/.pyenv/versions/3.11.9/lib', '-L/opt/homebrew/lib', '-Wl,-rpath,/opt/homebrew/lib', '-L/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib', '-L/opt/homebrew/opt/readline/lib', '-L/opt/homebrew/opt/readline/lib', '-L/Users/musatkd/.pyenv/versions/3.11.9/lib', '-Wl,-rpath,/Users/musatkd/.pyenv/versions/3.11.9/lib', '-L/opt/homebrew/lib', '-Wl,-rpath,/opt/homebrew/lib', '-L/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib'] - building '_awscrt' extension - creating /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source - clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/auth_credentials.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/auth_credentials.o -Wno-strict-aliasing -std=gnu99 - clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/auth_signer.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/auth_signer.o -Wno-strict-aliasing -std=gnu99 - clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/auth_signing_config.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/auth_signing_config.o -Wno-strict-aliasing -std=gnu99 - clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/cbor.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/cbor.o -Wno-strict-aliasing -std=gnu99 - clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/common.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/common.o -Wno-strict-aliasing -std=gnu99 - clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/crc.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/crc.o -Wno-strict-aliasing -std=gnu99 - clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/crypto.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/crypto.o -Wno-strict-aliasing -std=gnu99 - clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/event_stream_headers.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/event_stream_headers.o -Wno-strict-aliasing -std=gnu99 - clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/event_stream_rpc_client_connection.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/event_stream_rpc_client_connection.o -Wno-strict-aliasing -std=gnu99 - clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/event_stream_rpc_client_continuation.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/event_stream_rpc_client_continuation.o -Wno-strict-aliasing -std=gnu99 - clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/http_connection.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/http_connection.o -Wno-strict-aliasing -std=gnu99 - clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/http_headers.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/http_headers.o -Wno-strict-aliasing -std=gnu99 - clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/http_message.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/http_message.o -Wno-strict-aliasing -std=gnu99 - clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/http_proxy.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/http_proxy.o -Wno-strict-aliasing -std=gnu99 - clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/http_stream.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/http_stream.o -Wno-strict-aliasing -std=gnu99 - clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/io.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/io.o -Wno-strict-aliasing -std=gnu99 - clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/module.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/module.o -Wno-strict-aliasing -std=gnu99 - clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/mqtt5_client.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/mqtt5_client.o -Wno-strict-aliasing -std=gnu99 - clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/mqtt_client.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/mqtt_client.o -Wno-strict-aliasing -std=gnu99 - clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/mqtt_client_connection.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/mqtt_client_connection.o -Wno-strict-aliasing -std=gnu99 - clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/mqtt_request_response.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/mqtt_request_response.o -Wno-strict-aliasing -std=gnu99 - clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/pkcs11_lib.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/pkcs11_lib.o -Wno-strict-aliasing -std=gnu99 - clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/s3_client.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/s3_client.o -Wno-strict-aliasing -std=gnu99 - clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/s3_meta_request.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/s3_meta_request.o -Wno-strict-aliasing -std=gnu99 - clang -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -DPy_LIMITED_API=0x030B0000 -I/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/include -I/Users/musatkd/dev/aws-crt-python/.venv/include -I/Users/musatkd/.pyenv/versions/3.11.9/include/python3.11 -c source/websocket.c -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/websocket.o -Wno-strict-aliasing -std=gnu99 - clang -bundle -undefined dynamic_lookup -L/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib -L/Users/musatkd/.pyenv/versions/3.11.9/lib -Wl,-search_paths_first -L/opt/homebrew/opt/readline/lib -L/opt/homebrew/opt/readline/lib -L/Users/musatkd/.pyenv/versions/3.11.9/lib -Wl,-rpath,/Users/musatkd/.pyenv/versions/3.11.9/lib -L/opt/homebrew/lib -Wl,-rpath,/opt/homebrew/lib -L/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib -L/opt/homebrew/opt/readline/lib -L/opt/homebrew/opt/readline/lib -L/Users/musatkd/.pyenv/versions/3.11.9/lib -Wl,-rpath,/Users/musatkd/.pyenv/versions/3.11.9/lib -L/opt/homebrew/lib -Wl,-rpath,/opt/homebrew/lib -L/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/auth_credentials.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/auth_signer.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/auth_signing_config.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/cbor.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/common.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/crc.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/crypto.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/event_stream_headers.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/event_stream_rpc_client_connection.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/event_stream_rpc_client_continuation.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/http_connection.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/http_headers.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/http_message.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/http_proxy.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/http_stream.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/io.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/module.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/mqtt5_client.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/mqtt_client.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/mqtt_client_connection.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/mqtt_request_response.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/pkcs11_lib.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/s3_client.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/s3_meta_request.o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/source/websocket.o -L/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/deps/install/lib -L/Users/musatkd/.pyenv/versions/3.11.9/lib -laws-c-s3 -laws-c-mqtt -laws-c-auth -laws-c-http -laws-c-event-stream -laws-c-compression -laws-checksums -laws-c-io -laws-c-cal -laws-c-sdkutils -laws-c-common -lcrypto -o /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmp6lc9g4v0.build-lib/_awscrt.abi3.so -framework Security - ld: warning: duplicate -rpath '/Users/musatkd/.pyenv/versions/3.11.9/lib' ignored - ld: warning: duplicate -rpath '/opt/homebrew/lib' ignored - copying /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmp6lc9g4v0.build-lib/_awscrt.abi3.so -> - running egg_info - creating /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/awscrt.egg-info - writing /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/awscrt.egg-info/PKG-INFO - writing dependency_links to /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/awscrt.egg-info/dependency_links.txt - writing requirements to /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/awscrt.egg-info/requires.txt - writing top-level names to /var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/awscrt.egg-info/top_level.txt - writing manifest file '/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/awscrt.egg-info/SOURCES.txt' - reading manifest file '/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/awscrt.egg-info/SOURCES.txt' - reading manifest template 'MANIFEST.in' - warning: no previously-included files matching '.travis*' found anywhere in distribution - warning: no previously-included files matching '.travis/**' found anywhere in distribution - no previously-included directories found matching 'crt/aws-c-s3/benchmarks' - no previously-included directories found matching 'crt/aws-lc/third_party/jitterentropy/tests' - no previously-included directories found matching 'crt/aws-lc/third_party/jitterentropy/doc' - adding license file 'LICENSE' - adding license file 'NOTICE' - writing manifest file '/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpvvj3fga2.build-temp/awscrt.egg-info/SOURCES.txt' - Editable install will be performed using a meta path finder. - - Options like `package-data`, `include/exclude-package-data` or - `packages.find.exclude/include` may have no effect. - - adding '__editable___awscrt_1_0_0_dev0_finder.py' - adding '__editable__.awscrt-1.0.0.dev0.pth' - creating '/private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-wheel-dnfmnm23/.tmp-sznk5w2u/awscrt-1.0.0.dev0-0.editable-cp311-abi3-macosx_14_0_arm64.whl' and adding '/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/tmpv28kq8ooawscrt-1.0.0.dev0-0.editable-cp311-abi3-macosx_14_0_arm64.whl' to it - adding 'awscrt-1.0.0.dev0.dist-info/licenses/LICENSE' - adding 'awscrt-1.0.0.dev0.dist-info/licenses/NOTICE' - adding 'awscrt-1.0.0.dev0.dist-info/METADATA' - adding 'awscrt-1.0.0.dev0.dist-info/WHEEL' - adding 'awscrt-1.0.0.dev0.dist-info/top_level.txt' - adding 'awscrt-1.0.0.dev0.dist-info/RECORD' - /private/var/folders/mg/_4xdhfr967d345z5ykd2rc700000gq/T/pip-build-env-u75ex_bl/overlay/lib/python3.11/site-packages/setuptools/command/editable_wheel.py:351: InformationOnly: Editable installation. - !! - - ******************************************************************************** - Please be careful with folders in your working directory with the same - name as your package as they may take precedence during imports. - ******************************************************************************** - - !! - with strategy, WheelFile(wheel_path, "w") as wheel_obj: - -[notice] A new release of pip is available: 24.0 -> 25.2 -[notice] To update, run: pip install --upgrade pip From a12270ec66c891555e4f4d413e3e8a40fa24f5e4 Mon Sep 17 00:00:00 2001 From: DmitriyMusatkin Date: Tue, 28 Oct 2025 11:53:09 -0700 Subject: [PATCH 4/6] linux as well --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a9a512ceb..31ca920fc 100644 --- a/setup.py +++ b/setup.py @@ -386,7 +386,8 @@ def build_extension(self, ext): # And then we have fun failures due to lib mismatch. # I could not find a cleaner way, so lets just hook into linker command and make sure # our libs appear before other libs. - if sys.platform == 'darwin' and using_libcrypto() and not using_system_libs() and not using_system_libcrypto(): + if ((sys.platform == 'darwin' or sys.platform == 'linux') + and using_libcrypto() and not using_system_libs() and not using_system_libcrypto()): orig_linker_so = self.compiler.linker_so[:] From 00aa8a4e60ee6f6cfaf8d01517bf583dd29113b3 Mon Sep 17 00:00:00 2001 From: DmitriyMusatkin Date: Tue, 28 Oct 2025 11:56:00 -0700 Subject: [PATCH 5/6] lint --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 31ca920fc..c55754ad2 100644 --- a/setup.py +++ b/setup.py @@ -386,7 +386,7 @@ def build_extension(self, ext): # And then we have fun failures due to lib mismatch. # I could not find a cleaner way, so lets just hook into linker command and make sure # our libs appear before other libs. - if ((sys.platform == 'darwin' or sys.platform == 'linux') + if ((sys.platform == 'darwin' or sys.platform == 'linux') and using_libcrypto() and not using_system_libs() and not using_system_libcrypto()): orig_linker_so = self.compiler.linker_so[:] From 363894b986e8a67c24b71f4a88ec5dafa192ff5b Mon Sep 17 00:00:00 2001 From: DmitriyMusatkin Date: Tue, 28 Oct 2025 11:59:28 -0700 Subject: [PATCH 6/6] ugh --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c55754ad2..e0e6486cd 100644 --- a/setup.py +++ b/setup.py @@ -387,7 +387,7 @@ def build_extension(self, ext): # I could not find a cleaner way, so lets just hook into linker command and make sure # our libs appear before other libs. if ((sys.platform == 'darwin' or sys.platform == 'linux') - and using_libcrypto() and not using_system_libs() and not using_system_libcrypto()): + and using_libcrypto() and not using_system_libs() and not using_system_libcrypto()): orig_linker_so = self.compiler.linker_so[:]