unum-cloud / usearch

Fast Open-Source Search & Clustering engine × for Vectors & 🔜 Strings × in C++, C, Python, JavaScript, Rust, Java, Objective-C, Swift, C#, GoLang, and Wolfram 🔍
https://unum-cloud.github.io/usearch/
Apache License 2.0
2.28k stars 143 forks source link

Bug: unable to build on AWS Lambda #301

Closed jlarmstrongiv closed 1 year ago

jlarmstrongiv commented 1 year ago

Describe the bug

Cannot build a version of usearch@2.8.6 for AWS Lambda public.ecr.aws/lambda/nodejs:18-x86_64

Steps to reproduce

Expected behavior

Build passes

USearch version

2.8.6

Operating System

Amazon Linux 2

Hardware architecture

x86

Which interface are you using?

Other bindings

Contact Details

No response

Is there an existing issue for this?

Code of Conduct

jlarmstrongiv commented 1 year ago
Error logs ``` npx tfd layers --architecture x86_64 --method docker usearch@2.8.6 --npm-install-flag="--build-from-source" --preinstall 'yum install tar git python3 make gcc-c++ -y && yum groupinstall "Development Tools" -y' Command failed with exit code 1: docker run --entrypoint /bin/bash -v /var/folders/zf/2l3hc6vn12v7r89t45mhxzhm0000gn/T/018bb133-b09f-7638-8537-976a31b593dc:/var/task --rm public.ecr.aws/lambda/nodejs:18-x86_64 -c npm install -g npm@10.2.3 && yum install tar git python3 make gcc-c++ -y && yum groupinstall "Development Tools" -y && npm install --build-from-source usearch@2.8.6 There is no installed groups file. Maybe run: yum groups mark convert (see man yum) npm ERR! code 1 npm ERR! path /var/task/node_modules/usearch npm ERR! command failed npm ERR! command sh -c node-gyp rebuild npm ERR! make: Entering directory `/var/task/node_modules/usearch/build' npm ERR! CC(target) Release/obj.target/nothing/../node-addon-api/nothing.o npm ERR! rm -f Release/obj.target/../node-addon-api/nothing.a Release/obj.target/../node-addon-api/nothing.a.ar-file-list; mkdir -p `dirname Release/obj.target/../node-addon-api/nothing.a` npm ERR! ar crs Release/obj.target/../node-addon-api/nothing.a @Release/obj.target/../node-addon-api/nothing.a.ar-file-list npm ERR! COPY Release/nothing.a npm ERR! CXX(target) Release/obj.target/usearch/javascript/lib.o npm ERR! make: Leaving directory `/var/task/node_modules/usearch/build' npm ERR! gyp info it worked if it ends with ok npm ERR! gyp info using node-gyp@10.0.1 npm ERR! gyp info using node@18.18.2 | linux | x64 npm ERR! gyp info find Python using Python version 3.7.16 found at "/usr/bin/python3" npm ERR! gyp http GET https://nodejs.org/download/release/v18.18.2/node-v18.18.2-headers.tar.gz npm ERR! gyp http 200 https://nodejs.org/download/release/v18.18.2/node-v18.18.2-headers.tar.gz npm ERR! gyp http GET https://nodejs.org/download/release/v18.18.2/SHASUMS256.txt npm ERR! gyp http 200 https://nodejs.org/download/release/v18.18.2/SHASUMS256.txt npm ERR! gyp info spawn /usr/bin/python3 npm ERR! gyp info spawn args [ npm ERR! gyp info spawn args '/var/lang/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py', npm ERR! gyp info spawn args 'binding.gyp', npm ERR! gyp info spawn args '-f', npm ERR! gyp info spawn args 'make', npm ERR! gyp info spawn args '-I', npm ERR! gyp info spawn args '/var/task/node_modules/usearch/build/config.gypi', npm ERR! gyp info spawn args '-I', npm ERR! gyp info spawn args '/var/lang/lib/node_modules/npm/node_modules/node-gyp/addon.gypi', npm ERR! gyp info spawn args '-I', npm ERR! gyp info spawn args '/root/.cache/node-gyp/18.18.2/include/node/common.gypi', npm ERR! gyp info spawn args '-Dlibrary=shared_library', npm ERR! gyp info spawn args '-Dvisibility=default', npm ERR! gyp info spawn args '-Dnode_root_dir=/root/.cache/node-gyp/18.18.2', npm ERR! gyp info spawn args '-Dnode_gyp_dir=/var/lang/lib/node_modules/npm/node_modules/node-gyp', npm ERR! gyp info spawn args '-Dnode_lib_file=/root/.cache/node-gyp/18.18.2/<(target_arch)/node.lib', npm ERR! gyp info spawn args '-Dmodule_root_dir=/var/task/node_modules/usearch', npm ERR! gyp info spawn args '-Dnode_engine=v8', npm ERR! gyp info spawn args '--depth=.', npm ERR! gyp info spawn args '--no-parallel', npm ERR! gyp info spawn args '--generator-output', npm ERR! gyp info spawn args 'build', npm ERR! gyp info spawn args '-Goutput_dir=.' npm ERR! gyp info spawn args ] npm ERR! gyp info spawn make npm ERR! gyp info spawn args [ 'BUILDTYPE=Release', '-C', 'build' ] npm ERR! In file included from ../simsimd/include/simsimd/simsimd.h:15:0, npm ERR! from ../include/usearch/index_plugins.hpp:51, npm ERR! from ../include/usearch/index_dense.hpp:10, npm ERR! from ../javascript/lib.cpp:18: npm ERR! ../simsimd/include/simsimd/binary.h: In function ‘simsimd_f32_t simsimd_avx512_b8_hamming(const simsimd_b8_t*, const simsimd_b8_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/binary.h:149:17: error: ‘_mm512_loadu_epi8’ was not declared in this scope npm ERR! a_vec = _mm512_loadu_epi8(a); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/binary.h:149:17: note: suggested alternative: ‘_mm512_add_epi8’ npm ERR! a_vec = _mm512_loadu_epi8(a); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! _mm512_add_epi8 npm ERR! ../simsimd/include/simsimd/binary.h: In function ‘simsimd_f32_t simsimd_avx512_b8_jaccard(const simsimd_b8_t*, const simsimd_b8_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/binary.h:175:17: error: ‘_mm512_loadu_epi8’ was not declared in this scope npm ERR! a_vec = _mm512_loadu_epi8(a); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/binary.h:175:17: note: suggested alternative: ‘_mm512_add_epi8’ npm ERR! a_vec = _mm512_loadu_epi8(a); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! _mm512_add_epi8 npm ERR! In file included from ../simsimd/include/simsimd/simsimd.h:16:0, npm ERR! from ../include/usearch/index_plugins.hpp:51, npm ERR! from ../include/usearch/index_dense.hpp:10, npm ERR! from ../javascript/lib.cpp:18: npm ERR! ../simsimd/include/simsimd/probability.h: In function ‘simsimd_f32_t simsimd_avx512_f32_js(const simsimd_f32_t*, const simsimd_f32_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/probability.h:427:12: warning: unused variable ‘m_recip_approx’ [-Wunused-variable] npm ERR! __m512 m_recip_approx = _mm512_rcp14_ps(m_vec); npm ERR! ^~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h: At global scope: npm ERR! ../simsimd/include/simsimd/probability.h:453:8: error: ‘__m512h’ does not name a type; did you mean ‘__m512d’? npm ERR! inline __m512h npm ERR! ^~~~~~~ npm ERR! __m512d npm ERR! ../simsimd/include/simsimd/probability.h:473:87: error: attribute(target("avx512fp16")) is unknown npm ERR! simsimd_avx512_f16_kl(simsimd_f16_t const* a, simsimd_f16_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! ../simsimd/include/simsimd/probability.h: In function ‘simsimd_f32_t simsimd_avx512_f16_kl(const simsimd_f16_t*, const simsimd_f16_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/probability.h:474:5: error: ‘__m512h’ was not declared in this scope npm ERR! __m512h sum_vec = _mm512_set1_ph((_Float16)0); npm ERR! ^~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:474:5: note: suggested alternative: ‘__m512d’ npm ERR! __m512h sum_vec = _mm512_set1_ph((_Float16)0); npm ERR! ^~~~~~~ npm ERR! __m512d npm ERR! ../simsimd/include/simsimd/probability.h:475:13: error: expected ‘;’ before ‘epsilon_vec’ npm ERR! __m512h epsilon_vec = _mm512_set1_ph((_Float16)SIMSIMD_F16_DIVISION_EPSILON); npm ERR! ^~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:476:13: error: expected ‘;’ before ‘a_vec’ npm ERR! __m512h a_vec, b_vec; npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:481:9: error: ‘a_vec’ was not declared in this scope npm ERR! a_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)), epsilon_vec); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:481:9: note: suggested alternative: ‘iovec’ npm ERR! a_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)), epsilon_vec); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:481:43: error: ‘_mm512_castsi512_ph’ was not declared in this scope npm ERR! a_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:481:43: note: suggested alternative: ‘_mm512_castsi512_pd’ npm ERR! a_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_castsi512_pd npm ERR! ../simsimd/include/simsimd/probability.h:481:99: error: ‘epsilon_vec’ was not declared in this scope npm ERR! a_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)), epsilon_vec); npm ERR! ^~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:481:17: error: ‘_mm512_maskz_add_ph’ was not declared in this scope npm ERR! a_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:481:17: note: suggested alternative: ‘_mm512_maskz_add_ps’ npm ERR! a_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_maskz_add_ps npm ERR! ../simsimd/include/simsimd/probability.h:482:9: error: ‘b_vec’ was not declared in this scope npm ERR! b_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, b)), epsilon_vec); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:482:9: note: suggested alternative: ‘iovec’ npm ERR! b_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, b)), epsilon_vec); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:485:9: error: ‘a_vec’ was not declared in this scope npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:485:9: note: suggested alternative: ‘iovec’ npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:485:51: error: ‘_mm512_loadu_epi16’ was not declared in this scope npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:485:51: note: suggested alternative: ‘_mm512_madd_epi16’ npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! _mm512_madd_epi16 npm ERR! ../simsimd/include/simsimd/probability.h:485:31: error: ‘_mm512_castsi512_ph’ was not declared in this scope npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:485:31: note: suggested alternative: ‘_mm512_castsi512_pd’ npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_castsi512_pd npm ERR! ../simsimd/include/simsimd/probability.h:485:75: error: ‘epsilon_vec’ was not declared in this scope npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:485:17: error: ‘_mm512_add_ph’ was not declared in this scope npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:485:17: note: suggested alternative: ‘_mm512_add_ps’ npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~ npm ERR! _mm512_add_ps npm ERR! ../simsimd/include/simsimd/probability.h:486:9: error: ‘b_vec’ was not declared in this scope npm ERR! b_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(b)), epsilon_vec); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:486:9: note: suggested alternative: ‘iovec’ npm ERR! b_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(b)), epsilon_vec); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:489:13: error: expected ‘;’ before ‘ratio_vec’ npm ERR! __m512h ratio_vec = _mm512_div_ph(a_vec, b_vec); npm ERR! ^~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:490:13: error: expected ‘;’ before ‘log_ratio_vec’ npm ERR! __m512h log_ratio_vec = simsimd_avx512_f16_log2(ratio_vec); npm ERR! ^~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:491:13: error: expected ‘;’ before ‘prod_vec’ npm ERR! __m512h prod_vec = _mm512_mul_ph(a_vec, log_ratio_vec); npm ERR! ^~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:492:5: error: ‘sum_vec’ was not declared in this scope npm ERR! sum_vec = _mm512_add_ph(sum_vec, prod_vec); npm ERR! ^~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:492:5: note: suggested alternative: ‘shm_open’ npm ERR! sum_vec = _mm512_add_ph(sum_vec, prod_vec); npm ERR! ^~~~~~~ npm ERR! shm_open npm ERR! ../simsimd/include/simsimd/probability.h:492:38: error: ‘prod_vec’ was not declared in this scope npm ERR! sum_vec = _mm512_add_ph(sum_vec, prod_vec); npm ERR! ^~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:492:38: note: suggested alternative: ‘iovec’ npm ERR! sum_vec = _mm512_add_ph(sum_vec, prod_vec); npm ERR! ^~~~~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:492:15: error: ‘_mm512_add_ph’ was not declared in this scope npm ERR! sum_vec = _mm512_add_ph(sum_vec, prod_vec); npm ERR! ^~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:492:15: note: suggested alternative: ‘_mm512_add_ps’ npm ERR! sum_vec = _mm512_add_ph(sum_vec, prod_vec); npm ERR! ^~~~~~~~~~~~~ npm ERR! _mm512_add_ps npm ERR! ../simsimd/include/simsimd/probability.h:497:12: error: ‘_mm512_reduce_add_ph’ was not declared in this scope npm ERR! return _mm512_reduce_add_ph(sum_vec) * log2_normalizer; npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:497:12: note: suggested alternative: ‘_mm512_reduce_add_pd’ npm ERR! return _mm512_reduce_add_ph(sum_vec) * log2_normalizer; npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_reduce_add_pd npm ERR! ../simsimd/include/simsimd/probability.h: At global scope: npm ERR! ../simsimd/include/simsimd/probability.h:502:87: error: attribute(target("avx512fp16")) is unknown npm ERR! simsimd_avx512_f16_js(simsimd_f16_t const* a, simsimd_f16_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! ../simsimd/include/simsimd/probability.h: In function ‘simsimd_f32_t simsimd_avx512_f16_js(const simsimd_f16_t*, const simsimd_f16_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/probability.h:503:5: error: ‘__m512h’ was not declared in this scope npm ERR! __m512h sum_a_vec = _mm512_set1_ph((_Float16)0); npm ERR! ^~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:503:5: note: suggested alternative: ‘__m512d’ npm ERR! __m512h sum_a_vec = _mm512_set1_ph((_Float16)0); npm ERR! ^~~~~~~ npm ERR! __m512d npm ERR! ../simsimd/include/simsimd/probability.h:504:13: error: expected ‘;’ before ‘sum_b_vec’ npm ERR! __m512h sum_b_vec = _mm512_set1_ph((_Float16)0); npm ERR! ^~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:505:13: error: expected ‘;’ before ‘epsilon_vec’ npm ERR! __m512h epsilon_vec = _mm512_set1_ph((_Float16)SIMSIMD_F16_DIVISION_EPSILON); npm ERR! ^~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:506:13: error: expected ‘;’ before ‘a_vec’ npm ERR! __m512h a_vec, b_vec; npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:511:9: error: ‘a_vec’ was not declared in this scope npm ERR! a_vec = _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:511:9: note: suggested alternative: ‘iovec’ npm ERR! a_vec = _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:511:17: error: ‘_mm512_castsi512_ph’ was not declared in this scope npm ERR! a_vec = _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:511:17: note: suggested alternative: ‘_mm512_castsi512_pd’ npm ERR! a_vec = _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_castsi512_pd npm ERR! ../simsimd/include/simsimd/probability.h:512:9: error: ‘b_vec’ was not declared in this scope npm ERR! b_vec = _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, b)); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:512:9: note: suggested alternative: ‘iovec’ npm ERR! b_vec = _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, b)); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:515:9: error: ‘a_vec’ was not declared in this scope npm ERR! a_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(a)); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:515:9: note: suggested alternative: ‘iovec’ npm ERR! a_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(a)); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:515:37: error: ‘_mm512_loadu_epi16’ was not declared in this scope npm ERR! a_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(a)); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:515:37: note: suggested alternative: ‘_mm512_madd_epi16’ npm ERR! a_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(a)); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! _mm512_madd_epi16 npm ERR! ../simsimd/include/simsimd/probability.h:515:17: error: ‘_mm512_castsi512_ph’ was not declared in this scope npm ERR! a_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(a)); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:515:17: note: suggested alternative: ‘_mm512_castsi512_pd’ npm ERR! a_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(a)); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_castsi512_pd npm ERR! ../simsimd/include/simsimd/probability.h:516:9: error: ‘b_vec’ was not declared in this scope npm ERR! b_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(b)); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:516:9: note: suggested alternative: ‘iovec’ npm ERR! b_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(b)); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:519:13: error: expected ‘;’ before ‘m_vec’ npm ERR! __m512h m_vec = _mm512_mul_ph(_mm512_add_ph(a_vec, b_vec), _mm512_set1_ph((_Float16)0.5f)); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:520:51: error: ‘a_vec’ was not declared in this scope npm ERR! __mmask32 nonzero_mask_a = _mm512_cmp_ph_mask(a_vec, epsilon_vec, _CMP_GE_OQ); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:520:51: note: suggested alternative: ‘iovec’ npm ERR! __mmask32 nonzero_mask_a = _mm512_cmp_ph_mask(a_vec, epsilon_vec, _CMP_GE_OQ); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:520:58: error: ‘epsilon_vec’ was not declared in this scope npm ERR! __mmask32 nonzero_mask_a = _mm512_cmp_ph_mask(a_vec, epsilon_vec, _CMP_GE_OQ); npm ERR! ^~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:520:32: error: ‘_mm512_cmp_ph_mask’ was not declared in this scope npm ERR! __mmask32 nonzero_mask_a = _mm512_cmp_ph_mask(a_vec, epsilon_vec, _CMP_GE_OQ); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:520:32: note: suggested alternative: ‘_mm512_cmp_ps_mask’ npm ERR! __mmask32 nonzero_mask_a = _mm512_cmp_ph_mask(a_vec, epsilon_vec, _CMP_GE_OQ); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! _mm512_cmp_ps_mask npm ERR! ../simsimd/include/simsimd/probability.h:521:51: error: ‘b_vec’ was not declared in this scope npm ERR! __mmask32 nonzero_mask_b = _mm512_cmp_ph_mask(b_vec, epsilon_vec, _CMP_GE_OQ); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:521:51: note: suggested alternative: ‘iovec’ npm ERR! __mmask32 nonzero_mask_b = _mm512_cmp_ph_mask(b_vec, epsilon_vec, _CMP_GE_OQ); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:523:13: error: expected ‘;’ before ‘m_recip_approx’ npm ERR! __m512h m_recip_approx = _mm512_rcp_ph(m_vec); npm ERR! ^~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:524:13: error: expected ‘;’ before ‘ratio_a_vec’ npm ERR! __m512h ratio_a_vec = _mm512_mul_ph(a_vec, m_recip_approx); npm ERR! ^~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:525:13: error: expected ‘;’ before ‘ratio_b_vec’ npm ERR! __m512h ratio_b_vec = _mm512_mul_ph(b_vec, m_recip_approx); npm ERR! ^~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:526:13: error: expected ‘;’ before ‘log_ratio_a_vec’ npm ERR! __m512h log_ratio_a_vec = simsimd_avx512_f16_log2(ratio_a_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:527:13: error: expected ‘;’ before ‘log_ratio_b_vec’ npm ERR! __m512h log_ratio_b_vec = simsimd_avx512_f16_log2(ratio_b_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:528:5: error: ‘sum_a_vec’ was not declared in this scope npm ERR! sum_a_vec = _mm512_maskz_fmadd_ph(nonzero_mask, a_vec, log_ratio_a_vec, sum_a_vec); npm ERR! ^~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:528:60: error: ‘log_ratio_a_vec’ was not declared in this scope npm ERR! sum_a_vec = _mm512_maskz_fmadd_ph(nonzero_mask, a_vec, log_ratio_a_vec, sum_a_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:528:17: error: ‘_mm512_maskz_fmadd_ph’ was not declared in this scope npm ERR! sum_a_vec = _mm512_maskz_fmadd_ph(nonzero_mask, a_vec, log_ratio_a_vec, sum_a_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:528:17: note: suggested alternative: ‘_mm512_maskz_fmadd_ps’ npm ERR! sum_a_vec = _mm512_maskz_fmadd_ph(nonzero_mask, a_vec, log_ratio_a_vec, sum_a_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_maskz_fmadd_ps npm ERR! ../simsimd/include/simsimd/probability.h:529:5: error: ‘sum_b_vec’ was not declared in this scope npm ERR! sum_b_vec = _mm512_maskz_fmadd_ph(nonzero_mask, b_vec, log_ratio_b_vec, sum_b_vec); npm ERR! ^~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:529:60: error: ‘log_ratio_b_vec’ was not declared in this scope npm ERR! sum_b_vec = _mm512_maskz_fmadd_ph(nonzero_mask, b_vec, log_ratio_b_vec, sum_b_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:534:33: error: ‘_mm512_add_ph’ was not declared in this scope npm ERR! return _mm512_reduce_add_ph(_mm512_add_ph(sum_a_vec, sum_b_vec)) * 0.5f * log2_normalizer; npm ERR! ^~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:534:33: note: suggested alternative: ‘_mm512_add_ps’ npm ERR! return _mm512_reduce_add_ph(_mm512_add_ph(sum_a_vec, sum_b_vec)) * 0.5f * log2_normalizer; npm ERR! ^~~~~~~~~~~~~ npm ERR! _mm512_add_ps npm ERR! ../simsimd/include/simsimd/probability.h:534:12: error: ‘_mm512_reduce_add_ph’ was not declared in this scope npm ERR! return _mm512_reduce_add_ph(_mm512_add_ph(sum_a_vec, sum_b_vec)) * 0.5f * log2_normalizer; npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:534:12: note: suggested alternative: ‘_mm512_reduce_add_pd’ npm ERR! return _mm512_reduce_add_ph(_mm512_add_ph(sum_a_vec, sum_b_vec)) * 0.5f * log2_normalizer; npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_reduce_add_pd npm ERR! In file included from ../simsimd/include/simsimd/simsimd.h:17:0, npm ERR! from ../include/usearch/index_plugins.hpp:51, npm ERR! from ../include/usearch/index_dense.hpp:10, npm ERR! from ../javascript/lib.cpp:18: npm ERR! ../simsimd/include/simsimd/spatial.h: At global scope: npm ERR! ../simsimd/include/simsimd/spatial.h:836:89: error: attribute(target("avx512fp16")) is unknown npm ERR! simsimd_avx512_f16_l2sq(simsimd_f16_t const* a, simsimd_f16_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! ../simsimd/include/simsimd/spatial.h: In function ‘simsimd_f32_t simsimd_avx512_f16_l2sq(const simsimd_f16_t*, const simsimd_f16_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/spatial.h:837:5: error: ‘__m512h’ was not declared in this scope npm ERR! __m512h d2_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:837:5: note: suggested alternative: ‘__m512d’ npm ERR! __m512h d2_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~~ npm ERR! __m512d npm ERR! ../simsimd/include/simsimd/spatial.h:847:21: error: ‘_mm512_loadu_epi16’ was not declared in this scope npm ERR! a_i16_vec = _mm512_loadu_epi16(a); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:847:21: note: suggested alternative: ‘_mm512_madd_epi16’ npm ERR! a_i16_vec = _mm512_loadu_epi16(a); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! _mm512_madd_epi16 npm ERR! ../simsimd/include/simsimd/spatial.h:851:13: error: expected ‘;’ before ‘d_vec’ npm ERR! __m512h d_vec = _mm512_sub_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec)); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:852:5: error: ‘d2_vec’ was not declared in this scope npm ERR! d2_vec = _mm512_fmadd_ph(d_vec, d_vec, d2_vec); npm ERR! ^~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:852:5: note: suggested alternative: ‘iovec’ npm ERR! d2_vec = _mm512_fmadd_ph(d_vec, d_vec, d2_vec); npm ERR! ^~~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/spatial.h:852:30: error: ‘d_vec’ was not declared in this scope npm ERR! d2_vec = _mm512_fmadd_ph(d_vec, d_vec, d2_vec); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:852:30: note: suggested alternative: ‘iovec’ npm ERR! d2_vec = _mm512_fmadd_ph(d_vec, d_vec, d2_vec); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/spatial.h:852:14: error: ‘_mm512_fmadd_ph’ was not declared in this scope npm ERR! d2_vec = _mm512_fmadd_ph(d_vec, d_vec, d2_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:852:14: note: suggested alternative: ‘_mm512_fmadd_ps’ npm ERR! d2_vec = _mm512_fmadd_ph(d_vec, d_vec, d2_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! _mm512_fmadd_ps npm ERR! ../simsimd/include/simsimd/spatial.h:856:12: error: ‘_mm512_reduce_add_ph’ was not declared in this scope npm ERR! return _mm512_reduce_add_ph(d2_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:856:12: note: suggested alternative: ‘_mm512_reduce_add_pd’ npm ERR! return _mm512_reduce_add_ph(d2_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_reduce_add_pd npm ERR! ../simsimd/include/simsimd/spatial.h: At global scope: npm ERR! ../simsimd/include/simsimd/spatial.h:861:87: error: attribute(target("avx512fp16")) is unknown npm ERR! simsimd_avx512_f16_ip(simsimd_f16_t const* a, simsimd_f16_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! ../simsimd/include/simsimd/spatial.h: In function ‘simsimd_f32_t simsimd_avx512_f16_ip(const simsimd_f16_t*, const simsimd_f16_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/spatial.h:862:5: error: ‘__m512h’ was not declared in this scope npm ERR! __m512h ab_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:862:5: note: suggested alternative: ‘__m512d’ npm ERR! __m512h ab_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~~ npm ERR! __m512d npm ERR! ../simsimd/include/simsimd/spatial.h:872:21: error: ‘_mm512_loadu_epi16’ was not declared in this scope npm ERR! a_i16_vec = _mm512_loadu_epi16(a); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:872:21: note: suggested alternative: ‘_mm512_madd_epi16’ npm ERR! a_i16_vec = _mm512_loadu_epi16(a); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! _mm512_madd_epi16 npm ERR! ../simsimd/include/simsimd/spatial.h:876:5: error: ‘ab_vec’ was not declared in this scope npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:876:5: note: suggested alternative: ‘iovec’ npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/spatial.h:876:30: error: ‘_mm512_castsi512_ph’ was not declared in this scope npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:876:30: note: suggested alternative: ‘_mm512_castsi512_pd’ npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_castsi512_pd npm ERR! ../simsimd/include/simsimd/spatial.h:876:14: error: ‘_mm512_fmadd_ph’ was not declared in this scope npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:876:14: note: suggested alternative: ‘_mm512_fmadd_ps’ npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! _mm512_fmadd_ps npm ERR! ../simsimd/include/simsimd/spatial.h:880:16: error: ‘_mm512_reduce_add_ph’ was not declared in this scope npm ERR! return 1 - _mm512_reduce_add_ph(ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:880:16: note: suggested alternative: ‘_mm512_reduce_add_pd’ npm ERR! return 1 - _mm512_reduce_add_ph(ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_reduce_add_pd npm ERR! ../simsimd/include/simsimd/spatial.h: At global scope: npm ERR! ../simsimd/include/simsimd/spatial.h:885:88: error: attribute(target("avx512fp16")) is unknown npm ERR! simsimd_avx512_f16_cos(simsimd_f16_t const* a, simsimd_f16_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! ../simsimd/include/simsimd/spatial.h: In function ‘simsimd_f32_t simsimd_avx512_f16_cos(const simsimd_f16_t*, const simsimd_f16_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/spatial.h:886:5: error: ‘__m512h’ was not declared in this scope npm ERR! __m512h ab_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:886:5: note: suggested alternative: ‘__m512d’ npm ERR! __m512h ab_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~~ npm ERR! __m512d npm ERR! ../simsimd/include/simsimd/spatial.h:887:13: error: expected ‘;’ before ‘a2_vec’ npm ERR! __m512h a2_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:888:13: error: expected ‘;’ before ‘b2_vec’ npm ERR! __m512h b2_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:898:21: error: ‘_mm512_loadu_epi16’ was not declared in this scope npm ERR! a_i16_vec = _mm512_loadu_epi16(a); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:898:21: note: suggested alternative: ‘_mm512_madd_epi16’ npm ERR! a_i16_vec = _mm512_loadu_epi16(a); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! _mm512_madd_epi16 npm ERR! ../simsimd/include/simsimd/spatial.h:902:5: error: ‘ab_vec’ was not declared in this scope npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:902:5: note: suggested alternative: ‘iovec’ npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/spatial.h:902:30: error: ‘_mm512_castsi512_ph’ was not declared in this scope npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:902:30: note: suggested alternative: ‘_mm512_castsi512_pd’ npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_castsi512_pd npm ERR! ../simsimd/include/simsimd/spatial.h:902:14: error: ‘_mm512_fmadd_ph’ was not declared in this scope npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:902:14: note: suggested alternative: ‘_mm512_fmadd_ps’ npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! _mm512_fmadd_ps npm ERR! ../simsimd/include/simsimd/spatial.h:903:5: error: ‘a2_vec’ was not declared in this scope npm ERR! a2_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(a_i16_vec), a2_vec); npm ERR! ^~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:903:5: note: suggested alternative: ‘iovec’ npm ERR! a2_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(a_i16_vec), a2_vec); npm ERR! ^~~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/spatial.h:904:5: error: ‘b2_vec’ was not declared in this scope npm ERR! b2_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(b_i16_vec), _mm512_castsi512_ph(b_i16_vec), b2_vec); npm ERR! ^~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:904:5: note: suggested alternative: ‘iovec’ npm ERR! b2_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(b_i16_vec), _mm512_castsi512_ph(b_i16_vec), b2_vec); npm ERR! ^~~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/spatial.h:908:24: error: ‘_mm512_reduce_add_ph’ was not declared in this scope npm ERR! simsimd_f32_t ab = _mm512_reduce_add_ph(ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:908:24: note: suggested alternative: ‘_mm512_reduce_add_pd’ npm ERR! simsimd_f32_t ab = _mm512_reduce_add_ph(ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_reduce_add_pd npm ERR! ../simsimd/include/simsimd/spatial.h: At global scope: npm ERR! ../simsimd/include/simsimd/spatial.h:933:86: error: attribute(target("avx512vnni")) is unknown npm ERR! simsimd_avx512_i8_l2sq(simsimd_i8_t const* a, simsimd_i8_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! ../simsimd/include/simsimd/spatial.h: In function ‘simsimd_f32_t simsimd_avx512_i8_l2sq(const simsimd_i8_t*, const simsimd_i8_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/spatial.h:944:38: error: ‘_mm256_loadu_epi8’ was not declared in this scope npm ERR! a_vec = _mm512_cvtepi8_epi16(_mm256_loadu_epi8(a)); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:944:38: note: suggested alternative: ‘_mm256_add_epi8’ npm ERR! a_vec = _mm512_cvtepi8_epi16(_mm256_loadu_epi8(a)); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! _mm256_add_epi8 npm ERR! ../simsimd/include/simsimd/spatial.h:949:19: error: ‘_mm512_dpwssd_epi32’ was not declared in this scope npm ERR! d2_i32s_vec = _mm512_dpwssd_epi32(d2_i32s_vec, d_i16s_vec, d_i16s_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:949:19: note: suggested alternative: ‘_mm512_4dpwssd_epi32’ npm ERR! d2_i32s_vec = _mm512_dpwssd_epi32(d2_i32s_vec, d_i16s_vec, d_i16s_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_4dpwssd_epi32 npm ERR! ../simsimd/include/simsimd/spatial.h: At global scope: npm ERR! ../simsimd/include/simsimd/spatial.h:958:85: error: attribute(target("avx512vnni")) is unknown npm ERR! simsimd_avx512_i8_cos(simsimd_i8_t const* a, simsimd_i8_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! ../simsimd/include/simsimd/spatial.h: In function ‘simsimd_f32_t simsimd_avx512_i8_cos(const simsimd_i8_t*, const simsimd_i8_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/spatial.h:971:17: error: ‘_mm512_loadu_epi8’ was not declared in this scope npm ERR! a_vec = _mm512_loadu_epi8(a); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:971:17: note: suggested alternative: ‘_mm512_add_epi8’ npm ERR! a_vec = _mm512_loadu_epi8(a); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! _mm512_add_epi8 npm ERR! ../simsimd/include/simsimd/spatial.h:975:19: error: ‘_mm512_dpbusd_epi32’ was not declared in this scope npm ERR! ab_i32s_vec = _mm512_dpbusd_epi32(ab_i32s_vec, a_vec, b_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:975:19: note: suggested alternative: ‘_mm512_4dpwssd_epi32’ npm ERR! ab_i32s_vec = _mm512_dpbusd_epi32(ab_i32s_vec, a_vec, b_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_4dpwssd_epi32 npm ERR! ../simsimd/include/simsimd/spatial.h: At global scope: npm ERR! ../simsimd/include/simsimd/spatial.h:994:84: error: attribute(target("avx512vnni")) is unknown npm ERR! simsimd_avx512_i8_ip(simsimd_i8_t const* a, simsimd_i8_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! In file included from ../include/usearch/index_plugins.hpp:51:0, npm ERR! from ../include/usearch/index_dense.hpp:10, npm ERR! from ../javascript/lib.cpp:18: npm ERR! ../simsimd/include/simsimd/simsimd.h:189:32: warning: unknown option after ‘#pragma GCC diagnostic’ kind [-Wpragmas] npm ERR! #pragma GCC diagnostic ignored "-Wcast-function-type" npm ERR! ^~~~~~~~~~~~~~~~~~~~~~ npm ERR! In file included from ../simsimd/include/simsimd/simsimd.h:17:0, npm ERR! from ../include/usearch/index_plugins.hpp:51, npm ERR! from ../include/usearch/index_dense.hpp:10, npm ERR! from ../javascript/lib.cpp:18: npm ERR! ../simsimd/include/simsimd/spatial.h: In function ‘simsimd_f32_t simsimd_avx512_i8_l2sq(const simsimd_i8_t*, const simsimd_i8_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/spatial.h:934:48: warning: AVX512F vector return without AVX512F enabled changes the ABI [-Wpsabi] npm ERR! __m512i d2_i32s_vec = _mm512_setzero_si512(); npm ERR! ^ npm ERR! ../simsimd/include/simsimd/spatial.h:940:37: warning: AVX vector return without AVX enabled changes the ABI [-Wpsabi] npm ERR! a_vec = _mm512_cvtepi8_epi16(_mm256_maskz_loadu_epi8(mask, a)); npm ERR! ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ npm ERR! make: *** [Release/obj.target/usearch/javascript/lib.o] Error 1 npm ERR! gyp ERR! build error npm ERR! gyp ERR! stack Error: `make` failed with exit code: 2 npm ERR! gyp ERR! stack at ChildProcess. (/var/lang/lib/node_modules/npm/node_modules/node-gyp/lib/build.js:209:23) npm ERR! gyp ERR! System Linux 6.4.16-linuxkit npm ERR! gyp ERR! command "/var/lang/bin/node" "/var/lang/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild" npm ERR! gyp ERR! cwd /var/task/node_modules/usearch npm ERR! gyp ERR! node -v v18.18.2 npm ERR! gyp ERR! node-gyp -v v10.0.1 npm ERR! gyp ERR! not ok npm ERR! A complete log of this run can be found in: /root/.npm/_logs/2023-11-08T23_11_41_327Z-debug-0.log removed 31 packages, and changed 65 packages in 5s 26 packages are looking for funding run `npm fund` for details Loaded plugins: ovl Resolving Dependencies --> Running transaction check ---> Package gcc-c++.x86_64 0:7.3.1-17.amzn2 will be installed --> Processing Dependency: gcc(x86-64) = 7.3.1-17.amzn2 for package: gcc-c++-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libmpc.so.3()(64bit) for package: gcc-c++-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libmpfr.so.4()(64bit) for package: gcc-c++-7.3.1-17.amzn2.x86_64 ---> Package git.x86_64 0:2.40.1-1.amzn2.0.1 will be installed --> Processing Dependency: git-core = 2.40.1-1.amzn2.0.1 for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: git-core-doc = 2.40.1-1.amzn2.0.1 for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl-Git = 2.40.1-1.amzn2.0.1 for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl >= 5.008 for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: /usr/bin/perl for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(File::Basename) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(File::Find) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(File::Spec) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(Getopt::Long) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(Git) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(IPC::Open2) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(Term::ReadKey) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(lib) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(strict) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(warnings) for package: git-2.40.1-1.amzn2.0.1.x86_64 ---> Package make.x86_64 1:3.82-24.amzn2 will be installed ---> Package python3.x86_64 0:3.7.16-1.amzn2.0.4 will be installed --> Processing Dependency: python3-libs(x86-64) = 3.7.16-1.amzn2.0.4 for package: python3-3.7.16-1.amzn2.0.4.x86_64 --> Processing Dependency: python3-pip for package: python3-3.7.16-1.amzn2.0.4.x86_64 --> Processing Dependency: python3-setuptools for package: python3-3.7.16-1.amzn2.0.4.x86_64 --> Processing Dependency: libpython3.7m.so.1.0()(64bit) for package: python3-3.7.16-1.amzn2.0.4.x86_64 ---> Package tar.x86_64 2:1.26-35.amzn2.0.2 will be installed --> Running transaction check ---> Package gcc.x86_64 0:7.3.1-17.amzn2 will be installed --> Processing Dependency: cpp = 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libgomp = 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: binutils >= 2.24 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: glibc-devel >= 2.2.90-12 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libatomic >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libcilkrts >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libitm >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libmpx >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libquadmath >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libsanitizer >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libgomp.so.1()(64bit) for package: gcc-7.3.1-17.amzn2.x86_64 ---> Package git-core.x86_64 0:2.40.1-1.amzn2.0.1 will be installed --> Processing Dependency: less for package: git-core-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: openssh-clients for package: git-core-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: libpcre2-8.so.0()(64bit) for package: git-core-2.40.1-1.amzn2.0.1.x86_64 ---> Package git-core-doc.noarch 0:2.40.1-1.amzn2.0.1 will be installed ---> Package libmpc.x86_64 0:1.0.1-3.amzn2.0.2 will be installed ---> Package mpfr.x86_64 0:3.1.1-4.amzn2.0.2 will be installed ---> Package perl.x86_64 4:5.16.3-299.amzn2.0.2 will be installed --> Processing Dependency: perl-libs = 4:5.16.3-299.amzn2.0.2 for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Scalar::Util) >= 1.10 for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Socket) >= 1.3 for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Carp) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Exporter) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(File::Path) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(File::Temp) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Filter::Util::Call) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Pod::Simple::Search) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Pod::Simple::XHTML) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Scalar::Util) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Socket) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Storable) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Time::HiRes) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Time::Local) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(constant) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(threads) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(threads::shared) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl-libs for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl-macros for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: libperl.so()(64bit) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 ---> Package perl-Getopt-Long.noarch 0:2.40-3.amzn2 will be installed --> Processing Dependency: perl(Pod::Usage) >= 1.14 for package: perl-Getopt-Long-2.40-3.amzn2.noarch --> Processing Dependency: perl(Text::ParseWords) for package: perl-Getopt-Long-2.40-3.amzn2.noarch ---> Package perl-Git.noarch 0:2.40.1-1.amzn2.0.1 will be installed --> Processing Dependency: perl(Error) for package: perl-Git-2.40.1-1.amzn2.0.1.noarch ---> Package perl-PathTools.x86_64 0:3.40-5.amzn2.0.2 will be installed ---> Package perl-TermReadKey.x86_64 0:2.30-20.amzn2.0.2 will be installed ---> Package python3-libs.x86_64 0:3.7.16-1.amzn2.0.4 will be installed --> Processing Dependency: libtirpc.so.1()(64bit) for package: python3-libs-3.7.16-1.amzn2.0.4.x86_64 ---> Package python3-pip.noarch 0:20.2.2-1.amzn2.0.4 will be installed ---> Package python3-setuptools.noarch 0:49.1.3-1.amzn2.0.3 will be installed --> Running transaction check ---> Package binutils.x86_64 0:2.29.1-31.amzn2 will be installed ---> Package cpp.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package glibc-devel.x86_64 0:2.26-63.amzn2.0.1 will be installed --> Processing Dependency: glibc-headers = 2.26-63.amzn2.0.1 for package: glibc-devel-2.26-63.amzn2.0.1.x86_64 --> Processing Dependency: glibc-headers for package: glibc-devel-2.26-63.amzn2.0.1.x86_64 ---> Package less.x86_64 0:458-9.amzn2.0.2 will be installed --> Processing Dependency: groff-base for package: less-458-9.amzn2.0.2.x86_64 ---> Package libatomic.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libcilkrts.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libgomp.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libitm.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libmpx.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libquadmath.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libsanitizer.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libtirpc.x86_64 0:0.2.4-0.16.amzn2 will be installed ---> Package openssh-clients.x86_64 0:7.4p1-22.amzn2.0.5 will be installed --> Processing Dependency: openssh = 7.4p1-22.amzn2.0.5 for package: openssh-clients-7.4p1-22.amzn2.0.5.x86_64 --> Processing Dependency: fipscheck-lib(x86-64) >= 1.3.0 for package: openssh-clients-7.4p1-22.amzn2.0.5.x86_64 --> Processing Dependency: libedit.so.0()(64bit) for package: openssh-clients-7.4p1-22.amzn2.0.5.x86_64 --> Processing Dependency: libfipscheck.so.1()(64bit) for package: openssh-clients-7.4p1-22.amzn2.0.5.x86_64 ---> Package pcre2.x86_64 0:10.23-11.amzn2.0.1 will be installed ---> Package perl-Carp.noarch 0:1.26-244.amzn2 will be installed ---> Package perl-Error.noarch 1:0.17020-2.amzn2 will be installed ---> Package perl-Exporter.noarch 0:5.68-3.amzn2 will be installed ---> Package perl-File-Path.noarch 0:2.09-2.amzn2 will be installed ---> Package perl-File-Temp.noarch 0:0.23.01-3.amzn2 will be installed ---> Package perl-Filter.x86_64 0:1.49-3.amzn2.0.2 will be installed ---> Package perl-Pod-Simple.noarch 1:3.28-4.amzn2 will be installed --> Processing Dependency: perl(Pod::Escapes) >= 1.04 for package: 1:perl-Pod-Simple-3.28-4.amzn2.noarch --> Processing Dependency: perl(Encode) for package: 1:perl-Pod-Simple-3.28-4.amzn2.noarch ---> Package perl-Pod-Usage.noarch 0:1.63-3.amzn2 will be installed --> Processing Dependency: perl(Pod::Text) >= 3.15 for package: perl-Pod-Usage-1.63-3.amzn2.noarch --> Processing Dependency: perl-Pod-Perldoc for package: perl-Pod-Usage-1.63-3.amzn2.noarch ---> Package perl-Scalar-List-Utils.x86_64 0:1.27-248.amzn2.0.2 will be installed ---> Package perl-Socket.x86_64 0:2.010-4.amzn2.0.2 will be installed ---> Package perl-Storable.x86_64 0:2.45-3.amzn2.0.2 will be installed ---> Package perl-Text-ParseWords.noarch 0:3.29-4.amzn2 will be installed ---> Package perl-Time-HiRes.x86_64 4:1.9725-3.amzn2.0.2 will be installed ---> Package perl-Time-Local.noarch 0:1.2300-2.amzn2 will be installed ---> Package perl-constant.noarch 0:1.27-2.amzn2.0.1 will be installed ---> Package perl-libs.x86_64 4:5.16.3-299.amzn2.0.2 will be installed ---> Package perl-macros.x86_64 4:5.16.3-299.amzn2.0.2 will be installed ---> Package perl-threads.x86_64 0:1.87-4.amzn2.0.2 will be installed ---> Package perl-threads-shared.x86_64 0:1.43-6.amzn2.0.2 will be installed --> Running transaction check ---> Package fipscheck-lib.x86_64 0:1.4.1-6.amzn2.0.2 will be installed --> Processing Dependency: /usr/bin/fipscheck for package: fipscheck-lib-1.4.1-6.amzn2.0.2.x86_64 ---> Package glibc-headers.x86_64 0:2.26-63.amzn2.0.1 will be installed --> Processing Dependency: kernel-headers >= 2.2.1 for package: glibc-headers-2.26-63.amzn2.0.1.x86_64 --> Processing Dependency: kernel-headers for package: glibc-headers-2.26-63.amzn2.0.1.x86_64 ---> Package groff-base.x86_64 0:1.22.2-8.amzn2.0.2 will be installed ---> Package libedit.x86_64 0:3.0-12.20121213cvs.amzn2.0.2 will be installed ---> Package openssh.x86_64 0:7.4p1-22.amzn2.0.5 will be installed --> Processing Dependency: audit-libs >= 1.0.8 for package: openssh-7.4p1-22.amzn2.0.5.x86_64 --> Processing Dependency: /sbin/nologin for package: openssh-7.4p1-22.amzn2.0.5.x86_64 ---> Package perl-Encode.x86_64 0:2.51-7.amzn2.0.2 will be installed ---> Package perl-Pod-Escapes.noarch 1:1.04-299.amzn2.0.2 will be installed ---> Package perl-Pod-Perldoc.noarch 0:3.20-4.amzn2.0.1 will be installed --> Processing Dependency: perl(HTTP::Tiny) for package: perl-Pod-Perldoc-3.20-4.amzn2.0.1.noarch --> Processing Dependency: perl(parent) for package: perl-Pod-Perldoc-3.20-4.amzn2.0.1.noarch ---> Package perl-podlators.noarch 0:2.5.1-3.amzn2.0.1 will be installed --> Running transaction check ---> Package audit-libs.x86_64 0:2.8.1-3.amzn2.1 will be installed --> Processing Dependency: libcap-ng.so.0()(64bit) for package: audit-libs-2.8.1-3.amzn2.1.x86_64 ---> Package fipscheck.x86_64 0:1.4.1-6.amzn2.0.2 will be installed ---> Package kernel-headers.x86_64 0:4.14.327-246.539.amzn2 will be installed ---> Package perl-HTTP-Tiny.noarch 0:0.033-3.amzn2.0.1 will be installed ---> Package perl-parent.noarch 1:0.225-244.amzn2.0.1 will be installed ---> Package util-linux.x86_64 0:2.30.2-2.amzn2.0.11 will be installed --> Processing Dependency: libfdisk = 2.30.2-2.amzn2.0.11 for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols = 2.30.2-2.amzn2.0.11 for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: pam >= 1.1.3-7 for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: /etc/pam.d/system-auth for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1(FDISK_2.26)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1(FDISK_2.27)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1(FDISK_2.28)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1(FDISK_2.29)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1(FDISK_2.30)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libpam.so.0(LIBPAM_1.0)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libpam_misc.so.0(LIBPAM_MISC_1.0)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1(SMARTCOLS_2.25)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1(SMARTCOLS_2.27)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1(SMARTCOLS_2.28)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1(SMARTCOLS_2.29)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1(SMARTCOLS_2.30)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsystemd.so.0(LIBSYSTEMD_209)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libudev.so.1(LIBUDEV_183)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libutempter.so.0(UTEMPTER_1.1)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libpam.so.0()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libpam_misc.so.0()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsystemd.so.0()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libudev.so.1()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libutempter.so.0()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Running transaction check ---> Package libcap-ng.x86_64 0:0.7.5-4.amzn2.0.4 will be installed ---> Package libfdisk.x86_64 0:2.30.2-2.amzn2.0.11 will be installed ---> Package libsmartcols.x86_64 0:2.30.2-2.amzn2.0.11 will be installed ---> Package libutempter.x86_64 0:1.1.6-4.amzn2.0.2 will be installed --> Processing Dependency: shadow-utils for package: libutempter-1.1.6-4.amzn2.0.2.x86_64 ---> Package pam.x86_64 0:1.1.8-23.amzn2.0.1 will be installed --> Processing Dependency: cracklib-dicts >= 2.8 for package: pam-1.1.8-23.amzn2.0.1.x86_64 --> Processing Dependency: libpwquality >= 0.9.9 for package: pam-1.1.8-23.amzn2.0.1.x86_64 --> Processing Dependency: libcrack.so.2()(64bit) for package: pam-1.1.8-23.amzn2.0.1.x86_64 ---> Package systemd-libs.x86_64 0:219-78.amzn2.0.22 will be installed --> Processing Dependency: libdw.so.1()(64bit) for package: systemd-libs-219-78.amzn2.0.22.x86_64 --> Processing Dependency: liblz4.so.1()(64bit) for package: systemd-libs-219-78.amzn2.0.22.x86_64 --> Running transaction check ---> Package cracklib.x86_64 0:2.9.0-11.amzn2.0.2 will be installed --> Processing Dependency: gzip for package: cracklib-2.9.0-11.amzn2.0.2.x86_64 ---> Package cracklib-dicts.x86_64 0:2.9.0-11.amzn2.0.2 will be installed ---> Package elfutils-libs.x86_64 0:0.176-2.amzn2.0.2 will be installed --> Processing Dependency: default-yama-scope for package: elfutils-libs-0.176-2.amzn2.0.2.x86_64 ---> Package libpwquality.x86_64 0:1.2.3-5.amzn2 will be installed ---> Package lz4.x86_64 0:1.7.5-2.amzn2.0.1 will be installed ---> Package shadow-utils.x86_64 2:4.1.5.1-24.amzn2.0.3 will be installed --> Processing Dependency: libsemanage.so.1(LIBSEMANAGE_1.0)(64bit) for package: 2:shadow-utils-4.1.5.1-24.amzn2.0.3.x86_64 --> Processing Dependency: libsemanage.so.1()(64bit) for package: 2:shadow-utils-4.1.5.1-24.amzn2.0.3.x86_64 --> Running transaction check ---> Package elfutils-default-yama-scope.noarch 0:0.176-2.amzn2.0.2 will be installed --> Processing Dependency: systemd for package: elfutils-default-yama-scope-0.176-2.amzn2.0.2.noarch --> Processing Dependency: systemd for package: elfutils-default-yama-scope-0.176-2.amzn2.0.2.noarch ---> Package gzip.x86_64 0:1.5-10.amzn2.0.1 will be installed ---> Package libsemanage.x86_64 0:2.5-11.amzn2 will be installed --> Processing Dependency: libustr-1.0.so.1(USTR_1.0)(64bit) for package: libsemanage-2.5-11.amzn2.x86_64 --> Processing Dependency: libustr-1.0.so.1(USTR_1.0.1)(64bit) for package: libsemanage-2.5-11.amzn2.x86_64 --> Processing Dependency: libustr-1.0.so.1()(64bit) for package: libsemanage-2.5-11.amzn2.x86_64 --> Running transaction check ---> Package systemd.x86_64 0:219-78.amzn2.0.22 will be installed --> Processing Dependency: kmod >= 18-4 for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: acl for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: dbus for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: libcryptsetup.so.4(CRYPTSETUP_1.0)(64bit) for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: libkmod.so.2(LIBKMOD_5)(64bit) for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: libcryptsetup.so.4()(64bit) for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: libkmod.so.2()(64bit) for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: libqrencode.so.3()(64bit) for package: systemd-219-78.amzn2.0.22.x86_64 ---> Package ustr.x86_64 0:1.0.4-16.amzn2.0.3 will be installed --> Running transaction check ---> Package acl.x86_64 0:2.2.51-14.amzn2 will be installed ---> Package cryptsetup-libs.x86_64 0:1.7.4-4.amzn2 will be installed --> Processing Dependency: libdevmapper.so.1.02(Base)(64bit) for package: cryptsetup-libs-1.7.4-4.amzn2.x86_64 --> Processing Dependency: libdevmapper.so.1.02(DM_1_02_97)(64bit) for package: cryptsetup-libs-1.7.4-4.amzn2.x86_64 --> Processing Dependency: libdevmapper.so.1.02()(64bit) for package: cryptsetup-libs-1.7.4-4.amzn2.x86_64 ---> Package dbus.x86_64 1:1.10.24-7.amzn2.0.3 will be installed --> Processing Dependency: dbus-libs(x86-64) = 1:1.10.24-7.amzn2.0.3 for package: 1:dbus-1.10.24-7.amzn2.0.3.x86_64 --> Processing Dependency: libdbus-1.so.3(LIBDBUS_1_3)(64bit) for package: 1:dbus-1.10.24-7.amzn2.0.3.x86_64 --> Processing Dependency: libdbus-1.so.3(LIBDBUS_PRIVATE_1.10.24)(64bit) for package: 1:dbus-1.10.24-7.amzn2.0.3.x86_64 --> Processing Dependency: libdbus-1.so.3()(64bit) for package: 1:dbus-1.10.24-7.amzn2.0.3.x86_64 ---> Package kmod.x86_64 0:25-3.amzn2.0.2 will be installed ---> Package kmod-libs.x86_64 0:25-3.amzn2.0.2 will be installed ---> Package qrencode-libs.x86_64 0:3.4.1-3.amzn2.0.2 will be installed --> Running transaction check ---> Package dbus-libs.x86_64 1:1.10.24-7.amzn2.0.3 will be installed ---> Package device-mapper-libs.x86_64 7:1.02.170-6.amzn2.5 will be installed --> Processing Dependency: device-mapper = 7:1.02.170-6.amzn2.5 for package: 7:device-mapper-libs-1.02.170-6.amzn2.5.x86_64 --> Running transaction check ---> Package device-mapper.x86_64 7:1.02.170-6.amzn2.5 will be installed --> Finished Dependency Resolution Dependencies Resolved ================================================================================ Package Arch Version Repository Size ================================================================================ Installing: gcc-c++ x86_64 7.3.1-17.amzn2 amzn2-core 13 M git x86_64 2.40.1-1.amzn2.0.1 amzn2-core 54 k make x86_64 1:3.82-24.amzn2 amzn2-core 420 k python3 x86_64 3.7.16-1.amzn2.0.4 amzn2-core 72 k tar x86_64 2:1.26-35.amzn2.0.2 amzn2-core 845 k Installing for dependencies: acl x86_64 2.2.51-14.amzn2 amzn2-core 82 k audit-libs x86_64 2.8.1-3.amzn2.1 amzn2-core 99 k binutils x86_64 2.29.1-31.amzn2 amzn2-core 5.8 M cpp x86_64 7.3.1-17.amzn2 amzn2-core 9.2 M cracklib x86_64 2.9.0-11.amzn2.0.2 amzn2-core 80 k cracklib-dicts x86_64 2.9.0-11.amzn2.0.2 amzn2-core 3.6 M cryptsetup-libs x86_64 1.7.4-4.amzn2 amzn2-core 224 k dbus x86_64 1:1.10.24-7.amzn2.0.3 amzn2-core 245 k dbus-libs x86_64 1:1.10.24-7.amzn2.0.3 amzn2-core 167 k device-mapper x86_64 7:1.02.170-6.amzn2.5 amzn2-core 297 k device-mapper-libs x86_64 7:1.02.170-6.amzn2.5 amzn2-core 326 k elfutils-default-yama-scope noarch 0.176-2.amzn2.0.2 amzn2-core 33 k elfutils-libs x86_64 0.176-2.amzn2.0.2 amzn2-core 289 k fipscheck x86_64 1.4.1-6.amzn2.0.2 amzn2-core 21 k fipscheck-lib x86_64 1.4.1-6.amzn2.0.2 amzn2-core 11 k gcc x86_64 7.3.1-17.amzn2 amzn2-core 22 M git-core x86_64 2.40.1-1.amzn2.0.1 amzn2-core 10 M git-core-doc noarch 2.40.1-1.amzn2.0.1 amzn2-core 3.0 M glibc-devel x86_64 2.26-63.amzn2.0.1 amzn2-core 995 k glibc-headers x86_64 2.26-63.amzn2.0.1 amzn2-core 516 k groff-base x86_64 1.22.2-8.amzn2.0.2 amzn2-core 948 k gzip x86_64 1.5-10.amzn2.0.1 amzn2-core 129 k kernel-headers x86_64 4.14.327-246.539.amzn2 amzn2-core 1.2 M kmod x86_64 25-3.amzn2.0.2 amzn2-core 111 k kmod-libs x86_64 25-3.amzn2.0.2 amzn2-core 59 k less x86_64 458-9.amzn2.0.2 amzn2-core 121 k libatomic x86_64 7.3.1-17.amzn2 amzn2-core 46 k libcap-ng x86_64 0.7.5-4.amzn2.0.4 amzn2-core 25 k libcilkrts x86_64 7.3.1-17.amzn2 amzn2-core 85 k libedit x86_64 3.0-12.20121213cvs.amzn2.0.2 amzn2-core 93 k libfdisk x86_64 2.30.2-2.amzn2.0.11 amzn2-core 238 k libgomp x86_64 7.3.1-17.amzn2 amzn2-core 205 k libitm x86_64 7.3.1-17.amzn2 amzn2-core 85 k libmpc x86_64 1.0.1-3.amzn2.0.2 amzn2-core 52 k libmpx x86_64 7.3.1-17.amzn2 amzn2-core 52 k libpwquality x86_64 1.2.3-5.amzn2 amzn2-core 84 k libquadmath x86_64 7.3.1-17.amzn2 amzn2-core 189 k libsanitizer x86_64 7.3.1-17.amzn2 amzn2-core 642 k libsemanage x86_64 2.5-11.amzn2 amzn2-core 152 k libsmartcols x86_64 2.30.2-2.amzn2.0.11 amzn2-core 155 k libtirpc x86_64 0.2.4-0.16.amzn2 amzn2-core 88 k libutempter x86_64 1.1.6-4.amzn2.0.2 amzn2-core 25 k lz4 x86_64 1.7.5-2.amzn2.0.1 amzn2-core 99 k mpfr x86_64 3.1.1-4.amzn2.0.2 amzn2-core 208 k openssh x86_64 7.4p1-22.amzn2.0.5 amzn2-core 508 k openssh-clients x86_64 7.4p1-22.amzn2.0.5 amzn2-core 652 k pam x86_64 1.1.8-23.amzn2.0.1 amzn2-core 715 k pcre2 x86_64 10.23-11.amzn2.0.1 amzn2-core 207 k perl x86_64 4:5.16.3-299.amzn2.0.2 amzn2-core 8.0 M perl-Carp noarch 1.26-244.amzn2 amzn2-core 19 k perl-Encode x86_64 2.51-7.amzn2.0.2 amzn2-core 1.5 M perl-Error noarch 1:0.17020-2.amzn2 amzn2-core 32 k perl-Exporter noarch 5.68-3.amzn2 amzn2-core 29 k perl-File-Path noarch 2.09-2.amzn2 amzn2-core 27 k perl-File-Temp noarch 0.23.01-3.amzn2 amzn2-core 56 k perl-Filter x86_64 1.49-3.amzn2.0.2 amzn2-core 76 k perl-Getopt-Long noarch 2.40-3.amzn2 amzn2-core 56 k perl-Git noarch 2.40.1-1.amzn2.0.1 amzn2-core 41 k perl-HTTP-Tiny noarch 0.033-3.amzn2.0.1 amzn2-core 39 k perl-PathTools x86_64 3.40-5.amzn2.0.2 amzn2-core 83 k perl-Pod-Escapes noarch 1:1.04-299.amzn2.0.2 amzn2-core 52 k perl-Pod-Perldoc noarch 3.20-4.amzn2.0.1 amzn2-core 87 k perl-Pod-Simple noarch 1:3.28-4.amzn2 amzn2-core 216 k perl-Pod-Usage noarch 1.63-3.amzn2 amzn2-core 27 k perl-Scalar-List-Utils x86_64 1.27-248.amzn2.0.2 amzn2-core 36 k perl-Socket x86_64 2.010-4.amzn2.0.2 amzn2-core 49 k perl-Storable x86_64 2.45-3.amzn2.0.2 amzn2-core 78 k perl-TermReadKey x86_64 2.30-20.amzn2.0.2 amzn2-core 31 k perl-Text-ParseWords noarch 3.29-4.amzn2 amzn2-core 14 k perl-Time-HiRes x86_64 4:1.9725-3.amzn2.0.2 amzn2-core 45 k perl-Time-Local noarch 1.2300-2.amzn2 amzn2-core 24 k perl-constant noarch 1.27-2.amzn2.0.1 amzn2-core 19 k perl-libs x86_64 4:5.16.3-299.amzn2.0.2 amzn2-core 685 k perl-macros x86_64 4:5.16.3-299.amzn2.0.2 amzn2-core 45 k perl-parent noarch 1:0.225-244.amzn2.0.1 amzn2-core 12 k perl-podlators noarch 2.5.1-3.amzn2.0.1 amzn2-core 112 k perl-threads x86_64 1.87-4.amzn2.0.2 amzn2-core 50 k perl-threads-shared x86_64 1.43-6.amzn2.0.2 amzn2-core 39 k python3-libs x86_64 3.7.16-1.amzn2.0.4 amzn2-core 9.8 M python3-pip noarch 20.2.2-1.amzn2.0.4 amzn2-core 2.0 M python3-setuptools noarch 49.1.3-1.amzn2.0.3 amzn2-core 1.1 M qrencode-libs x86_64 3.4.1-3.amzn2.0.2 amzn2-core 50 k shadow-utils x86_64 2:4.1.5.1-24.amzn2.0.3 amzn2-core 1.1 M systemd x86_64 219-78.amzn2.0.22 amzn2-core 5.0 M systemd-libs x86_64 219-78.amzn2.0.22 amzn2-core 409 k ustr x86_64 1.0.4-16.amzn2.0.3 amzn2-core 96 k util-linux x86_64 2.30.2-2.amzn2.0.11 amzn2-core 2.3 M Transaction Summary ================================================================================ Install 5 Packages (+87 Dependent packages) Total download size: 111 M Installed size: 361 M Downloading packages: -------------------------------------------------------------------------------- Total 26 MB/s | 111 MB 00:04 Running transaction check Running transaction test Transaction test succeeded Running transaction Installing : mpfr-3.1.1-4.amzn2.0.2.x86_64 1/92 Installing : libmpc-1.0.1-3.amzn2.0.2.x86_64 2/92 Installing : libcap-ng-0.7.5-4.amzn2.0.4.x86_64 3/92 Installing : audit-libs-2.8.1-3.amzn2.1.x86_64 4/92 Installing : groff-base-1.22.2-8.amzn2.0.2.x86_64 5/92 Installing : lz4-1.7.5-2.amzn2.0.1.x86_64 6/92 Installing : 1:perl-parent-0.225-244.amzn2.0.1.noarch 7/92 Installing : perl-HTTP-Tiny-0.033-3.amzn2.0.1.noarch 8/92 Installing : perl-Pod-Perldoc-3.20-4.amzn2.0.1.noarch 9/92 Installing : perl-podlators-2.5.1-3.amzn2.0.1.noarch 10/92 Installing : perl-Text-ParseWords-3.29-4.amzn2.noarch 11/92 Installing : perl-Encode-2.51-7.amzn2.0.2.x86_64 12/92 Installing : perl-Pod-Usage-1.63-3.amzn2.noarch 13/92 Installing : 1:perl-Pod-Escapes-1.04-299.amzn2.0.2.noarch 14/92 Installing : 4:perl-libs-5.16.3-299.amzn2.0.2.x86_64 15/92 Installing : perl-Filter-1.49-3.amzn2.0.2.x86_64 16/92 Installing : perl-Storable-2.45-3.amzn2.0.2.x86_64 17/92 Installing : perl-Carp-1.26-244.amzn2.noarch 18/92 Installing : perl-File-Path-2.09-2.amzn2.noarch 19/92 Installing : perl-PathTools-3.40-5.amzn2.0.2.x86_64 20/92 Installing : perl-Scalar-List-Utils-1.27-248.amzn2.0.2.x86_64 21/92 Installing : perl-Exporter-5.68-3.amzn2.noarch 22/92 Installing : perl-Time-Local-1.2300-2.amzn2.noarch 23/92 Installing : perl-File-Temp-0.23.01-3.amzn2.noarch 24/92 Installing : perl-constant-1.27-2.amzn2.0.1.noarch 25/92 Installing : perl-threads-shared-1.43-6.amzn2.0.2.x86_64 26/92 Installing : perl-threads-1.87-4.amzn2.0.2.x86_64 27/92 Installing : 4:perl-Time-HiRes-1.9725-3.amzn2.0.2.x86_64 28/92 Installing : perl-Socket-2.010-4.amzn2.0.2.x86_64 29/92 Installing : 4:perl-macros-5.16.3-299.amzn2.0.2.x86_64 30/92 Installing : perl-Getopt-Long-2.40-3.amzn2.noarch 31/92 Installing : 1:perl-Pod-Simple-3.28-4.amzn2.noarch 32/92 Installing : 4:perl-5.16.3-299.amzn2.0.2.x86_64 33/92 Installing : perl-TermReadKey-2.30-20.amzn2.0.2.x86_64 34/92 Installing : 1:perl-Error-0.17020-2.amzn2.noarch 35/92 Installing : less-458-9.amzn2.0.2.x86_64 36/92 Installing : cpp-7.3.1-17.amzn2.x86_64 37/92 Installing : fipscheck-lib-1.4.1-6.amzn2.0.2.x86_64 38/92 Installing : fipscheck-1.4.1-6.amzn2.0.2.x86_64 39/92 Installing : libatomic-7.3.1-17.amzn2.x86_64 40/92 Installing : libgomp-7.3.1-17.amzn2.x86_64 41/92 Installing : kmod-libs-25-3.amzn2.0.2.x86_64 42/92 Installing : libsanitizer-7.3.1-17.amzn2.x86_64 43/92 Installing : gzip-1.5-10.amzn2.0.1.x86_64 44/92 Installing : cracklib-2.9.0-11.amzn2.0.2.x86_64 45/92 Installing : cracklib-dicts-2.9.0-11.amzn2.0.2.x86_64 46/92 Installing : libpwquality-1.2.3-5.amzn2.x86_64 47/92 Installing : pam-1.1.8-23.amzn2.0.1.x86_64 48/92 Installing : libmpx-7.3.1-17.amzn2.x86_64 49/92 Installing : ustr-1.0.4-16.amzn2.0.3.x86_64 50/92 Installing : libsemanage-2.5-11.amzn2.x86_64 51/92 Installing : 2:shadow-utils-4.1.5.1-24.amzn2.0.3.x86_64 52/92 Installing : libutempter-1.1.6-4.amzn2.0.2.x86_64 53/92 Installing : libcilkrts-7.3.1-17.amzn2.x86_64 54/92 Installing : acl-2.2.51-14.amzn2.x86_64 55/92 Installing : pcre2-10.23-11.amzn2.0.1.x86_64 56/92 Installing : libsmartcols-2.30.2-2.amzn2.0.11.x86_64 57/92 Installing : binutils-2.29.1-31.amzn2.x86_64 58/92 Installing : kernel-headers-4.14.327-246.539.amzn2.x86_64 59/92 Installing : glibc-headers-2.26-63.amzn2.0.1.x86_64 60/92 Installing : glibc-devel-2.26-63.amzn2.0.1.x86_64 61/92 Installing : kmod-25-3.amzn2.0.2.x86_64 62/92 Installing : libfdisk-2.30.2-2.amzn2.0.11.x86_64 63/92 Installing : libtirpc-0.2.4-0.16.amzn2.x86_64 64/92 Installing : python3-setuptools-49.1.3-1.amzn2.0.3.noarch 65/92 Installing : python3-libs-3.7.16-1.amzn2.0.4.x86_64 66/92 Installing : python3-3.7.16-1.amzn2.0.4.x86_64 67/92 Installing : python3-pip-20.2.2-1.amzn2.0.4.noarch 68/92 Installing : qrencode-libs-3.4.1-3.amzn2.0.2.x86_64 69/92 Installing : util-linux-2.30.2-2.amzn2.0.11.x86_64 70/92 Installing : 7:device-mapper-1.02.170-6.amzn2.5.x86_64 71/92 Installing : 7:device-mapper-libs-1.02.170-6.amzn2.5.x86_64 72/92 Installing : cryptsetup-libs-1.7.4-4.amzn2.x86_64 73/92 Installing : elfutils-libs-0.176-2.amzn2.0.2.x86_64 74/92 Installing : systemd-libs-219-78.amzn2.0.22.x86_64 75/92 Installing : 1:dbus-libs-1.10.24-7.amzn2.0.3.x86_64 76/92 Installing : systemd-219-78.amzn2.0.22.x86_64 77/92 Failed to get D-Bus connection: Operation not permitted Installing : 1:dbus-1.10.24-7.amzn2.0.3.x86_64 78/92 Installing : elfutils-default-yama-scope-0.176-2.amzn2.0.2.noarch 79/92 Installing : openssh-7.4p1-22.amzn2.0.5.x86_64 80/92 Installing : libquadmath-7.3.1-17.amzn2.x86_64 81/92 Installing : libedit-3.0-12.20121213cvs.amzn2.0.2.x86_64 82/92 Installing : openssh-clients-7.4p1-22.amzn2.0.5.x86_64 83/92 Installing : git-core-2.40.1-1.amzn2.0.1.x86_64 84/92 Installing : git-core-doc-2.40.1-1.amzn2.0.1.noarch 85/92 Installing : git-2.40.1-1.amzn2.0.1.x86_64 86/92 Installing : perl-Git-2.40.1-1.amzn2.0.1.noarch 87/92 Installing : libitm-7.3.1-17.amzn2.x86_64 88/92 Installing : gcc-7.3.1-17.amzn2.x86_64 89/92 Installing : gcc-c++-7.3.1-17.amzn2.x86_64 90/92 Installing : 2:tar-1.26-35.amzn2.0.2.x86_64 91/92 Installing : 1:make-3.82-24.amzn2.x86_64 92/92 Verifying : python3-pip-20.2.2-1.amzn2.0.4.noarch 1/92 Verifying : libitm-7.3.1-17.amzn2.x86_64 2/92 Verifying : 1:perl-Pod-Escapes-1.04-299.amzn2.0.2.noarch 3/92 Verifying : git-core-2.40.1-1.amzn2.0.1.x86_64 4/92 Verifying : python3-setuptools-49.1.3-1.amzn2.0.3.noarch 5/92 Verifying : libmpc-1.0.1-3.amzn2.0.2.x86_64 6/92 Verifying : git-2.40.1-1.amzn2.0.1.x86_64 7/92 Verifying : cryptsetup-libs-1.7.4-4.amzn2.x86_64 8/92 Verifying : libedit-3.0-12.20121213cvs.amzn2.0.2.x86_64 9/92 Verifying : libutempter-1.1.6-4.amzn2.0.2.x86_64 10/92 Verifying : lz4-1.7.5-2.amzn2.0.1.x86_64 11/92 Verifying : libquadmath-7.3.1-17.amzn2.x86_64 12/92 Verifying : qrencode-libs-3.4.1-3.amzn2.0.2.x86_64 13/92 Verifying : perl-Filter-1.49-3.amzn2.0.2.x86_64 14/92 Verifying : 1:perl-Pod-Simple-3.28-4.amzn2.noarch 15/92 Verifying : libtirpc-0.2.4-0.16.amzn2.x86_64 16/92 Verifying : libfdisk-2.30.2-2.amzn2.0.11.x86_64 17/92 Verifying : perl-PathTools-3.40-5.amzn2.0.2.x86_64 18/92 Verifying : libcap-ng-0.7.5-4.amzn2.0.4.x86_64 19/92 Verifying : python3-libs-3.7.16-1.amzn2.0.4.x86_64 20/92 Verifying : gcc-c++-7.3.1-17.amzn2.x86_64 21/92 Verifying : perl-Storable-2.45-3.amzn2.0.2.x86_64 22/92 Verifying : python3-3.7.16-1.amzn2.0.4.x86_64 23/92 Verifying : kmod-25-3.amzn2.0.2.x86_64 24/92 Verifying : kernel-headers-4.14.327-246.539.amzn2.x86_64 25/92 Verifying : 4:perl-libs-5.16.3-299.amzn2.0.2.x86_64 26/92 Verifying : perl-Getopt-Long-2.40-3.amzn2.noarch 27/92 Verifying : perl-Time-Local-1.2300-2.amzn2.noarch 28/92 Verifying : 1:dbus-1.10.24-7.amzn2.0.3.x86_64 29/92 Verifying : 2:shadow-utils-4.1.5.1-24.amzn2.0.3.x86_64 30/92 Verifying : binutils-2.29.1-31.amzn2.x86_64 31/92 Verifying : libsmartcols-2.30.2-2.amzn2.0.11.x86_64 32/92 Verifying : fipscheck-1.4.1-6.amzn2.0.2.x86_64 33/92 Verifying : pcre2-10.23-11.amzn2.0.1.x86_64 34/92 Verifying : libpwquality-1.2.3-5.amzn2.x86_64 35/92 Verifying : 7:device-mapper-libs-1.02.170-6.amzn2.5.x86_64 36/92 Verifying : cracklib-dicts-2.9.0-11.amzn2.0.2.x86_64 37/92 Verifying : perl-TermReadKey-2.30-20.amzn2.0.2.x86_64 38/92 Verifying : audit-libs-2.8.1-3.amzn2.1.x86_64 39/92 Verifying : perl-Pod-Perldoc-3.20-4.amzn2.0.1.noarch 40/92 Verifying : perl-Git-2.40.1-1.amzn2.0.1.noarch 41/92 Verifying : acl-2.2.51-14.amzn2.x86_64 42/92 Verifying : libsemanage-2.5-11.amzn2.x86_64 43/92 Verifying : 1:make-3.82-24.amzn2.x86_64 44/92 Verifying : 2:tar-1.26-35.amzn2.0.2.x86_64 45/92 Verifying : elfutils-libs-0.176-2.amzn2.0.2.x86_64 46/92 Verifying : openssh-7.4p1-22.amzn2.0.5.x86_64 47/92 Verifying : systemd-libs-219-78.amzn2.0.22.x86_64 48/92 Verifying : perl-File-Path-2.09-2.amzn2.noarch 49/92 Verifying : libcilkrts-7.3.1-17.amzn2.x86_64 50/92 Verifying : fipscheck-lib-1.4.1-6.amzn2.0.2.x86_64 51/92 Verifying : systemd-219-78.amzn2.0.22.x86_64 52/92 Verifying : glibc-devel-2.26-63.amzn2.0.1.x86_64 53/92 Verifying : git-core-doc-2.40.1-1.amzn2.0.1.noarch 54/92 Verifying : 4:perl-5.16.3-299.amzn2.0.2.x86_64 55/92 Verifying : 1:dbus-libs-1.10.24-7.amzn2.0.3.x86_64 56/92 Verifying : perl-Carp-1.26-244.amzn2.noarch 57/92 Verifying : elfutils-default-yama-scope-0.176-2.amzn2.0.2.noarch 58/92 Verifying : perl-Scalar-List-Utils-1.27-248.amzn2.0.2.x86_64 59/92 Verifying : cpp-7.3.1-17.amzn2.x86_64 60/92 Verifying : mpfr-3.1.1-4.amzn2.0.2.x86_64 61/92 Verifying : util-linux-2.30.2-2.amzn2.0.11.x86_64 62/92 Verifying : pam-1.1.8-23.amzn2.0.1.x86_64 63/92 Verifying : perl-HTTP-Tiny-0.033-3.amzn2.0.1.noarch 64/92 Verifying : ustr-1.0.4-16.amzn2.0.3.x86_64 65/92 Verifying : less-458-9.amzn2.0.2.x86_64 66/92 Verifying : 1:perl-Error-0.17020-2.amzn2.noarch 67/92 Verifying : perl-Pod-Usage-1.63-3.amzn2.noarch 68/92 Verifying : gcc-7.3.1-17.amzn2.x86_64 69/92 Verifying : 1:perl-parent-0.225-244.amzn2.0.1.noarch 70/92 Verifying : perl-File-Temp-0.23.01-3.amzn2.noarch 71/92 Verifying : libmpx-7.3.1-17.amzn2.x86_64 72/92 Verifying : openssh-clients-7.4p1-22.amzn2.0.5.x86_64 73/92 Verifying : perl-Exporter-5.68-3.amzn2.noarch 74/92 Verifying : cracklib-2.9.0-11.amzn2.0.2.x86_64 75/92 Verifying : perl-Encode-2.51-7.amzn2.0.2.x86_64 76/92 Verifying : 7:device-mapper-1.02.170-6.amzn2.5.x86_64 77/92 Verifying : perl-threads-shared-1.43-6.amzn2.0.2.x86_64 78/92 Verifying : gzip-1.5-10.amzn2.0.1.x86_64 79/92 Verifying : libsanitizer-7.3.1-17.amzn2.x86_64 80/92 Verifying : perl-constant-1.27-2.amzn2.0.1.noarch 81/92 Verifying : kmod-libs-25-3.amzn2.0.2.x86_64 82/92 Verifying : glibc-headers-2.26-63.amzn2.0.1.x86_64 83/92 Verifying : libgomp-7.3.1-17.amzn2.x86_64 84/92 Verifying : perl-threads-1.87-4.amzn2.0.2.x86_64 85/92 Verifying : perl-podlators-2.5.1-3.amzn2.0.1.noarch 86/92 Verifying : libatomic-7.3.1-17.amzn2.x86_64 87/92 Verifying : 4:perl-Time-HiRes-1.9725-3.amzn2.0.2.x86_64 88/92 Verifying : perl-Socket-2.010-4.amzn2.0.2.x86_64 89/92 Verifying : 4:perl-macros-5.16.3-299.amzn2.0.2.x86_64 90/92 Verifying : groff-base-1.22.2-8.amzn2.0.2.x86_64 91/92 Verifying : perl-Text-ParseWords-3.29-4.amzn2.noarch 92/92 Installed: gcc-c++.x86_64 0:7.3.1-17.amzn2 git.x86_64 0:2.40.1-1.amzn2.0.1 make.x86_64 1:3.82-24.amzn2 python3.x86_64 0:3.7.16-1.amzn2.0.4 tar.x86_64 2:1.26-35.amzn2.0.2 Dependency Installed: acl.x86_64 0:2.2.51-14.amzn2 audit-libs.x86_64 0:2.8.1-3.amzn2.1 binutils.x86_64 0:2.29.1-31.amzn2 cpp.x86_64 0:7.3.1-17.amzn2 cracklib.x86_64 0:2.9.0-11.amzn2.0.2 cracklib-dicts.x86_64 0:2.9.0-11.amzn2.0.2 cryptsetup-libs.x86_64 0:1.7.4-4.amzn2 dbus.x86_64 1:1.10.24-7.amzn2.0.3 dbus-libs.x86_64 1:1.10.24-7.amzn2.0.3 device-mapper.x86_64 7:1.02.170-6.amzn2.5 device-mapper-libs.x86_64 7:1.02.170-6.amzn2.5 elfutils-default-yama-scope.noarch 0:0.176-2.amzn2.0.2 elfutils-libs.x86_64 0:0.176-2.amzn2.0.2 fipscheck.x86_64 0:1.4.1-6.amzn2.0.2 fipscheck-lib.x86_64 0:1.4.1-6.amzn2.0.2 gcc.x86_64 0:7.3.1-17.amzn2 git-core.x86_64 0:2.40.1-1.amzn2.0.1 git-core-doc.noarch 0:2.40.1-1.amzn2.0.1 glibc-devel.x86_64 0:2.26-63.amzn2.0.1 glibc-headers.x86_64 0:2.26-63.amzn2.0.1 groff-base.x86_64 0:1.22.2-8.amzn2.0.2 gzip.x86_64 0:1.5-10.amzn2.0.1 kernel-headers.x86_64 0:4.14.327-246.539.amzn2 kmod.x86_64 0:25-3.amzn2.0.2 kmod-libs.x86_64 0:25-3.amzn2.0.2 less.x86_64 0:458-9.amzn2.0.2 libatomic.x86_64 0:7.3.1-17.amzn2 libcap-ng.x86_64 0:0.7.5-4.amzn2.0.4 libcilkrts.x86_64 0:7.3.1-17.amzn2 libedit.x86_64 0:3.0-12.20121213cvs.amzn2.0.2 libfdisk.x86_64 0:2.30.2-2.amzn2.0.11 libgomp.x86_64 0:7.3.1-17.amzn2 libitm.x86_64 0:7.3.1-17.amzn2 libmpc.x86_64 0:1.0.1-3.amzn2.0.2 libmpx.x86_64 0:7.3.1-17.amzn2 libpwquality.x86_64 0:1.2.3-5.amzn2 libquadmath.x86_64 0:7.3.1-17.amzn2 libsanitizer.x86_64 0:7.3.1-17.amzn2 libsemanage.x86_64 0:2.5-11.amzn2 libsmartcols.x86_64 0:2.30.2-2.amzn2.0.11 libtirpc.x86_64 0:0.2.4-0.16.amzn2 libutempter.x86_64 0:1.1.6-4.amzn2.0.2 lz4.x86_64 0:1.7.5-2.amzn2.0.1 mpfr.x86_64 0:3.1.1-4.amzn2.0.2 openssh.x86_64 0:7.4p1-22.amzn2.0.5 openssh-clients.x86_64 0:7.4p1-22.amzn2.0.5 pam.x86_64 0:1.1.8-23.amzn2.0.1 pcre2.x86_64 0:10.23-11.amzn2.0.1 perl.x86_64 4:5.16.3-299.amzn2.0.2 perl-Carp.noarch 0:1.26-244.amzn2 perl-Encode.x86_64 0:2.51-7.amzn2.0.2 perl-Error.noarch 1:0.17020-2.amzn2 perl-Exporter.noarch 0:5.68-3.amzn2 perl-File-Path.noarch 0:2.09-2.amzn2 perl-File-Temp.noarch 0:0.23.01-3.amzn2 perl-Filter.x86_64 0:1.49-3.amzn2.0.2 perl-Getopt-Long.noarch 0:2.40-3.amzn2 perl-Git.noarch 0:2.40.1-1.amzn2.0.1 perl-HTTP-Tiny.noarch 0:0.033-3.amzn2.0.1 perl-PathTools.x86_64 0:3.40-5.amzn2.0.2 perl-Pod-Escapes.noarch 1:1.04-299.amzn2.0.2 perl-Pod-Perldoc.noarch 0:3.20-4.amzn2.0.1 perl-Pod-Simple.noarch 1:3.28-4.amzn2 perl-Pod-Usage.noarch 0:1.63-3.amzn2 perl-Scalar-List-Utils.x86_64 0:1.27-248.amzn2.0.2 perl-Socket.x86_64 0:2.010-4.amzn2.0.2 perl-Storable.x86_64 0:2.45-3.amzn2.0.2 perl-TermReadKey.x86_64 0:2.30-20.amzn2.0.2 perl-Text-ParseWords.noarch 0:3.29-4.amzn2 perl-Time-HiRes.x86_64 4:1.9725-3.amzn2.0.2 perl-Time-Local.noarch 0:1.2300-2.amzn2 perl-constant.noarch 0:1.27-2.amzn2.0.1 perl-libs.x86_64 4:5.16.3-299.amzn2.0.2 perl-macros.x86_64 4:5.16.3-299.amzn2.0.2 perl-parent.noarch 1:0.225-244.amzn2.0.1 perl-podlators.noarch 0:2.5.1-3.amzn2.0.1 perl-threads.x86_64 0:1.87-4.amzn2.0.2 perl-threads-shared.x86_64 0:1.43-6.amzn2.0.2 python3-libs.x86_64 0:3.7.16-1.amzn2.0.4 python3-pip.noarch 0:20.2.2-1.amzn2.0.4 python3-setuptools.noarch 0:49.1.3-1.amzn2.0.3 qrencode-libs.x86_64 0:3.4.1-3.amzn2.0.2 shadow-utils.x86_64 2:4.1.5.1-24.amzn2.0.3 systemd.x86_64 0:219-78.amzn2.0.22 systemd-libs.x86_64 0:219-78.amzn2.0.22 ustr.x86_64 0:1.0.4-16.amzn2.0.3 util-linux.x86_64 0:2.30.2-2.amzn2.0.11 Complete! Loaded plugins: ovl Resolving Dependencies --> Running transaction check ---> Package autoconf.noarch 0:2.69-11.amzn2 will be installed --> Processing Dependency: m4 >= 1.4.14 for package: autoconf-2.69-11.amzn2.noarch --> Processing Dependency: perl(Data::Dumper) for package: autoconf-2.69-11.amzn2.noarch ---> Package automake.noarch 0:1.13.4-3.1.amzn2 will be installed --> Processing Dependency: perl(TAP::Parser) for package: automake-1.13.4-3.1.amzn2.noarch --> Processing Dependency: perl(Thread::Queue) for package: automake-1.13.4-3.1.amzn2.noarch ---> Package bison.x86_64 0:3.0.4-6.amzn2.0.2 will be installed ---> Package byacc.x86_64 0:1.9.20130304-3.amzn2.0.2 will be installed ---> Package cscope.x86_64 0:15.8-10.amzn2.0.2 will be installed --> Processing Dependency: emacs-filesystem for package: cscope-15.8-10.amzn2.0.2.x86_64 ---> Package ctags.x86_64 0:5.8-13.amzn2.0.2 will be installed ---> Package diffstat.x86_64 0:1.57-4.amzn2.0.2 will be installed ---> Package doxygen.x86_64 1:1.8.5-4.amzn2 will be installed ---> Package elfutils.x86_64 0:0.176-2.amzn2.0.2 will be installed ---> Package flex.x86_64 0:2.5.37-3.amzn2.0.3 will be installed ---> Package gcc-gfortran.x86_64 0:7.3.1-17.amzn2 will be installed --> Processing Dependency: libgfortran.so.4()(64bit) for package: gcc-gfortran-7.3.1-17.amzn2.x86_64 ---> Package gettext.x86_64 0:0.19.8.1-3.amzn2 will be installed --> Processing Dependency: gettext-libs(x86-64) = 0.19.8.1-3.amzn2 for package: gettext-0.19.8.1-3.amzn2.x86_64 --> Processing Dependency: libcroco-0.6.so.3()(64bit) for package: gettext-0.19.8.1-3.amzn2.x86_64 --> Processing Dependency: libgettextlib-0.19.8.1.so()(64bit) for package: gettext-0.19.8.1-3.amzn2.x86_64 --> Processing Dependency: libgettextsrc-0.19.8.1.so()(64bit) for package: gettext-0.19.8.1-3.amzn2.x86_64 ---> Package indent.x86_64 0:2.2.11-13.amzn2.0.2 will be installed ---> Package intltool.noarch 0:0.50.2-7.amzn2 will be installed --> Processing Dependency: gettext-devel for package: intltool-0.50.2-7.amzn2.noarch --> Processing Dependency: perl(XML::Parser) for package: intltool-0.50.2-7.amzn2.noarch ---> Package libtool.x86_64 0:2.4.2-22.2.amzn2.0.2 will be installed ---> Package patch.x86_64 0:2.7.1-12.amzn2.0.2 will be installed ---> Package patchutils.x86_64 0:0.3.3-4.amzn2.0.1 will be installed ---> Package pkgconfig.x86_64 1:0.27.1-4.amzn2.0.2 will be installed ---> Package rcs.x86_64 0:5.9.0-5.amzn2.0.2 will be installed ---> Package rpm-build.x86_64 0:4.11.3-48.amzn2.0.3 will be installed --> Processing Dependency: /usr/bin/gdb-add-index for package: rpm-build-4.11.3-48.amzn2.0.3.x86_64 --> Processing Dependency: bzip2 for package: rpm-build-4.11.3-48.amzn2.0.3.x86_64 --> Processing Dependency: file for package: rpm-build-4.11.3-48.amzn2.0.3.x86_64 --> Processing Dependency: unzip for package: rpm-build-4.11.3-48.amzn2.0.3.x86_64 --> Processing Dependency: xz for package: rpm-build-4.11.3-48.amzn2.0.3.x86_64 ---> Package rpm-sign.x86_64 0:4.11.3-48.amzn2.0.3 will be installed ---> Package subversion.x86_64 0:1.7.14-16.amzn2.0.1 will be installed --> Processing Dependency: subversion-libs(x86-64) = 1.7.14-16.amzn2.0.1 for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: systemd-sysv for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libapr-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libaprutil-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libneon.so.27()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_client-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_delta-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_diff-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_fs-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_fs_base-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_fs_fs-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_fs_util-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_ra-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_ra_local-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_ra_neon-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_ra_svn-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_repos-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_subr-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_wc-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 ---> Package swig.x86_64 0:3.0.12-11.amzn2.0.3 will be installed ---> Package system-rpm-config.noarch 0:9.1.0-76.amzn2.0.14 will be installed --> Processing Dependency: dwz >= 0.4 for package: system-rpm-config-9.1.0-76.amzn2.0.14.noarch --> Processing Dependency: go-srpm-macros for package: system-rpm-config-9.1.0-76.amzn2.0.14.noarch --> Processing Dependency: perl-srpm-macros for package: system-rpm-config-9.1.0-76.amzn2.0.14.noarch --> Processing Dependency: zip for package: system-rpm-config-9.1.0-76.amzn2.0.14.noarch ---> Package systemtap.x86_64 0:4.5-1.amzn2.0.1 will be installed --> Processing Dependency: systemtap-client = 4.5-1.amzn2.0.1 for package: systemtap-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: systemtap-devel = 4.5-1.amzn2.0.1 for package: systemtap-4.5-1.amzn2.0.1.x86_64 --> Running transaction check ---> Package apr.x86_64 0:1.7.2-1.amzn2 will be installed ---> Package apr-util.x86_64 0:1.6.3-1.amzn2.0.1 will be installed --> Processing Dependency: apr-util-bdb(x86-64) = 1.6.3-1.amzn2.0.1 for package: apr-util-1.6.3-1.amzn2.0.1.x86_64 ---> Package bzip2.x86_64 0:1.0.6-13.amzn2.0.3 will be installed ---> Package dwz.x86_64 0:0.11-3.amzn2.0.3 will be installed ---> Package emacs-filesystem.noarch 1:27.2-4.amzn2.0.4 will be installed ---> Package file.x86_64 0:5.11-36.amzn2.0.1 will be installed ---> Package gdb.x86_64 0:8.0.1-36.amzn2.0.1 will be installed ---> Package gettext-devel.x86_64 0:0.19.8.1-3.amzn2 will be installed --> Processing Dependency: gettext-common-devel = 0.19.8.1-3.amzn2 for package: gettext-devel-0.19.8.1-3.amzn2.x86_64 ---> Package gettext-libs.x86_64 0:0.19.8.1-3.amzn2 will be installed ---> Package go-srpm-macros.noarch 0:3.0.15-23.amzn2.0.2 will be installed ---> Package libcroco.x86_64 0:0.6.12-6.amzn2 will be installed ---> Package libgfortran.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package m4.x86_64 0:1.4.16-10.amzn2.0.2 will be installed ---> Package neon.x86_64 0:0.30.0-3.amzn2.0.2 will be installed --> Processing Dependency: libgnutls.so.28(GNUTLS_1_4)(64bit) for package: neon-0.30.0-3.amzn2.0.2.x86_64 --> Processing Dependency: libgnutls.so.28(GNUTLS_2_12)(64bit) for package: neon-0.30.0-3.amzn2.0.2.x86_64 --> Processing Dependency: libgnutls.so.28()(64bit) for package: neon-0.30.0-3.amzn2.0.2.x86_64 --> Processing Dependency: libpakchois.so.0()(64bit) for package: neon-0.30.0-3.amzn2.0.2.x86_64 --> Processing Dependency: libproxy.so.1()(64bit) for package: neon-0.30.0-3.amzn2.0.2.x86_64 ---> Package perl-Data-Dumper.x86_64 0:2.145-3.amzn2.0.2 will be installed ---> Package perl-Test-Harness.noarch 0:3.28-3.amzn2 will be installed ---> Package perl-Thread-Queue.noarch 0:3.02-2.amzn2 will be installed ---> Package perl-XML-Parser.x86_64 0:2.41-10.amzn2.0.2 will be installed ---> Package perl-srpm-macros.noarch 0:1-8.amzn2.0.1 will be installed ---> Package subversion-libs.x86_64 0:1.7.14-16.amzn2.0.1 will be installed ---> Package systemd-sysv.x86_64 0:219-78.amzn2.0.22 will be installed ---> Package systemtap-client.x86_64 0:4.5-1.amzn2.0.1 will be installed --> Processing Dependency: systemtap-runtime = 4.5-1.amzn2.0.1 for package: systemtap-client-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: mokutil for package: systemtap-client-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: libavahi-client.so.3()(64bit) for package: systemtap-client-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: libavahi-common.so.3()(64bit) for package: systemtap-client-4.5-1.amzn2.0.1.x86_64 ---> Package systemtap-devel.x86_64 0:4.5-1.amzn2.0.1 will be installed --> Processing Dependency: kernel-devel-uname-r for package: systemtap-devel-4.5-1.amzn2.0.1.x86_64 ---> Package unzip.x86_64 0:6.0-57.amzn2.0.1 will be installed ---> Package xz.x86_64 0:5.2.2-1.amzn2.0.3 will be installed ---> Package zip.x86_64 0:3.0-11.amzn2.0.2 will be installed --> Running transaction check ---> Package apr-util-bdb.x86_64 0:1.6.3-1.amzn2.0.1 will be installed ---> Package avahi-libs.x86_64 0:0.6.31-20.amzn2.0.2 will be installed ---> Package gettext-common-devel.noarch 0:0.19.8.1-3.amzn2 will be installed ---> Package gnutls.x86_64 0:3.3.29-9.amzn2.0.1 will be installed --> Processing Dependency: trousers >= 0.3.11.2 for package: gnutls-3.3.29-9.amzn2.0.1.x86_64 --> Processing Dependency: libhogweed.so.2()(64bit) for package: gnutls-3.3.29-9.amzn2.0.1.x86_64 --> Processing Dependency: libnettle.so.4()(64bit) for package: gnutls-3.3.29-9.amzn2.0.1.x86_64 ---> Package kernel-devel.x86_64 0:4.14.327-246.539.amzn2 will be installed --> Processing Dependency: /usr/sbin/hardlink for package: kernel-devel-4.14.327-246.539.amzn2.x86_64 --> Processing Dependency: elfutils-libelf-devel for package: kernel-devel-4.14.327-246.539.amzn2.x86_64 ---> Package libproxy.x86_64 0:0.4.11-10.amzn2.0.3 will be installed --> Processing Dependency: libmodman.so.1()(64bit) for package: libproxy-0.4.11-10.amzn2.0.3.x86_64 ---> Package mokutil.x86_64 1:0.3.0-10.amzn2.0.1 will be installed --> Processing Dependency: libefivar.so.1(LIBEFIVAR_0.24)(64bit) for package: 1:mokutil-0.3.0-10.amzn2.0.1.x86_64 --> Processing Dependency: libefivar.so.1(libefivar.so.0)(64bit) for package: 1:mokutil-0.3.0-10.amzn2.0.1.x86_64 --> Processing Dependency: libefivar.so.1()(64bit) for package: 1:mokutil-0.3.0-10.amzn2.0.1.x86_64 ---> Package pakchois.x86_64 0:0.4-10.amzn2.0.2 will be installed ---> Package systemtap-runtime.x86_64 0:4.5-1.amzn2.0.1 will be installed --> Processing Dependency: libboost_system.so.1.53.0()(64bit) for package: systemtap-runtime-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: libdyninstAPI.so.9.3()(64bit) for package: systemtap-runtime-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: libjson-c.so.2()(64bit) for package: systemtap-runtime-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: libsymtabAPI.so.9.3()(64bit) for package: systemtap-runtime-4.5-1.amzn2.0.1.x86_64 --> Running transaction check ---> Package boost-system.x86_64 0:1.53.0-27.amzn2.0.5 will be installed ---> Package dyninst.x86_64 0:9.3.1-3.amzn2 will be installed --> Processing Dependency: libboost_date_time-mt.so.1.53.0()(64bit) for package: dyninst-9.3.1-3.amzn2.x86_64 --> Processing Dependency: libboost_thread-mt.so.1.53.0()(64bit) for package: dyninst-9.3.1-3.amzn2.x86_64 --> Processing Dependency: libdwarf.so.0()(64bit) for package: dyninst-9.3.1-3.amzn2.x86_64 ---> Package efivar-libs.x86_64 0:31-4.amzn2.0.4 will be installed ---> Package elfutils-libelf-devel.x86_64 0:0.176-2.amzn2.0.2 will be installed --> Processing Dependency: pkgconfig(zlib) for package: elfutils-libelf-devel-0.176-2.amzn2.0.2.x86_64 ---> Package hardlink.x86_64 1:1.3-3.amzn2 will be installed ---> Package json-c.x86_64 0:0.11-4.amzn2.0.4 will be installed ---> Package libmodman.x86_64 0:2.0.1-8.amzn2.0.2 will be installed ---> Package nettle.x86_64 0:2.7.1-9.amzn2 will be installed ---> Package trousers.x86_64 0:0.3.14-2.amzn2.0.2 will be installed --> Running transaction check ---> Package boost-date-time.x86_64 0:1.53.0-27.amzn2.0.5 will be installed ---> Package boost-thread.x86_64 0:1.53.0-27.amzn2.0.5 will be installed ---> Package libdwarf.x86_64 0:20130207-4.amzn2.0.2 will be installed ---> Package zlib-devel.x86_64 0:1.2.7-19.amzn2.0.3 will be installed --> Processing Dependency: zlib = 1.2.7-19.amzn2.0.3 for package: zlib-devel-1.2.7-19.amzn2.0.3.x86_64 --> Running transaction check ---> Package zlib.x86_64 0:1.2.7-19.amzn2.0.2 will be updated ---> Package zlib.x86_64 0:1.2.7-19.amzn2.0.3 will be an update --> Finished Dependency Resolution Dependencies Resolved ================================================================================ Package Arch Version Repository Size ================================================================================ Installing for group install "Development Tools": autoconf noarch 2.69-11.amzn2 amzn2-core 701 k automake noarch 1.13.4-3.1.amzn2 amzn2-core 679 k bison x86_64 3.0.4-6.amzn2.0.2 amzn2-core 674 k byacc x86_64 1.9.20130304-3.amzn2.0.2 amzn2-core 66 k cscope x86_64 15.8-10.amzn2.0.2 amzn2-core 204 k ctags x86_64 5.8-13.amzn2.0.2 amzn2-core 157 k diffstat x86_64 1.57-4.amzn2.0.2 amzn2-core 35 k doxygen x86_64 1:1.8.5-4.amzn2 amzn2-core 3.5 M elfutils x86_64 0.176-2.amzn2.0.2 amzn2-core 303 k flex x86_64 2.5.37-3.amzn2.0.3 amzn2-core 291 k gcc-gfortran x86_64 7.3.1-17.amzn2 amzn2-core 11 M gettext x86_64 0.19.8.1-3.amzn2 amzn2-core 1.0 M indent x86_64 2.2.11-13.amzn2.0.2 amzn2-core 150 k intltool noarch 0.50.2-7.amzn2 amzn2-core 59 k libtool x86_64 2.4.2-22.2.amzn2.0.2 amzn2-core 588 k patch x86_64 2.7.1-12.amzn2.0.2 amzn2-core 110 k patchutils x86_64 0.3.3-4.amzn2.0.1 amzn2-core 104 k pkgconfig x86_64 1:0.27.1-4.amzn2.0.2 amzn2-core 54 k rcs x86_64 5.9.0-5.amzn2.0.2 amzn2-core 231 k rpm-build x86_64 4.11.3-48.amzn2.0.3 amzn2-core 150 k rpm-sign x86_64 4.11.3-48.amzn2.0.3 amzn2-core 50 k subversion x86_64 1.7.14-16.amzn2.0.1 amzn2-core 1.0 M swig x86_64 3.0.12-11.amzn2.0.3 amzn2-core 1.4 M system-rpm-config noarch 9.1.0-76.amzn2.0.14 amzn2-core 90 k systemtap x86_64 4.5-1.amzn2.0.1 amzn2-core 12 k Installing for dependencies: apr x86_64 1.7.2-1.amzn2 amzn2-core 130 k apr-util x86_64 1.6.3-1.amzn2.0.1 amzn2-core 101 k apr-util-bdb x86_64 1.6.3-1.amzn2.0.1 amzn2-core 22 k avahi-libs x86_64 0.6.31-20.amzn2.0.2 amzn2-core 61 k boost-date-time x86_64 1.53.0-27.amzn2.0.5 amzn2-core 52 k boost-system x86_64 1.53.0-27.amzn2.0.5 amzn2-core 40 k boost-thread x86_64 1.53.0-27.amzn2.0.5 amzn2-core 73 k bzip2 x86_64 1.0.6-13.amzn2.0.3 amzn2-core 52 k dwz x86_64 0.11-3.amzn2.0.3 amzn2-core 98 k dyninst x86_64 9.3.1-3.amzn2 amzn2-core 3.5 M efivar-libs x86_64 31-4.amzn2.0.4 amzn2-core 68 k elfutils-libelf-devel x86_64 0.176-2.amzn2.0.2 amzn2-core 40 k emacs-filesystem noarch 1:27.2-4.amzn2.0.4 amzn2-core 68 k file x86_64 5.11-36.amzn2.0.1 amzn2-core 57 k gdb x86_64 8.0.1-36.amzn2.0.1 amzn2-core 3.1 M gettext-common-devel noarch 0.19.8.1-3.amzn2 amzn2-core 410 k gettext-devel x86_64 0.19.8.1-3.amzn2 amzn2-core 320 k gettext-libs x86_64 0.19.8.1-3.amzn2 amzn2-core 500 k gnutls x86_64 3.3.29-9.amzn2.0.1 amzn2-core 661 k go-srpm-macros noarch 3.0.15-23.amzn2.0.2 amzn2-core 23 k hardlink x86_64 1:1.3-3.amzn2 amzn2-core 23 k json-c x86_64 0.11-4.amzn2.0.4 amzn2-core 30 k kernel-devel x86_64 4.14.327-246.539.amzn2 amzn2-core 13 M libcroco x86_64 0.6.12-6.amzn2 amzn2-core 103 k libdwarf x86_64 20130207-4.amzn2.0.2 amzn2-core 111 k libgfortran x86_64 7.3.1-17.amzn2 amzn2-core 536 k libmodman x86_64 2.0.1-8.amzn2.0.2 amzn2-core 29 k libproxy x86_64 0.4.11-10.amzn2.0.3 amzn2-core 61 k m4 x86_64 1.4.16-10.amzn2.0.2 amzn2-core 256 k mokutil x86_64 1:0.3.0-10.amzn2.0.1 amzn2-core 39 k neon x86_64 0.30.0-3.amzn2.0.2 amzn2-core 166 k nettle x86_64 2.7.1-9.amzn2 amzn2-core 327 k pakchois x86_64 0.4-10.amzn2.0.2 amzn2-core 14 k perl-Data-Dumper x86_64 2.145-3.amzn2.0.2 amzn2-core 48 k perl-Test-Harness noarch 3.28-3.amzn2 amzn2-core 302 k perl-Thread-Queue noarch 3.02-2.amzn2 amzn2-core 17 k perl-XML-Parser x86_64 2.41-10.amzn2.0.2 amzn2-core 223 k perl-srpm-macros noarch 1-8.amzn2.0.1 amzn2-core 4.7 k subversion-libs x86_64 1.7.14-16.amzn2.0.1 amzn2-core 912 k systemd-sysv x86_64 219-78.amzn2.0.22 amzn2-core 98 k systemtap-client x86_64 4.5-1.amzn2.0.1 amzn2-core 3.7 M systemtap-devel x86_64 4.5-1.amzn2.0.1 amzn2-core 2.3 M systemtap-runtime x86_64 4.5-1.amzn2.0.1 amzn2-core 475 k trousers x86_64 0.3.14-2.amzn2.0.2 amzn2-core 294 k unzip x86_64 6.0-57.amzn2.0.1 amzn2-core 182 k xz x86_64 5.2.2-1.amzn2.0.3 amzn2-core 228 k zip x86_64 3.0-11.amzn2.0.2 amzn2-core 263 k zlib-devel x86_64 1.2.7-19.amzn2.0.3 amzn2-core 51 k Updating for dependencies: zlib x86_64 1.2.7-19.amzn2.0.3 amzn2-core 90 k Transaction Summary ================================================================================ Install 25 Packages (+48 Dependent packages) Upgrade ( 1 Dependent package) Total download size: 55 M Downloading packages: Delta RPMs disabled because /usr/bin/applydeltarpm not installed. -------------------------------------------------------------------------------- Total 9.5 MB/s | 55 MB 00:05 Running transaction check Running transaction test Transaction test succeeded Running transaction Updating : zlib-1.2.7-19.amzn2.0.3.x86_64 1/75 Installing : m4-1.4.16-10.amzn2.0.2.x86_64 2/75 Installing : 1:pkgconfig-0.27.1-4.amzn2.0.2.x86_64 3/75 Installing : boost-system-1.53.0-27.amzn2.0.5.x86_64 4/75 Installing : apr-1.7.2-1.amzn2.x86_64 5/75 Installing : apr-util-bdb-1.6.3-1.amzn2.0.1.x86_64 6/75 Installing : apr-util-1.6.3-1.amzn2.0.1.x86_64 7/75 Installing : zip-3.0-11.amzn2.0.2.x86_64 8/75 Installing : avahi-libs-0.6.31-20.amzn2.0.2.x86_64 9/75 Installing : xz-5.2.2-1.amzn2.0.3.x86_64 10/75 Installing : unzip-6.0-57.amzn2.0.1.x86_64 11/75 Installing : libcroco-0.6.12-6.amzn2.x86_64 12/75 Installing : gettext-libs-0.19.8.1-3.amzn2.x86_64 13/75 Installing : patch-2.7.1-12.amzn2.0.2.x86_64 14/75 Installing : perl-Thread-Queue-3.02-2.amzn2.noarch 15/75 Installing : gettext-0.19.8.1-3.amzn2.x86_64 16/75 Installing : boost-thread-1.53.0-27.amzn2.0.5.x86_64 17/75 Installing : zlib-devel-1.2.7-19.amzn2.0.3.x86_64 18/75 Installing : elfutils-libelf-devel-0.176-2.amzn2.0.2.x86_64 19/75 Installing : gdb-8.0.1-36.amzn2.0.1.x86_64 20/75 Installing : file-5.11-36.amzn2.0.1.x86_64 21/75 Installing : libmodman-2.0.1-8.amzn2.0.2.x86_64 22/75 Installing : libproxy-0.4.11-10.amzn2.0.3.x86_64 23/75 Installing : perl-XML-Parser-2.41-10.amzn2.0.2.x86_64 24/75 Installing : bzip2-1.0.6-13.amzn2.0.3.x86_64 25/75 Installing : gettext-common-devel-0.19.8.1-3.amzn2.noarch 26/75 Installing : gettext-devel-0.19.8.1-3.amzn2.x86_64 27/75 Installing : dwz-0.11-3.amzn2.0.3.x86_64 28/75 Installing : systemd-sysv-219-78.amzn2.0.22.x86_64 29/75 Installing : elfutils-0.176-2.amzn2.0.2.x86_64 30/75 Installing : 1:emacs-filesystem-27.2-4.amzn2.0.4.noarch 31/75 Installing : efivar-libs-31-4.amzn2.0.4.x86_64 32/75 Installing : 1:mokutil-0.3.0-10.amzn2.0.1.x86_64 33/75 Installing : perl-srpm-macros-1-8.amzn2.0.1.noarch 34/75 Installing : go-srpm-macros-3.0.15-23.amzn2.0.2.noarch 35/75 Installing : system-rpm-config-9.1.0-76.amzn2.0.14.noarch 36/75 Installing : perl-Data-Dumper-2.145-3.amzn2.0.2.x86_64 37/75 Installing : autoconf-2.69-11.amzn2.noarch 38/75 Installing : trousers-0.3.14-2.amzn2.0.2.x86_64 39/75 Installing : json-c-0.11-4.amzn2.0.4.x86_64 40/75 Installing : perl-Test-Harness-3.28-3.amzn2.noarch 41/75 Installing : automake-1.13.4-3.1.amzn2.noarch 42/75 Installing : libgfortran-7.3.1-17.amzn2.x86_64 43/75 Installing : libdwarf-20130207-4.amzn2.0.2.x86_64 44/75 Installing : pakchois-0.4-10.amzn2.0.2.x86_64 45/75 Installing : nettle-2.7.1-9.amzn2.x86_64 46/75 Installing : gnutls-3.3.29-9.amzn2.0.1.x86_64 47/75 Installing : neon-0.30.0-3.amzn2.0.2.x86_64 48/75 Installing : subversion-libs-1.7.14-16.amzn2.0.1.x86_64 49/75 Installing : 1:hardlink-1.3-3.amzn2.x86_64 50/75 Installing : kernel-devel-4.14.327-246.539.amzn2.x86_64 51/75 Installing : systemtap-devel-4.5-1.amzn2.0.1.x86_64 52/75 Installing : boost-date-time-1.53.0-27.amzn2.0.5.x86_64 53/75 Installing : dyninst-9.3.1-3.amzn2.x86_64 54/75 Installing : systemtap-runtime-4.5-1.amzn2.0.1.x86_64 55/75 Installing : systemtap-client-4.5-1.amzn2.0.1.x86_64 56/75 Installing : systemtap-4.5-1.amzn2.0.1.x86_64 57/75 Installing : subversion-1.7.14-16.amzn2.0.1.x86_64 58/75 Installing : gcc-gfortran-7.3.1-17.amzn2.x86_64 59/75 Installing : intltool-0.50.2-7.amzn2.noarch 60/75 Installing : libtool-2.4.2-22.2.amzn2.0.2.x86_64 61/75 Installing : rpm-build-4.11.3-48.amzn2.0.3.x86_64 62/75 Installing : cscope-15.8-10.amzn2.0.2.x86_64 63/75 Installing : flex-2.5.37-3.amzn2.0.3.x86_64 64/75 Installing : bison-3.0.4-6.amzn2.0.2.x86_64 65/75 Installing : rpm-sign-4.11.3-48.amzn2.0.3.x86_64 66/75 Installing : patchutils-0.3.3-4.amzn2.0.1.x86_64 67/75 Installing : rcs-5.9.0-5.amzn2.0.2.x86_64 68/75 Installing : indent-2.2.11-13.amzn2.0.2.x86_64 69/75 Installing : 1:doxygen-1.8.5-4.amzn2.x86_64 70/75 Installing : diffstat-1.57-4.amzn2.0.2.x86_64 71/75 Installing : byacc-1.9.20130304-3.amzn2.0.2.x86_64 72/75 Installing : swig-3.0.12-11.amzn2.0.3.x86_64 73/75 Installing : ctags-5.8-13.amzn2.0.2.x86_64 74/75 Cleanup : zlib-1.2.7-19.amzn2.0.2.x86_64 75/75 Verifying : zlib-1.2.7-19.amzn2.0.3.x86_64 1/75 Verifying : perl-Thread-Queue-3.02-2.amzn2.noarch 2/75 Verifying : gettext-devel-0.19.8.1-3.amzn2.x86_64 3/75 Verifying : patch-2.7.1-12.amzn2.0.2.x86_64 4/75 Verifying : boost-date-time-1.53.0-27.amzn2.0.5.x86_64 5/75 Verifying : flex-2.5.37-3.amzn2.0.3.x86_64 6/75 Verifying : apr-1.7.2-1.amzn2.x86_64 7/75 Verifying : 1:hardlink-1.3-3.amzn2.x86_64 8/75 Verifying : nettle-2.7.1-9.amzn2.x86_64 9/75 Verifying : gcc-gfortran-7.3.1-17.amzn2.x86_64 10/75 Verifying : ctags-5.8-13.amzn2.0.2.x86_64 11/75 Verifying : swig-3.0.12-11.amzn2.0.3.x86_64 12/75 Verifying : byacc-1.9.20130304-3.amzn2.0.2.x86_64 13/75 Verifying : libcroco-0.6.12-6.amzn2.x86_64 14/75 Verifying : pakchois-0.4-10.amzn2.0.2.x86_64 15/75 Verifying : libdwarf-20130207-4.amzn2.0.2.x86_64 16/75 Verifying : kernel-devel-4.14.327-246.539.amzn2.x86_64 17/75 Verifying : dyninst-9.3.1-3.amzn2.x86_64 18/75 Verifying : gettext-libs-0.19.8.1-3.amzn2.x86_64 19/75 Verifying : cscope-15.8-10.amzn2.0.2.x86_64 20/75 Verifying : unzip-6.0-57.amzn2.0.1.x86_64 21/75 Verifying : diffstat-1.57-4.amzn2.0.2.x86_64 22/75 Verifying : 1:doxygen-1.8.5-4.amzn2.x86_64 23/75 Verifying : 1:mokutil-0.3.0-10.amzn2.0.1.x86_64 24/75 Verifying : system-rpm-config-9.1.0-76.amzn2.0.14.noarch 25/75 Verifying : systemtap-devel-4.5-1.amzn2.0.1.x86_64 26/75 Verifying : libgfortran-7.3.1-17.amzn2.x86_64 27/75 Verifying : gettext-0.19.8.1-3.amzn2.x86_64 28/75 Verifying : perl-Test-Harness-3.28-3.amzn2.noarch 29/75 Verifying : autoconf-2.69-11.amzn2.noarch 30/75 Verifying : intltool-0.50.2-7.amzn2.noarch 31/75 Verifying : zlib-devel-1.2.7-19.amzn2.0.3.x86_64 32/75 Verifying : apr-util-1.6.3-1.amzn2.0.1.x86_64 33/75 Verifying : libproxy-0.4.11-10.amzn2.0.3.x86_64 34/75 Verifying : boost-system-1.53.0-27.amzn2.0.5.x86_64 35/75 Verifying : json-c-0.11-4.amzn2.0.4.x86_64 36/75 Verifying : trousers-0.3.14-2.amzn2.0.2.x86_64 37/75 Verifying : xz-5.2.2-1.amzn2.0.3.x86_64 38/75 Verifying : perl-Data-Dumper-2.145-3.amzn2.0.2.x86_64 39/75 Verifying : perl-srpm-macros-1-8.amzn2.0.1.noarch 40/75 Verifying : gnutls-3.3.29-9.amzn2.0.1.x86_64 41/75 Verifying : subversion-libs-1.7.14-16.amzn2.0.1.x86_64 42/75 Verifying : automake-1.13.4-3.1.amzn2.noarch 43/75 Verifying : rpm-sign-4.11.3-48.amzn2.0.3.x86_64 44/75 Verifying : bison-3.0.4-6.amzn2.0.2.x86_64 45/75 Verifying : efivar-libs-31-4.amzn2.0.4.x86_64 46/75 Verifying : 1:pkgconfig-0.27.1-4.amzn2.0.2.x86_64 47/75 Verifying : 1:emacs-filesystem-27.2-4.amzn2.0.4.noarch 48/75 Verifying : gdb-8.0.1-36.amzn2.0.1.x86_64 49/75 Verifying : elfutils-0.176-2.amzn2.0.2.x86_64 50/75 Verifying : go-srpm-macros-3.0.15-23.amzn2.0.2.noarch 51/75 Verifying : libtool-2.4.2-22.2.amzn2.0.2.x86_64 52/75 Verifying : indent-2.2.11-13.amzn2.0.2.x86_64 53/75 Verifying : subversion-1.7.14-16.amzn2.0.1.x86_64 54/75 Verifying : avahi-libs-0.6.31-20.amzn2.0.2.x86_64 55/75 Verifying : systemd-sysv-219-78.amzn2.0.22.x86_64 56/75 Verifying : apr-util-bdb-1.6.3-1.amzn2.0.1.x86_64 57/75 Verifying : neon-0.30.0-3.amzn2.0.2.x86_64 58/75 Verifying : systemtap-4.5-1.amzn2.0.1.x86_64 59/75 Verifying : dwz-0.11-3.amzn2.0.3.x86_64 60/75 Verifying : gettext-common-devel-0.19.8.1-3.amzn2.noarch 61/75 Verifying : systemtap-client-4.5-1.amzn2.0.1.x86_64 62/75 Verifying : zip-3.0-11.amzn2.0.2.x86_64 63/75 Verifying : bzip2-1.0.6-13.amzn2.0.3.x86_64 64/75 Verifying : rcs-5.9.0-5.amzn2.0.2.x86_64 65/75 Verifying : boost-thread-1.53.0-27.amzn2.0.5.x86_64 66/75 Verifying : file-5.11-36.amzn2.0.1.x86_64 67/75 Verifying : rpm-build-4.11.3-48.amzn2.0.3.x86_64 68/75 Verifying : patchutils-0.3.3-4.amzn2.0.1.x86_64 69/75 Verifying : systemtap-runtime-4.5-1.amzn2.0.1.x86_64 70/75 Verifying : elfutils-libelf-devel-0.176-2.amzn2.0.2.x86_64 71/75 Verifying : m4-1.4.16-10.amzn2.0.2.x86_64 72/75 Verifying : perl-XML-Parser-2.41-10.amzn2.0.2.x86_64 73/75 Verifying : libmodman-2.0.1-8.amzn2.0.2.x86_64 74/75 Verifying : zlib-1.2.7-19.amzn2.0.2.x86_64 75/75 Installed: autoconf.noarch 0:2.69-11.amzn2 automake.noarch 0:1.13.4-3.1.amzn2 bison.x86_64 0:3.0.4-6.amzn2.0.2 byacc.x86_64 0:1.9.20130304-3.amzn2.0.2 cscope.x86_64 0:15.8-10.amzn2.0.2 ctags.x86_64 0:5.8-13.amzn2.0.2 diffstat.x86_64 0:1.57-4.amzn2.0.2 doxygen.x86_64 1:1.8.5-4.amzn2 elfutils.x86_64 0:0.176-2.amzn2.0.2 flex.x86_64 0:2.5.37-3.amzn2.0.3 gcc-gfortran.x86_64 0:7.3.1-17.amzn2 gettext.x86_64 0:0.19.8.1-3.amzn2 indent.x86_64 0:2.2.11-13.amzn2.0.2 intltool.noarch 0:0.50.2-7.amzn2 libtool.x86_64 0:2.4.2-22.2.amzn2.0.2 patch.x86_64 0:2.7.1-12.amzn2.0.2 patchutils.x86_64 0:0.3.3-4.amzn2.0.1 pkgconfig.x86_64 1:0.27.1-4.amzn2.0.2 rcs.x86_64 0:5.9.0-5.amzn2.0.2 rpm-build.x86_64 0:4.11.3-48.amzn2.0.3 rpm-sign.x86_64 0:4.11.3-48.amzn2.0.3 subversion.x86_64 0:1.7.14-16.amzn2.0.1 swig.x86_64 0:3.0.12-11.amzn2.0.3 system-rpm-config.noarch 0:9.1.0-76.amzn2.0.14 systemtap.x86_64 0:4.5-1.amzn2.0.1 Dependency Installed: apr.x86_64 0:1.7.2-1.amzn2 apr-util.x86_64 0:1.6.3-1.amzn2.0.1 apr-util-bdb.x86_64 0:1.6.3-1.amzn2.0.1 avahi-libs.x86_64 0:0.6.31-20.amzn2.0.2 boost-date-time.x86_64 0:1.53.0-27.amzn2.0.5 boost-system.x86_64 0:1.53.0-27.amzn2.0.5 boost-thread.x86_64 0:1.53.0-27.amzn2.0.5 bzip2.x86_64 0:1.0.6-13.amzn2.0.3 dwz.x86_64 0:0.11-3.amzn2.0.3 dyninst.x86_64 0:9.3.1-3.amzn2 efivar-libs.x86_64 0:31-4.amzn2.0.4 elfutils-libelf-devel.x86_64 0:0.176-2.amzn2.0.2 emacs-filesystem.noarch 1:27.2-4.amzn2.0.4 file.x86_64 0:5.11-36.amzn2.0.1 gdb.x86_64 0:8.0.1-36.amzn2.0.1 gettext-common-devel.noarch 0:0.19.8.1-3.amzn2 gettext-devel.x86_64 0:0.19.8.1-3.amzn2 gettext-libs.x86_64 0:0.19.8.1-3.amzn2 gnutls.x86_64 0:3.3.29-9.amzn2.0.1 go-srpm-macros.noarch 0:3.0.15-23.amzn2.0.2 hardlink.x86_64 1:1.3-3.amzn2 json-c.x86_64 0:0.11-4.amzn2.0.4 kernel-devel.x86_64 0:4.14.327-246.539.amzn2 libcroco.x86_64 0:0.6.12-6.amzn2 libdwarf.x86_64 0:20130207-4.amzn2.0.2 libgfortran.x86_64 0:7.3.1-17.amzn2 libmodman.x86_64 0:2.0.1-8.amzn2.0.2 libproxy.x86_64 0:0.4.11-10.amzn2.0.3 m4.x86_64 0:1.4.16-10.amzn2.0.2 mokutil.x86_64 1:0.3.0-10.amzn2.0.1 neon.x86_64 0:0.30.0-3.amzn2.0.2 nettle.x86_64 0:2.7.1-9.amzn2 pakchois.x86_64 0:0.4-10.amzn2.0.2 perl-Data-Dumper.x86_64 0:2.145-3.amzn2.0.2 perl-Test-Harness.noarch 0:3.28-3.amzn2 perl-Thread-Queue.noarch 0:3.02-2.amzn2 perl-XML-Parser.x86_64 0:2.41-10.amzn2.0.2 perl-srpm-macros.noarch 0:1-8.amzn2.0.1 subversion-libs.x86_64 0:1.7.14-16.amzn2.0.1 systemd-sysv.x86_64 0:219-78.amzn2.0.22 systemtap-client.x86_64 0:4.5-1.amzn2.0.1 systemtap-devel.x86_64 0:4.5-1.amzn2.0.1 systemtap-runtime.x86_64 0:4.5-1.amzn2.0.1 trousers.x86_64 0:0.3.14-2.amzn2.0.2 unzip.x86_64 0:6.0-57.amzn2.0.1 xz.x86_64 0:5.2.2-1.amzn2.0.3 zip.x86_64 0:3.0-11.amzn2.0.2 zlib-devel.x86_64 0:1.2.7-19.amzn2.0.3 Dependency Updated: zlib.x86_64 0:1.2.7-19.amzn2.0.3 Complete!% ```
ashvardanian commented 1 year ago

@jlarmstrongiv hey! You need to either upgrade to GCC-12 or disable the SimSIMD USEARCH_USE_SIMSIMD=0 option.

jlarmstrongiv commented 1 year ago

Thank you @ashvardanian

Unfortunately, the version of GCC is tied to the Amazon Linux 2 operating system.

I will try using the option and report back!

ashvardanian commented 1 year ago

@jlarmstrongiv, are you sure? I'd definitely recommend upgrading the compiler over disabling explicit SIMD-acceleration. You can also try defining a macro in bindings.gyp: SIMSIMD_TARGET_X86_AVX512=0, disabling only AVX-512 acceleration and keeping AVX2.

jlarmstrongiv commented 1 year ago

That worked! Thank you @ashvardanian

That’s one of the quickest bug fixes I’ve experienced in a while 🚀

jlarmstrongiv commented 1 year ago

@ashvardanian oops, I ran the wrong command, I still have a build error with USEARCH_USE_SIMSIMD=0

Error logs ``` npx tfd layers --architecture x86_64 --method docker usearch@2.8.6 --npm-install-flag="--build-from-source" --preinstall 'yum install tar git python3 cmake gcc-c++ -y && yum groupinstall "Development Tools" -y' Command failed with exit code 1: docker run --entrypoint /bin/bash -v /var/folders/zf/2l3hc6vn12v7r89t45mhxzhm0000gn/T/018bb145-4441-7762-9dbb-57a639ecfe77:/var/task -e SHARP_IGNORE_GLOBAL_LIBVIPS=1 -e USEARCH_USE_SIMSIMD=0 --rm public.ecr.aws/lambda/nodejs:18-x86_64 -c npm install -g npm@10.2.3 && yum install tar git python3 cmake gcc-c++ -y && yum groupinstall "Development Tools" -y && npm install --build-from-source usearch@2.8.6 There is no installed groups file. Maybe run: yum groups mark convert (see man yum) npm ERR! code 1 npm ERR! path /var/task/node_modules/usearch npm ERR! command failed npm ERR! command sh -c node-gyp rebuild npm ERR! make: Entering directory `/var/task/node_modules/usearch/build' npm ERR! CC(target) Release/obj.target/nothing/../node-addon-api/nothing.o npm ERR! rm -f Release/obj.target/../node-addon-api/nothing.a Release/obj.target/../node-addon-api/nothing.a.ar-file-list; mkdir -p `dirname Release/obj.target/../node-addon-api/nothing.a` npm ERR! ar crs Release/obj.target/../node-addon-api/nothing.a @Release/obj.target/../node-addon-api/nothing.a.ar-file-list npm ERR! COPY Release/nothing.a npm ERR! CXX(target) Release/obj.target/usearch/javascript/lib.o npm ERR! make: Leaving directory `/var/task/node_modules/usearch/build' npm ERR! gyp info it worked if it ends with ok npm ERR! gyp info using node-gyp@10.0.1 npm ERR! gyp info using node@18.18.2 | linux | x64 npm ERR! gyp info find Python using Python version 3.7.16 found at "/usr/bin/python3" npm ERR! gyp http GET https://nodejs.org/download/release/v18.18.2/node-v18.18.2-headers.tar.gz npm ERR! gyp http 200 https://nodejs.org/download/release/v18.18.2/node-v18.18.2-headers.tar.gz npm ERR! gyp http GET https://nodejs.org/download/release/v18.18.2/SHASUMS256.txt npm ERR! gyp http 200 https://nodejs.org/download/release/v18.18.2/SHASUMS256.txt npm ERR! gyp info spawn /usr/bin/python3 npm ERR! gyp info spawn args [ npm ERR! gyp info spawn args '/var/lang/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py', npm ERR! gyp info spawn args 'binding.gyp', npm ERR! gyp info spawn args '-f', npm ERR! gyp info spawn args 'make', npm ERR! gyp info spawn args '-I', npm ERR! gyp info spawn args '/var/task/node_modules/usearch/build/config.gypi', npm ERR! gyp info spawn args '-I', npm ERR! gyp info spawn args '/var/lang/lib/node_modules/npm/node_modules/node-gyp/addon.gypi', npm ERR! gyp info spawn args '-I', npm ERR! gyp info spawn args '/root/.cache/node-gyp/18.18.2/include/node/common.gypi', npm ERR! gyp info spawn args '-Dlibrary=shared_library', npm ERR! gyp info spawn args '-Dvisibility=default', npm ERR! gyp info spawn args '-Dnode_root_dir=/root/.cache/node-gyp/18.18.2', npm ERR! gyp info spawn args '-Dnode_gyp_dir=/var/lang/lib/node_modules/npm/node_modules/node-gyp', npm ERR! gyp info spawn args '-Dnode_lib_file=/root/.cache/node-gyp/18.18.2/<(target_arch)/node.lib', npm ERR! gyp info spawn args '-Dmodule_root_dir=/var/task/node_modules/usearch', npm ERR! gyp info spawn args '-Dnode_engine=v8', npm ERR! gyp info spawn args '--depth=.', npm ERR! gyp info spawn args '--no-parallel', npm ERR! gyp info spawn args '--generator-output', npm ERR! gyp info spawn args 'build', npm ERR! gyp info spawn args '-Goutput_dir=.' npm ERR! gyp info spawn args ] npm ERR! gyp info spawn make npm ERR! gyp info spawn args [ 'BUILDTYPE=Release', '-C', 'build' ] npm ERR! In file included from ../simsimd/include/simsimd/simsimd.h:15:0, npm ERR! from ../include/usearch/index_plugins.hpp:51, npm ERR! from ../include/usearch/index_dense.hpp:10, npm ERR! from ../javascript/lib.cpp:18: npm ERR! ../simsimd/include/simsimd/binary.h: In function ‘simsimd_f32_t simsimd_avx512_b8_hamming(const simsimd_b8_t*, const simsimd_b8_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/binary.h:149:17: error: ‘_mm512_loadu_epi8’ was not declared in this scope npm ERR! a_vec = _mm512_loadu_epi8(a); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/binary.h:149:17: note: suggested alternative: ‘_mm512_add_epi8’ npm ERR! a_vec = _mm512_loadu_epi8(a); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! _mm512_add_epi8 npm ERR! ../simsimd/include/simsimd/binary.h: In function ‘simsimd_f32_t simsimd_avx512_b8_jaccard(const simsimd_b8_t*, const simsimd_b8_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/binary.h:175:17: error: ‘_mm512_loadu_epi8’ was not declared in this scope npm ERR! a_vec = _mm512_loadu_epi8(a); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/binary.h:175:17: note: suggested alternative: ‘_mm512_add_epi8’ npm ERR! a_vec = _mm512_loadu_epi8(a); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! _mm512_add_epi8 npm ERR! In file included from ../simsimd/include/simsimd/simsimd.h:16:0, npm ERR! from ../include/usearch/index_plugins.hpp:51, npm ERR! from ../include/usearch/index_dense.hpp:10, npm ERR! from ../javascript/lib.cpp:18: npm ERR! ../simsimd/include/simsimd/probability.h: In function ‘simsimd_f32_t simsimd_avx512_f32_js(const simsimd_f32_t*, const simsimd_f32_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/probability.h:427:12: warning: unused variable ‘m_recip_approx’ [-Wunused-variable] npm ERR! __m512 m_recip_approx = _mm512_rcp14_ps(m_vec); npm ERR! ^~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h: At global scope: npm ERR! ../simsimd/include/simsimd/probability.h:453:8: error: ‘__m512h’ does not name a type; did you mean ‘__m512d’? npm ERR! inline __m512h npm ERR! ^~~~~~~ npm ERR! __m512d npm ERR! ../simsimd/include/simsimd/probability.h:473:87: error: attribute(target("avx512fp16")) is unknown npm ERR! simsimd_avx512_f16_kl(simsimd_f16_t const* a, simsimd_f16_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! ../simsimd/include/simsimd/probability.h: In function ‘simsimd_f32_t simsimd_avx512_f16_kl(const simsimd_f16_t*, const simsimd_f16_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/probability.h:474:5: error: ‘__m512h’ was not declared in this scope npm ERR! __m512h sum_vec = _mm512_set1_ph((_Float16)0); npm ERR! ^~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:474:5: note: suggested alternative: ‘__m512d’ npm ERR! __m512h sum_vec = _mm512_set1_ph((_Float16)0); npm ERR! ^~~~~~~ npm ERR! __m512d npm ERR! ../simsimd/include/simsimd/probability.h:475:13: error: expected ‘;’ before ‘epsilon_vec’ npm ERR! __m512h epsilon_vec = _mm512_set1_ph((_Float16)SIMSIMD_F16_DIVISION_EPSILON); npm ERR! ^~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:476:13: error: expected ‘;’ before ‘a_vec’ npm ERR! __m512h a_vec, b_vec; npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:481:9: error: ‘a_vec’ was not declared in this scope npm ERR! a_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)), epsilon_vec); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:481:9: note: suggested alternative: ‘iovec’ npm ERR! a_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)), epsilon_vec); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:481:43: error: ‘_mm512_castsi512_ph’ was not declared in this scope npm ERR! a_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:481:43: note: suggested alternative: ‘_mm512_castsi512_pd’ npm ERR! a_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_castsi512_pd npm ERR! ../simsimd/include/simsimd/probability.h:481:99: error: ‘epsilon_vec’ was not declared in this scope npm ERR! a_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)), epsilon_vec); npm ERR! ^~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:481:17: error: ‘_mm512_maskz_add_ph’ was not declared in this scope npm ERR! a_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:481:17: note: suggested alternative: ‘_mm512_maskz_add_ps’ npm ERR! a_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_maskz_add_ps npm ERR! ../simsimd/include/simsimd/probability.h:482:9: error: ‘b_vec’ was not declared in this scope npm ERR! b_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, b)), epsilon_vec); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:482:9: note: suggested alternative: ‘iovec’ npm ERR! b_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, b)), epsilon_vec); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:485:9: error: ‘a_vec’ was not declared in this scope npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:485:9: note: suggested alternative: ‘iovec’ npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:485:51: error: ‘_mm512_loadu_epi16’ was not declared in this scope npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:485:51: note: suggested alternative: ‘_mm512_madd_epi16’ npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! _mm512_madd_epi16 npm ERR! ../simsimd/include/simsimd/probability.h:485:31: error: ‘_mm512_castsi512_ph’ was not declared in this scope npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:485:31: note: suggested alternative: ‘_mm512_castsi512_pd’ npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_castsi512_pd npm ERR! ../simsimd/include/simsimd/probability.h:485:75: error: ‘epsilon_vec’ was not declared in this scope npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:485:17: error: ‘_mm512_add_ph’ was not declared in this scope npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:485:17: note: suggested alternative: ‘_mm512_add_ps’ npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~ npm ERR! _mm512_add_ps npm ERR! ../simsimd/include/simsimd/probability.h:486:9: error: ‘b_vec’ was not declared in this scope npm ERR! b_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(b)), epsilon_vec); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:486:9: note: suggested alternative: ‘iovec’ npm ERR! b_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(b)), epsilon_vec); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:489:13: error: expected ‘;’ before ‘ratio_vec’ npm ERR! __m512h ratio_vec = _mm512_div_ph(a_vec, b_vec); npm ERR! ^~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:490:13: error: expected ‘;’ before ‘log_ratio_vec’ npm ERR! __m512h log_ratio_vec = simsimd_avx512_f16_log2(ratio_vec); npm ERR! ^~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:491:13: error: expected ‘;’ before ‘prod_vec’ npm ERR! __m512h prod_vec = _mm512_mul_ph(a_vec, log_ratio_vec); npm ERR! ^~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:492:5: error: ‘sum_vec’ was not declared in this scope npm ERR! sum_vec = _mm512_add_ph(sum_vec, prod_vec); npm ERR! ^~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:492:5: note: suggested alternative: ‘shm_open’ npm ERR! sum_vec = _mm512_add_ph(sum_vec, prod_vec); npm ERR! ^~~~~~~ npm ERR! shm_open npm ERR! ../simsimd/include/simsimd/probability.h:492:38: error: ‘prod_vec’ was not declared in this scope npm ERR! sum_vec = _mm512_add_ph(sum_vec, prod_vec); npm ERR! ^~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:492:38: note: suggested alternative: ‘iovec’ npm ERR! sum_vec = _mm512_add_ph(sum_vec, prod_vec); npm ERR! ^~~~~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:492:15: error: ‘_mm512_add_ph’ was not declared in this scope npm ERR! sum_vec = _mm512_add_ph(sum_vec, prod_vec); npm ERR! ^~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:492:15: note: suggested alternative: ‘_mm512_add_ps’ npm ERR! sum_vec = _mm512_add_ph(sum_vec, prod_vec); npm ERR! ^~~~~~~~~~~~~ npm ERR! _mm512_add_ps npm ERR! ../simsimd/include/simsimd/probability.h:497:12: error: ‘_mm512_reduce_add_ph’ was not declared in this scope npm ERR! return _mm512_reduce_add_ph(sum_vec) * log2_normalizer; npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:497:12: note: suggested alternative: ‘_mm512_reduce_add_pd’ npm ERR! return _mm512_reduce_add_ph(sum_vec) * log2_normalizer; npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_reduce_add_pd npm ERR! ../simsimd/include/simsimd/probability.h: At global scope: npm ERR! ../simsimd/include/simsimd/probability.h:502:87: error: attribute(target("avx512fp16")) is unknown npm ERR! simsimd_avx512_f16_js(simsimd_f16_t const* a, simsimd_f16_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! ../simsimd/include/simsimd/probability.h: In function ‘simsimd_f32_t simsimd_avx512_f16_js(const simsimd_f16_t*, const simsimd_f16_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/probability.h:503:5: error: ‘__m512h’ was not declared in this scope npm ERR! __m512h sum_a_vec = _mm512_set1_ph((_Float16)0); npm ERR! ^~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:503:5: note: suggested alternative: ‘__m512d’ npm ERR! __m512h sum_a_vec = _mm512_set1_ph((_Float16)0); npm ERR! ^~~~~~~ npm ERR! __m512d npm ERR! ../simsimd/include/simsimd/probability.h:504:13: error: expected ‘;’ before ‘sum_b_vec’ npm ERR! __m512h sum_b_vec = _mm512_set1_ph((_Float16)0); npm ERR! ^~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:505:13: error: expected ‘;’ before ‘epsilon_vec’ npm ERR! __m512h epsilon_vec = _mm512_set1_ph((_Float16)SIMSIMD_F16_DIVISION_EPSILON); npm ERR! ^~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:506:13: error: expected ‘;’ before ‘a_vec’ npm ERR! __m512h a_vec, b_vec; npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:511:9: error: ‘a_vec’ was not declared in this scope npm ERR! a_vec = _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:511:9: note: suggested alternative: ‘iovec’ npm ERR! a_vec = _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:511:17: error: ‘_mm512_castsi512_ph’ was not declared in this scope npm ERR! a_vec = _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:511:17: note: suggested alternative: ‘_mm512_castsi512_pd’ npm ERR! a_vec = _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_castsi512_pd npm ERR! ../simsimd/include/simsimd/probability.h:512:9: error: ‘b_vec’ was not declared in this scope npm ERR! b_vec = _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, b)); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:512:9: note: suggested alternative: ‘iovec’ npm ERR! b_vec = _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, b)); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:515:9: error: ‘a_vec’ was not declared in this scope npm ERR! a_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(a)); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:515:9: note: suggested alternative: ‘iovec’ npm ERR! a_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(a)); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:515:37: error: ‘_mm512_loadu_epi16’ was not declared in this scope npm ERR! a_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(a)); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:515:37: note: suggested alternative: ‘_mm512_madd_epi16’ npm ERR! a_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(a)); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! _mm512_madd_epi16 npm ERR! ../simsimd/include/simsimd/probability.h:515:17: error: ‘_mm512_castsi512_ph’ was not declared in this scope npm ERR! a_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(a)); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:515:17: note: suggested alternative: ‘_mm512_castsi512_pd’ npm ERR! a_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(a)); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_castsi512_pd npm ERR! ../simsimd/include/simsimd/probability.h:516:9: error: ‘b_vec’ was not declared in this scope npm ERR! b_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(b)); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:516:9: note: suggested alternative: ‘iovec’ npm ERR! b_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(b)); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:519:13: error: expected ‘;’ before ‘m_vec’ npm ERR! __m512h m_vec = _mm512_mul_ph(_mm512_add_ph(a_vec, b_vec), _mm512_set1_ph((_Float16)0.5f)); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:520:51: error: ‘a_vec’ was not declared in this scope npm ERR! __mmask32 nonzero_mask_a = _mm512_cmp_ph_mask(a_vec, epsilon_vec, _CMP_GE_OQ); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:520:51: note: suggested alternative: ‘iovec’ npm ERR! __mmask32 nonzero_mask_a = _mm512_cmp_ph_mask(a_vec, epsilon_vec, _CMP_GE_OQ); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:520:58: error: ‘epsilon_vec’ was not declared in this scope npm ERR! __mmask32 nonzero_mask_a = _mm512_cmp_ph_mask(a_vec, epsilon_vec, _CMP_GE_OQ); npm ERR! ^~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:520:32: error: ‘_mm512_cmp_ph_mask’ was not declared in this scope npm ERR! __mmask32 nonzero_mask_a = _mm512_cmp_ph_mask(a_vec, epsilon_vec, _CMP_GE_OQ); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:520:32: note: suggested alternative: ‘_mm512_cmp_ps_mask’ npm ERR! __mmask32 nonzero_mask_a = _mm512_cmp_ph_mask(a_vec, epsilon_vec, _CMP_GE_OQ); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! _mm512_cmp_ps_mask npm ERR! ../simsimd/include/simsimd/probability.h:521:51: error: ‘b_vec’ was not declared in this scope npm ERR! __mmask32 nonzero_mask_b = _mm512_cmp_ph_mask(b_vec, epsilon_vec, _CMP_GE_OQ); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:521:51: note: suggested alternative: ‘iovec’ npm ERR! __mmask32 nonzero_mask_b = _mm512_cmp_ph_mask(b_vec, epsilon_vec, _CMP_GE_OQ); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:523:13: error: expected ‘;’ before ‘m_recip_approx’ npm ERR! __m512h m_recip_approx = _mm512_rcp_ph(m_vec); npm ERR! ^~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:524:13: error: expected ‘;’ before ‘ratio_a_vec’ npm ERR! __m512h ratio_a_vec = _mm512_mul_ph(a_vec, m_recip_approx); npm ERR! ^~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:525:13: error: expected ‘;’ before ‘ratio_b_vec’ npm ERR! __m512h ratio_b_vec = _mm512_mul_ph(b_vec, m_recip_approx); npm ERR! ^~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:526:13: error: expected ‘;’ before ‘log_ratio_a_vec’ npm ERR! __m512h log_ratio_a_vec = simsimd_avx512_f16_log2(ratio_a_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:527:13: error: expected ‘;’ before ‘log_ratio_b_vec’ npm ERR! __m512h log_ratio_b_vec = simsimd_avx512_f16_log2(ratio_b_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:528:5: error: ‘sum_a_vec’ was not declared in this scope npm ERR! sum_a_vec = _mm512_maskz_fmadd_ph(nonzero_mask, a_vec, log_ratio_a_vec, sum_a_vec); npm ERR! ^~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:528:60: error: ‘log_ratio_a_vec’ was not declared in this scope npm ERR! sum_a_vec = _mm512_maskz_fmadd_ph(nonzero_mask, a_vec, log_ratio_a_vec, sum_a_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:528:17: error: ‘_mm512_maskz_fmadd_ph’ was not declared in this scope npm ERR! sum_a_vec = _mm512_maskz_fmadd_ph(nonzero_mask, a_vec, log_ratio_a_vec, sum_a_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:528:17: note: suggested alternative: ‘_mm512_maskz_fmadd_ps’ npm ERR! sum_a_vec = _mm512_maskz_fmadd_ph(nonzero_mask, a_vec, log_ratio_a_vec, sum_a_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_maskz_fmadd_ps npm ERR! ../simsimd/include/simsimd/probability.h:529:5: error: ‘sum_b_vec’ was not declared in this scope npm ERR! sum_b_vec = _mm512_maskz_fmadd_ph(nonzero_mask, b_vec, log_ratio_b_vec, sum_b_vec); npm ERR! ^~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:529:60: error: ‘log_ratio_b_vec’ was not declared in this scope npm ERR! sum_b_vec = _mm512_maskz_fmadd_ph(nonzero_mask, b_vec, log_ratio_b_vec, sum_b_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:534:33: error: ‘_mm512_add_ph’ was not declared in this scope npm ERR! return _mm512_reduce_add_ph(_mm512_add_ph(sum_a_vec, sum_b_vec)) * 0.5f * log2_normalizer; npm ERR! ^~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:534:33: note: suggested alternative: ‘_mm512_add_ps’ npm ERR! return _mm512_reduce_add_ph(_mm512_add_ph(sum_a_vec, sum_b_vec)) * 0.5f * log2_normalizer; npm ERR! ^~~~~~~~~~~~~ npm ERR! _mm512_add_ps npm ERR! ../simsimd/include/simsimd/probability.h:534:12: error: ‘_mm512_reduce_add_ph’ was not declared in this scope npm ERR! return _mm512_reduce_add_ph(_mm512_add_ph(sum_a_vec, sum_b_vec)) * 0.5f * log2_normalizer; npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:534:12: note: suggested alternative: ‘_mm512_reduce_add_pd’ npm ERR! return _mm512_reduce_add_ph(_mm512_add_ph(sum_a_vec, sum_b_vec)) * 0.5f * log2_normalizer; npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_reduce_add_pd npm ERR! In file included from ../simsimd/include/simsimd/simsimd.h:17:0, npm ERR! from ../include/usearch/index_plugins.hpp:51, npm ERR! from ../include/usearch/index_dense.hpp:10, npm ERR! from ../javascript/lib.cpp:18: npm ERR! ../simsimd/include/simsimd/spatial.h: At global scope: npm ERR! ../simsimd/include/simsimd/spatial.h:836:89: error: attribute(target("avx512fp16")) is unknown npm ERR! simsimd_avx512_f16_l2sq(simsimd_f16_t const* a, simsimd_f16_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! ../simsimd/include/simsimd/spatial.h: In function ‘simsimd_f32_t simsimd_avx512_f16_l2sq(const simsimd_f16_t*, const simsimd_f16_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/spatial.h:837:5: error: ‘__m512h’ was not declared in this scope npm ERR! __m512h d2_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:837:5: note: suggested alternative: ‘__m512d’ npm ERR! __m512h d2_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~~ npm ERR! __m512d npm ERR! ../simsimd/include/simsimd/spatial.h:847:21: error: ‘_mm512_loadu_epi16’ was not declared in this scope npm ERR! a_i16_vec = _mm512_loadu_epi16(a); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:847:21: note: suggested alternative: ‘_mm512_madd_epi16’ npm ERR! a_i16_vec = _mm512_loadu_epi16(a); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! _mm512_madd_epi16 npm ERR! ../simsimd/include/simsimd/spatial.h:851:13: error: expected ‘;’ before ‘d_vec’ npm ERR! __m512h d_vec = _mm512_sub_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec)); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:852:5: error: ‘d2_vec’ was not declared in this scope npm ERR! d2_vec = _mm512_fmadd_ph(d_vec, d_vec, d2_vec); npm ERR! ^~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:852:5: note: suggested alternative: ‘iovec’ npm ERR! d2_vec = _mm512_fmadd_ph(d_vec, d_vec, d2_vec); npm ERR! ^~~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/spatial.h:852:30: error: ‘d_vec’ was not declared in this scope npm ERR! d2_vec = _mm512_fmadd_ph(d_vec, d_vec, d2_vec); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:852:30: note: suggested alternative: ‘iovec’ npm ERR! d2_vec = _mm512_fmadd_ph(d_vec, d_vec, d2_vec); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/spatial.h:852:14: error: ‘_mm512_fmadd_ph’ was not declared in this scope npm ERR! d2_vec = _mm512_fmadd_ph(d_vec, d_vec, d2_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:852:14: note: suggested alternative: ‘_mm512_fmadd_ps’ npm ERR! d2_vec = _mm512_fmadd_ph(d_vec, d_vec, d2_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! _mm512_fmadd_ps npm ERR! ../simsimd/include/simsimd/spatial.h:856:12: error: ‘_mm512_reduce_add_ph’ was not declared in this scope npm ERR! return _mm512_reduce_add_ph(d2_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:856:12: note: suggested alternative: ‘_mm512_reduce_add_pd’ npm ERR! return _mm512_reduce_add_ph(d2_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_reduce_add_pd npm ERR! ../simsimd/include/simsimd/spatial.h: At global scope: npm ERR! ../simsimd/include/simsimd/spatial.h:861:87: error: attribute(target("avx512fp16")) is unknown npm ERR! simsimd_avx512_f16_ip(simsimd_f16_t const* a, simsimd_f16_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! ../simsimd/include/simsimd/spatial.h: In function ‘simsimd_f32_t simsimd_avx512_f16_ip(const simsimd_f16_t*, const simsimd_f16_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/spatial.h:862:5: error: ‘__m512h’ was not declared in this scope npm ERR! __m512h ab_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:862:5: note: suggested alternative: ‘__m512d’ npm ERR! __m512h ab_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~~ npm ERR! __m512d npm ERR! ../simsimd/include/simsimd/spatial.h:872:21: error: ‘_mm512_loadu_epi16’ was not declared in this scope npm ERR! a_i16_vec = _mm512_loadu_epi16(a); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:872:21: note: suggested alternative: ‘_mm512_madd_epi16’ npm ERR! a_i16_vec = _mm512_loadu_epi16(a); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! _mm512_madd_epi16 npm ERR! ../simsimd/include/simsimd/spatial.h:876:5: error: ‘ab_vec’ was not declared in this scope npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:876:5: note: suggested alternative: ‘iovec’ npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/spatial.h:876:30: error: ‘_mm512_castsi512_ph’ was not declared in this scope npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:876:30: note: suggested alternative: ‘_mm512_castsi512_pd’ npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_castsi512_pd npm ERR! ../simsimd/include/simsimd/spatial.h:876:14: error: ‘_mm512_fmadd_ph’ was not declared in this scope npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:876:14: note: suggested alternative: ‘_mm512_fmadd_ps’ npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! _mm512_fmadd_ps npm ERR! ../simsimd/include/simsimd/spatial.h:880:16: error: ‘_mm512_reduce_add_ph’ was not declared in this scope npm ERR! return 1 - _mm512_reduce_add_ph(ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:880:16: note: suggested alternative: ‘_mm512_reduce_add_pd’ npm ERR! return 1 - _mm512_reduce_add_ph(ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_reduce_add_pd npm ERR! ../simsimd/include/simsimd/spatial.h: At global scope: npm ERR! ../simsimd/include/simsimd/spatial.h:885:88: error: attribute(target("avx512fp16")) is unknown npm ERR! simsimd_avx512_f16_cos(simsimd_f16_t const* a, simsimd_f16_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! ../simsimd/include/simsimd/spatial.h: In function ‘simsimd_f32_t simsimd_avx512_f16_cos(const simsimd_f16_t*, const simsimd_f16_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/spatial.h:886:5: error: ‘__m512h’ was not declared in this scope npm ERR! __m512h ab_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:886:5: note: suggested alternative: ‘__m512d’ npm ERR! __m512h ab_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~~ npm ERR! __m512d npm ERR! ../simsimd/include/simsimd/spatial.h:887:13: error: expected ‘;’ before ‘a2_vec’ npm ERR! __m512h a2_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:888:13: error: expected ‘;’ before ‘b2_vec’ npm ERR! __m512h b2_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:898:21: error: ‘_mm512_loadu_epi16’ was not declared in this scope npm ERR! a_i16_vec = _mm512_loadu_epi16(a); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:898:21: note: suggested alternative: ‘_mm512_madd_epi16’ npm ERR! a_i16_vec = _mm512_loadu_epi16(a); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! _mm512_madd_epi16 npm ERR! ../simsimd/include/simsimd/spatial.h:902:5: error: ‘ab_vec’ was not declared in this scope npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:902:5: note: suggested alternative: ‘iovec’ npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/spatial.h:902:30: error: ‘_mm512_castsi512_ph’ was not declared in this scope npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:902:30: note: suggested alternative: ‘_mm512_castsi512_pd’ npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_castsi512_pd npm ERR! ../simsimd/include/simsimd/spatial.h:902:14: error: ‘_mm512_fmadd_ph’ was not declared in this scope npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:902:14: note: suggested alternative: ‘_mm512_fmadd_ps’ npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! _mm512_fmadd_ps npm ERR! ../simsimd/include/simsimd/spatial.h:903:5: error: ‘a2_vec’ was not declared in this scope npm ERR! a2_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(a_i16_vec), a2_vec); npm ERR! ^~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:903:5: note: suggested alternative: ‘iovec’ npm ERR! a2_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(a_i16_vec), a2_vec); npm ERR! ^~~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/spatial.h:904:5: error: ‘b2_vec’ was not declared in this scope npm ERR! b2_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(b_i16_vec), _mm512_castsi512_ph(b_i16_vec), b2_vec); npm ERR! ^~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:904:5: note: suggested alternative: ‘iovec’ npm ERR! b2_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(b_i16_vec), _mm512_castsi512_ph(b_i16_vec), b2_vec); npm ERR! ^~~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/spatial.h:908:24: error: ‘_mm512_reduce_add_ph’ was not declared in this scope npm ERR! simsimd_f32_t ab = _mm512_reduce_add_ph(ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:908:24: note: suggested alternative: ‘_mm512_reduce_add_pd’ npm ERR! simsimd_f32_t ab = _mm512_reduce_add_ph(ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_reduce_add_pd npm ERR! ../simsimd/include/simsimd/spatial.h: At global scope: npm ERR! ../simsimd/include/simsimd/spatial.h:933:86: error: attribute(target("avx512vnni")) is unknown npm ERR! simsimd_avx512_i8_l2sq(simsimd_i8_t const* a, simsimd_i8_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! ../simsimd/include/simsimd/spatial.h: In function ‘simsimd_f32_t simsimd_avx512_i8_l2sq(const simsimd_i8_t*, const simsimd_i8_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/spatial.h:944:38: error: ‘_mm256_loadu_epi8’ was not declared in this scope npm ERR! a_vec = _mm512_cvtepi8_epi16(_mm256_loadu_epi8(a)); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:944:38: note: suggested alternative: ‘_mm256_add_epi8’ npm ERR! a_vec = _mm512_cvtepi8_epi16(_mm256_loadu_epi8(a)); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! _mm256_add_epi8 npm ERR! ../simsimd/include/simsimd/spatial.h:949:19: error: ‘_mm512_dpwssd_epi32’ was not declared in this scope npm ERR! d2_i32s_vec = _mm512_dpwssd_epi32(d2_i32s_vec, d_i16s_vec, d_i16s_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:949:19: note: suggested alternative: ‘_mm512_4dpwssd_epi32’ npm ERR! d2_i32s_vec = _mm512_dpwssd_epi32(d2_i32s_vec, d_i16s_vec, d_i16s_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_4dpwssd_epi32 npm ERR! ../simsimd/include/simsimd/spatial.h: At global scope: npm ERR! ../simsimd/include/simsimd/spatial.h:958:85: error: attribute(target("avx512vnni")) is unknown npm ERR! simsimd_avx512_i8_cos(simsimd_i8_t const* a, simsimd_i8_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! ../simsimd/include/simsimd/spatial.h: In function ‘simsimd_f32_t simsimd_avx512_i8_cos(const simsimd_i8_t*, const simsimd_i8_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/spatial.h:971:17: error: ‘_mm512_loadu_epi8’ was not declared in this scope npm ERR! a_vec = _mm512_loadu_epi8(a); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:971:17: note: suggested alternative: ‘_mm512_add_epi8’ npm ERR! a_vec = _mm512_loadu_epi8(a); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! _mm512_add_epi8 npm ERR! ../simsimd/include/simsimd/spatial.h:975:19: error: ‘_mm512_dpbusd_epi32’ was not declared in this scope npm ERR! ab_i32s_vec = _mm512_dpbusd_epi32(ab_i32s_vec, a_vec, b_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:975:19: note: suggested alternative: ‘_mm512_4dpwssd_epi32’ npm ERR! ab_i32s_vec = _mm512_dpbusd_epi32(ab_i32s_vec, a_vec, b_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_4dpwssd_epi32 npm ERR! ../simsimd/include/simsimd/spatial.h: At global scope: npm ERR! ../simsimd/include/simsimd/spatial.h:994:84: error: attribute(target("avx512vnni")) is unknown npm ERR! simsimd_avx512_i8_ip(simsimd_i8_t const* a, simsimd_i8_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! In file included from ../include/usearch/index_plugins.hpp:51:0, npm ERR! from ../include/usearch/index_dense.hpp:10, npm ERR! from ../javascript/lib.cpp:18: npm ERR! ../simsimd/include/simsimd/simsimd.h:189:32: warning: unknown option after ‘#pragma GCC diagnostic’ kind [-Wpragmas] npm ERR! #pragma GCC diagnostic ignored "-Wcast-function-type" npm ERR! ^~~~~~~~~~~~~~~~~~~~~~ npm ERR! In file included from ../simsimd/include/simsimd/simsimd.h:17:0, npm ERR! from ../include/usearch/index_plugins.hpp:51, npm ERR! from ../include/usearch/index_dense.hpp:10, npm ERR! from ../javascript/lib.cpp:18: npm ERR! ../simsimd/include/simsimd/spatial.h: In function ‘simsimd_f32_t simsimd_avx512_i8_l2sq(const simsimd_i8_t*, const simsimd_i8_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/spatial.h:934:48: warning: AVX512F vector return without AVX512F enabled changes the ABI [-Wpsabi] npm ERR! __m512i d2_i32s_vec = _mm512_setzero_si512(); npm ERR! ^ npm ERR! ../simsimd/include/simsimd/spatial.h:940:37: warning: AVX vector return without AVX enabled changes the ABI [-Wpsabi] npm ERR! a_vec = _mm512_cvtepi8_epi16(_mm256_maskz_loadu_epi8(mask, a)); npm ERR! ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ npm ERR! make: *** [Release/obj.target/usearch/javascript/lib.o] Error 1 npm ERR! gyp ERR! build error npm ERR! gyp ERR! stack Error: `make` failed with exit code: 2 npm ERR! gyp ERR! stack at ChildProcess. (/var/lang/lib/node_modules/npm/node_modules/node-gyp/lib/build.js:209:23) npm ERR! gyp ERR! System Linux 6.4.16-linuxkit npm ERR! gyp ERR! command "/var/lang/bin/node" "/var/lang/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild" npm ERR! gyp ERR! cwd /var/task/node_modules/usearch npm ERR! gyp ERR! node -v v18.18.2 npm ERR! gyp ERR! node-gyp -v v10.0.1 npm ERR! gyp ERR! not ok npm ERR! A complete log of this run can be found in: /root/.npm/_logs/2023-11-08T23_30_52_821Z-debug-0.log removed 31 packages, and changed 65 packages in 6s 26 packages are looking for funding run `npm fund` for details Loaded plugins: ovl Resolving Dependencies --> Running transaction check ---> Package cmake.x86_64 0:2.8.12.2-2.amzn2.0.2 will be installed --> Processing Dependency: libarchive.so.13()(64bit) for package: cmake-2.8.12.2-2.amzn2.0.2.x86_64 ---> Package gcc-c++.x86_64 0:7.3.1-17.amzn2 will be installed --> Processing Dependency: gcc(x86-64) = 7.3.1-17.amzn2 for package: gcc-c++-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libmpc.so.3()(64bit) for package: gcc-c++-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libmpfr.so.4()(64bit) for package: gcc-c++-7.3.1-17.amzn2.x86_64 ---> Package git.x86_64 0:2.40.1-1.amzn2.0.1 will be installed --> Processing Dependency: git-core = 2.40.1-1.amzn2.0.1 for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: git-core-doc = 2.40.1-1.amzn2.0.1 for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl-Git = 2.40.1-1.amzn2.0.1 for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl >= 5.008 for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: /usr/bin/perl for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(File::Basename) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(File::Find) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(File::Spec) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(Getopt::Long) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(Git) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(IPC::Open2) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(Term::ReadKey) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(lib) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(strict) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(warnings) for package: git-2.40.1-1.amzn2.0.1.x86_64 ---> Package python3.x86_64 0:3.7.16-1.amzn2.0.4 will be installed --> Processing Dependency: python3-libs(x86-64) = 3.7.16-1.amzn2.0.4 for package: python3-3.7.16-1.amzn2.0.4.x86_64 --> Processing Dependency: python3-pip for package: python3-3.7.16-1.amzn2.0.4.x86_64 --> Processing Dependency: python3-setuptools for package: python3-3.7.16-1.amzn2.0.4.x86_64 --> Processing Dependency: libpython3.7m.so.1.0()(64bit) for package: python3-3.7.16-1.amzn2.0.4.x86_64 ---> Package tar.x86_64 2:1.26-35.amzn2.0.2 will be installed --> Running transaction check ---> Package gcc.x86_64 0:7.3.1-17.amzn2 will be installed --> Processing Dependency: cpp = 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libgomp = 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: binutils >= 2.24 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: glibc-devel >= 2.2.90-12 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libatomic >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libcilkrts >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libitm >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libmpx >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libquadmath >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libsanitizer >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libgomp.so.1()(64bit) for package: gcc-7.3.1-17.amzn2.x86_64 ---> Package git-core.x86_64 0:2.40.1-1.amzn2.0.1 will be installed --> Processing Dependency: less for package: git-core-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: openssh-clients for package: git-core-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: libpcre2-8.so.0()(64bit) for package: git-core-2.40.1-1.amzn2.0.1.x86_64 ---> Package git-core-doc.noarch 0:2.40.1-1.amzn2.0.1 will be installed ---> Package libarchive.x86_64 0:3.1.2-14.amzn2.0.1 will be installed --> Processing Dependency: liblzo2.so.2()(64bit) for package: libarchive-3.1.2-14.amzn2.0.1.x86_64 ---> Package libmpc.x86_64 0:1.0.1-3.amzn2.0.2 will be installed ---> Package mpfr.x86_64 0:3.1.1-4.amzn2.0.2 will be installed ---> Package perl.x86_64 4:5.16.3-299.amzn2.0.2 will be installed --> Processing Dependency: perl-libs = 4:5.16.3-299.amzn2.0.2 for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Scalar::Util) >= 1.10 for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Socket) >= 1.3 for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Carp) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Exporter) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(File::Path) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(File::Temp) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Filter::Util::Call) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Pod::Simple::Search) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Pod::Simple::XHTML) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Scalar::Util) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Socket) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Storable) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Time::HiRes) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Time::Local) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(constant) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(threads) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(threads::shared) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl-libs for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl-macros for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: libperl.so()(64bit) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 ---> Package perl-Getopt-Long.noarch 0:2.40-3.amzn2 will be installed --> Processing Dependency: perl(Pod::Usage) >= 1.14 for package: perl-Getopt-Long-2.40-3.amzn2.noarch --> Processing Dependency: perl(Text::ParseWords) for package: perl-Getopt-Long-2.40-3.amzn2.noarch ---> Package perl-Git.noarch 0:2.40.1-1.amzn2.0.1 will be installed --> Processing Dependency: perl(Error) for package: perl-Git-2.40.1-1.amzn2.0.1.noarch ---> Package perl-PathTools.x86_64 0:3.40-5.amzn2.0.2 will be installed ---> Package perl-TermReadKey.x86_64 0:2.30-20.amzn2.0.2 will be installed ---> Package python3-libs.x86_64 0:3.7.16-1.amzn2.0.4 will be installed --> Processing Dependency: libtirpc.so.1()(64bit) for package: python3-libs-3.7.16-1.amzn2.0.4.x86_64 ---> Package python3-pip.noarch 0:20.2.2-1.amzn2.0.4 will be installed ---> Package python3-setuptools.noarch 0:49.1.3-1.amzn2.0.3 will be installed --> Running transaction check ---> Package binutils.x86_64 0:2.29.1-31.amzn2 will be installed ---> Package cpp.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package glibc-devel.x86_64 0:2.26-63.amzn2.0.1 will be installed --> Processing Dependency: glibc-headers = 2.26-63.amzn2.0.1 for package: glibc-devel-2.26-63.amzn2.0.1.x86_64 --> Processing Dependency: glibc-headers for package: glibc-devel-2.26-63.amzn2.0.1.x86_64 ---> Package less.x86_64 0:458-9.amzn2.0.2 will be installed --> Processing Dependency: groff-base for package: less-458-9.amzn2.0.2.x86_64 ---> Package libatomic.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libcilkrts.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libgomp.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libitm.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libmpx.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libquadmath.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libsanitizer.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libtirpc.x86_64 0:0.2.4-0.16.amzn2 will be installed ---> Package lzo.x86_64 0:2.06-8.amzn2.0.4 will be installed ---> Package openssh-clients.x86_64 0:7.4p1-22.amzn2.0.5 will be installed --> Processing Dependency: openssh = 7.4p1-22.amzn2.0.5 for package: openssh-clients-7.4p1-22.amzn2.0.5.x86_64 --> Processing Dependency: fipscheck-lib(x86-64) >= 1.3.0 for package: openssh-clients-7.4p1-22.amzn2.0.5.x86_64 --> Processing Dependency: libedit.so.0()(64bit) for package: openssh-clients-7.4p1-22.amzn2.0.5.x86_64 --> Processing Dependency: libfipscheck.so.1()(64bit) for package: openssh-clients-7.4p1-22.amzn2.0.5.x86_64 ---> Package pcre2.x86_64 0:10.23-11.amzn2.0.1 will be installed ---> Package perl-Carp.noarch 0:1.26-244.amzn2 will be installed ---> Package perl-Error.noarch 1:0.17020-2.amzn2 will be installed ---> Package perl-Exporter.noarch 0:5.68-3.amzn2 will be installed ---> Package perl-File-Path.noarch 0:2.09-2.amzn2 will be installed ---> Package perl-File-Temp.noarch 0:0.23.01-3.amzn2 will be installed ---> Package perl-Filter.x86_64 0:1.49-3.amzn2.0.2 will be installed ---> Package perl-Pod-Simple.noarch 1:3.28-4.amzn2 will be installed --> Processing Dependency: perl(Pod::Escapes) >= 1.04 for package: 1:perl-Pod-Simple-3.28-4.amzn2.noarch --> Processing Dependency: perl(Encode) for package: 1:perl-Pod-Simple-3.28-4.amzn2.noarch ---> Package perl-Pod-Usage.noarch 0:1.63-3.amzn2 will be installed --> Processing Dependency: perl(Pod::Text) >= 3.15 for package: perl-Pod-Usage-1.63-3.amzn2.noarch --> Processing Dependency: perl-Pod-Perldoc for package: perl-Pod-Usage-1.63-3.amzn2.noarch ---> Package perl-Scalar-List-Utils.x86_64 0:1.27-248.amzn2.0.2 will be installed ---> Package perl-Socket.x86_64 0:2.010-4.amzn2.0.2 will be installed ---> Package perl-Storable.x86_64 0:2.45-3.amzn2.0.2 will be installed ---> Package perl-Text-ParseWords.noarch 0:3.29-4.amzn2 will be installed ---> Package perl-Time-HiRes.x86_64 4:1.9725-3.amzn2.0.2 will be installed ---> Package perl-Time-Local.noarch 0:1.2300-2.amzn2 will be installed ---> Package perl-constant.noarch 0:1.27-2.amzn2.0.1 will be installed ---> Package perl-libs.x86_64 4:5.16.3-299.amzn2.0.2 will be installed ---> Package perl-macros.x86_64 4:5.16.3-299.amzn2.0.2 will be installed ---> Package perl-threads.x86_64 0:1.87-4.amzn2.0.2 will be installed ---> Package perl-threads-shared.x86_64 0:1.43-6.amzn2.0.2 will be installed --> Running transaction check ---> Package fipscheck-lib.x86_64 0:1.4.1-6.amzn2.0.2 will be installed --> Processing Dependency: /usr/bin/fipscheck for package: fipscheck-lib-1.4.1-6.amzn2.0.2.x86_64 ---> Package glibc-headers.x86_64 0:2.26-63.amzn2.0.1 will be installed --> Processing Dependency: kernel-headers >= 2.2.1 for package: glibc-headers-2.26-63.amzn2.0.1.x86_64 --> Processing Dependency: kernel-headers for package: glibc-headers-2.26-63.amzn2.0.1.x86_64 ---> Package groff-base.x86_64 0:1.22.2-8.amzn2.0.2 will be installed ---> Package libedit.x86_64 0:3.0-12.20121213cvs.amzn2.0.2 will be installed ---> Package openssh.x86_64 0:7.4p1-22.amzn2.0.5 will be installed --> Processing Dependency: audit-libs >= 1.0.8 for package: openssh-7.4p1-22.amzn2.0.5.x86_64 --> Processing Dependency: /sbin/nologin for package: openssh-7.4p1-22.amzn2.0.5.x86_64 ---> Package perl-Encode.x86_64 0:2.51-7.amzn2.0.2 will be installed ---> Package perl-Pod-Escapes.noarch 1:1.04-299.amzn2.0.2 will be installed ---> Package perl-Pod-Perldoc.noarch 0:3.20-4.amzn2.0.1 will be installed --> Processing Dependency: perl(HTTP::Tiny) for package: perl-Pod-Perldoc-3.20-4.amzn2.0.1.noarch --> Processing Dependency: perl(parent) for package: perl-Pod-Perldoc-3.20-4.amzn2.0.1.noarch ---> Package perl-podlators.noarch 0:2.5.1-3.amzn2.0.1 will be installed --> Running transaction check ---> Package audit-libs.x86_64 0:2.8.1-3.amzn2.1 will be installed --> Processing Dependency: libcap-ng.so.0()(64bit) for package: audit-libs-2.8.1-3.amzn2.1.x86_64 ---> Package fipscheck.x86_64 0:1.4.1-6.amzn2.0.2 will be installed ---> Package kernel-headers.x86_64 0:4.14.327-246.539.amzn2 will be installed ---> Package perl-HTTP-Tiny.noarch 0:0.033-3.amzn2.0.1 will be installed ---> Package perl-parent.noarch 1:0.225-244.amzn2.0.1 will be installed ---> Package util-linux.x86_64 0:2.30.2-2.amzn2.0.11 will be installed --> Processing Dependency: libfdisk = 2.30.2-2.amzn2.0.11 for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols = 2.30.2-2.amzn2.0.11 for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: pam >= 1.1.3-7 for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: /etc/pam.d/system-auth for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1(FDISK_2.26)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1(FDISK_2.27)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1(FDISK_2.28)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1(FDISK_2.29)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1(FDISK_2.30)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libpam.so.0(LIBPAM_1.0)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libpam_misc.so.0(LIBPAM_MISC_1.0)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1(SMARTCOLS_2.25)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1(SMARTCOLS_2.27)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1(SMARTCOLS_2.28)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1(SMARTCOLS_2.29)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1(SMARTCOLS_2.30)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsystemd.so.0(LIBSYSTEMD_209)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libudev.so.1(LIBUDEV_183)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libutempter.so.0(UTEMPTER_1.1)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libpam.so.0()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libpam_misc.so.0()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsystemd.so.0()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libudev.so.1()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libutempter.so.0()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Running transaction check ---> Package libcap-ng.x86_64 0:0.7.5-4.amzn2.0.4 will be installed ---> Package libfdisk.x86_64 0:2.30.2-2.amzn2.0.11 will be installed ---> Package libsmartcols.x86_64 0:2.30.2-2.amzn2.0.11 will be installed ---> Package libutempter.x86_64 0:1.1.6-4.amzn2.0.2 will be installed --> Processing Dependency: shadow-utils for package: libutempter-1.1.6-4.amzn2.0.2.x86_64 ---> Package pam.x86_64 0:1.1.8-23.amzn2.0.1 will be installed --> Processing Dependency: cracklib-dicts >= 2.8 for package: pam-1.1.8-23.amzn2.0.1.x86_64 --> Processing Dependency: libpwquality >= 0.9.9 for package: pam-1.1.8-23.amzn2.0.1.x86_64 --> Processing Dependency: libcrack.so.2()(64bit) for package: pam-1.1.8-23.amzn2.0.1.x86_64 ---> Package systemd-libs.x86_64 0:219-78.amzn2.0.22 will be installed --> Processing Dependency: libdw.so.1()(64bit) for package: systemd-libs-219-78.amzn2.0.22.x86_64 --> Processing Dependency: liblz4.so.1()(64bit) for package: systemd-libs-219-78.amzn2.0.22.x86_64 --> Running transaction check ---> Package cracklib.x86_64 0:2.9.0-11.amzn2.0.2 will be installed --> Processing Dependency: gzip for package: cracklib-2.9.0-11.amzn2.0.2.x86_64 ---> Package cracklib-dicts.x86_64 0:2.9.0-11.amzn2.0.2 will be installed ---> Package elfutils-libs.x86_64 0:0.176-2.amzn2.0.2 will be installed --> Processing Dependency: default-yama-scope for package: elfutils-libs-0.176-2.amzn2.0.2.x86_64 ---> Package libpwquality.x86_64 0:1.2.3-5.amzn2 will be installed ---> Package lz4.x86_64 0:1.7.5-2.amzn2.0.1 will be installed ---> Package shadow-utils.x86_64 2:4.1.5.1-24.amzn2.0.3 will be installed --> Processing Dependency: libsemanage.so.1(LIBSEMANAGE_1.0)(64bit) for package: 2:shadow-utils-4.1.5.1-24.amzn2.0.3.x86_64 --> Processing Dependency: libsemanage.so.1()(64bit) for package: 2:shadow-utils-4.1.5.1-24.amzn2.0.3.x86_64 --> Running transaction check ---> Package elfutils-default-yama-scope.noarch 0:0.176-2.amzn2.0.2 will be installed --> Processing Dependency: systemd for package: elfutils-default-yama-scope-0.176-2.amzn2.0.2.noarch --> Processing Dependency: systemd for package: elfutils-default-yama-scope-0.176-2.amzn2.0.2.noarch ---> Package gzip.x86_64 0:1.5-10.amzn2.0.1 will be installed ---> Package libsemanage.x86_64 0:2.5-11.amzn2 will be installed --> Processing Dependency: libustr-1.0.so.1(USTR_1.0)(64bit) for package: libsemanage-2.5-11.amzn2.x86_64 --> Processing Dependency: libustr-1.0.so.1(USTR_1.0.1)(64bit) for package: libsemanage-2.5-11.amzn2.x86_64 --> Processing Dependency: libustr-1.0.so.1()(64bit) for package: libsemanage-2.5-11.amzn2.x86_64 --> Running transaction check ---> Package systemd.x86_64 0:219-78.amzn2.0.22 will be installed --> Processing Dependency: kmod >= 18-4 for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: acl for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: dbus for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: libcryptsetup.so.4(CRYPTSETUP_1.0)(64bit) for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: libkmod.so.2(LIBKMOD_5)(64bit) for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: libcryptsetup.so.4()(64bit) for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: libkmod.so.2()(64bit) for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: libqrencode.so.3()(64bit) for package: systemd-219-78.amzn2.0.22.x86_64 ---> Package ustr.x86_64 0:1.0.4-16.amzn2.0.3 will be installed --> Running transaction check ---> Package acl.x86_64 0:2.2.51-14.amzn2 will be installed ---> Package cryptsetup-libs.x86_64 0:1.7.4-4.amzn2 will be installed --> Processing Dependency: libdevmapper.so.1.02(Base)(64bit) for package: cryptsetup-libs-1.7.4-4.amzn2.x86_64 --> Processing Dependency: libdevmapper.so.1.02(DM_1_02_97)(64bit) for package: cryptsetup-libs-1.7.4-4.amzn2.x86_64 --> Processing Dependency: libdevmapper.so.1.02()(64bit) for package: cryptsetup-libs-1.7.4-4.amzn2.x86_64 ---> Package dbus.x86_64 1:1.10.24-7.amzn2.0.3 will be installed --> Processing Dependency: dbus-libs(x86-64) = 1:1.10.24-7.amzn2.0.3 for package: 1:dbus-1.10.24-7.amzn2.0.3.x86_64 --> Processing Dependency: libdbus-1.so.3(LIBDBUS_1_3)(64bit) for package: 1:dbus-1.10.24-7.amzn2.0.3.x86_64 --> Processing Dependency: libdbus-1.so.3(LIBDBUS_PRIVATE_1.10.24)(64bit) for package: 1:dbus-1.10.24-7.amzn2.0.3.x86_64 --> Processing Dependency: libdbus-1.so.3()(64bit) for package: 1:dbus-1.10.24-7.amzn2.0.3.x86_64 ---> Package kmod.x86_64 0:25-3.amzn2.0.2 will be installed ---> Package kmod-libs.x86_64 0:25-3.amzn2.0.2 will be installed ---> Package qrencode-libs.x86_64 0:3.4.1-3.amzn2.0.2 will be installed --> Running transaction check ---> Package dbus-libs.x86_64 1:1.10.24-7.amzn2.0.3 will be installed ---> Package device-mapper-libs.x86_64 7:1.02.170-6.amzn2.5 will be installed --> Processing Dependency: device-mapper = 7:1.02.170-6.amzn2.5 for package: 7:device-mapper-libs-1.02.170-6.amzn2.5.x86_64 --> Running transaction check ---> Package device-mapper.x86_64 7:1.02.170-6.amzn2.5 will be installed --> Finished Dependency Resolution Dependencies Resolved ================================================================================ Package Arch Version Repository Size ================================================================================ Installing: cmake x86_64 2.8.12.2-2.amzn2.0.2 amzn2-core 6.9 M gcc-c++ x86_64 7.3.1-17.amzn2 amzn2-core 13 M git x86_64 2.40.1-1.amzn2.0.1 amzn2-core 54 k python3 x86_64 3.7.16-1.amzn2.0.4 amzn2-core 72 k tar x86_64 2:1.26-35.amzn2.0.2 amzn2-core 845 k Installing for dependencies: acl x86_64 2.2.51-14.amzn2 amzn2-core 82 k audit-libs x86_64 2.8.1-3.amzn2.1 amzn2-core 99 k binutils x86_64 2.29.1-31.amzn2 amzn2-core 5.8 M cpp x86_64 7.3.1-17.amzn2 amzn2-core 9.2 M cracklib x86_64 2.9.0-11.amzn2.0.2 amzn2-core 80 k cracklib-dicts x86_64 2.9.0-11.amzn2.0.2 amzn2-core 3.6 M cryptsetup-libs x86_64 1.7.4-4.amzn2 amzn2-core 224 k dbus x86_64 1:1.10.24-7.amzn2.0.3 amzn2-core 245 k dbus-libs x86_64 1:1.10.24-7.amzn2.0.3 amzn2-core 167 k device-mapper x86_64 7:1.02.170-6.amzn2.5 amzn2-core 297 k device-mapper-libs x86_64 7:1.02.170-6.amzn2.5 amzn2-core 326 k elfutils-default-yama-scope noarch 0.176-2.amzn2.0.2 amzn2-core 33 k elfutils-libs x86_64 0.176-2.amzn2.0.2 amzn2-core 289 k fipscheck x86_64 1.4.1-6.amzn2.0.2 amzn2-core 21 k fipscheck-lib x86_64 1.4.1-6.amzn2.0.2 amzn2-core 11 k gcc x86_64 7.3.1-17.amzn2 amzn2-core 22 M git-core x86_64 2.40.1-1.amzn2.0.1 amzn2-core 10 M git-core-doc noarch 2.40.1-1.amzn2.0.1 amzn2-core 3.0 M glibc-devel x86_64 2.26-63.amzn2.0.1 amzn2-core 995 k glibc-headers x86_64 2.26-63.amzn2.0.1 amzn2-core 516 k groff-base x86_64 1.22.2-8.amzn2.0.2 amzn2-core 948 k gzip x86_64 1.5-10.amzn2.0.1 amzn2-core 129 k kernel-headers x86_64 4.14.327-246.539.amzn2 amzn2-core 1.2 M kmod x86_64 25-3.amzn2.0.2 amzn2-core 111 k kmod-libs x86_64 25-3.amzn2.0.2 amzn2-core 59 k less x86_64 458-9.amzn2.0.2 amzn2-core 121 k libarchive x86_64 3.1.2-14.amzn2.0.1 amzn2-core 312 k libatomic x86_64 7.3.1-17.amzn2 amzn2-core 46 k libcap-ng x86_64 0.7.5-4.amzn2.0.4 amzn2-core 25 k libcilkrts x86_64 7.3.1-17.amzn2 amzn2-core 85 k libedit x86_64 3.0-12.20121213cvs.amzn2.0.2 amzn2-core 93 k libfdisk x86_64 2.30.2-2.amzn2.0.11 amzn2-core 238 k libgomp x86_64 7.3.1-17.amzn2 amzn2-core 205 k libitm x86_64 7.3.1-17.amzn2 amzn2-core 85 k libmpc x86_64 1.0.1-3.amzn2.0.2 amzn2-core 52 k libmpx x86_64 7.3.1-17.amzn2 amzn2-core 52 k libpwquality x86_64 1.2.3-5.amzn2 amzn2-core 84 k libquadmath x86_64 7.3.1-17.amzn2 amzn2-core 189 k libsanitizer x86_64 7.3.1-17.amzn2 amzn2-core 642 k libsemanage x86_64 2.5-11.amzn2 amzn2-core 152 k libsmartcols x86_64 2.30.2-2.amzn2.0.11 amzn2-core 155 k libtirpc x86_64 0.2.4-0.16.amzn2 amzn2-core 88 k libutempter x86_64 1.1.6-4.amzn2.0.2 amzn2-core 25 k lz4 x86_64 1.7.5-2.amzn2.0.1 amzn2-core 99 k lzo x86_64 2.06-8.amzn2.0.4 amzn2-core 60 k mpfr x86_64 3.1.1-4.amzn2.0.2 amzn2-core 208 k openssh x86_64 7.4p1-22.amzn2.0.5 amzn2-core 508 k openssh-clients x86_64 7.4p1-22.amzn2.0.5 amzn2-core 652 k pam x86_64 1.1.8-23.amzn2.0.1 amzn2-core 715 k pcre2 x86_64 10.23-11.amzn2.0.1 amzn2-core 207 k perl x86_64 4:5.16.3-299.amzn2.0.2 amzn2-core 8.0 M perl-Carp noarch 1.26-244.amzn2 amzn2-core 19 k perl-Encode x86_64 2.51-7.amzn2.0.2 amzn2-core 1.5 M perl-Error noarch 1:0.17020-2.amzn2 amzn2-core 32 k perl-Exporter noarch 5.68-3.amzn2 amzn2-core 29 k perl-File-Path noarch 2.09-2.amzn2 amzn2-core 27 k perl-File-Temp noarch 0.23.01-3.amzn2 amzn2-core 56 k perl-Filter x86_64 1.49-3.amzn2.0.2 amzn2-core 76 k perl-Getopt-Long noarch 2.40-3.amzn2 amzn2-core 56 k perl-Git noarch 2.40.1-1.amzn2.0.1 amzn2-core 41 k perl-HTTP-Tiny noarch 0.033-3.amzn2.0.1 amzn2-core 39 k perl-PathTools x86_64 3.40-5.amzn2.0.2 amzn2-core 83 k perl-Pod-Escapes noarch 1:1.04-299.amzn2.0.2 amzn2-core 52 k perl-Pod-Perldoc noarch 3.20-4.amzn2.0.1 amzn2-core 87 k perl-Pod-Simple noarch 1:3.28-4.amzn2 amzn2-core 216 k perl-Pod-Usage noarch 1.63-3.amzn2 amzn2-core 27 k perl-Scalar-List-Utils x86_64 1.27-248.amzn2.0.2 amzn2-core 36 k perl-Socket x86_64 2.010-4.amzn2.0.2 amzn2-core 49 k perl-Storable x86_64 2.45-3.amzn2.0.2 amzn2-core 78 k perl-TermReadKey x86_64 2.30-20.amzn2.0.2 amzn2-core 31 k perl-Text-ParseWords noarch 3.29-4.amzn2 amzn2-core 14 k perl-Time-HiRes x86_64 4:1.9725-3.amzn2.0.2 amzn2-core 45 k perl-Time-Local noarch 1.2300-2.amzn2 amzn2-core 24 k perl-constant noarch 1.27-2.amzn2.0.1 amzn2-core 19 k perl-libs x86_64 4:5.16.3-299.amzn2.0.2 amzn2-core 685 k perl-macros x86_64 4:5.16.3-299.amzn2.0.2 amzn2-core 45 k perl-parent noarch 1:0.225-244.amzn2.0.1 amzn2-core 12 k perl-podlators noarch 2.5.1-3.amzn2.0.1 amzn2-core 112 k perl-threads x86_64 1.87-4.amzn2.0.2 amzn2-core 50 k perl-threads-shared x86_64 1.43-6.amzn2.0.2 amzn2-core 39 k python3-libs x86_64 3.7.16-1.amzn2.0.4 amzn2-core 9.8 M python3-pip noarch 20.2.2-1.amzn2.0.4 amzn2-core 2.0 M python3-setuptools noarch 49.1.3-1.amzn2.0.3 amzn2-core 1.1 M qrencode-libs x86_64 3.4.1-3.amzn2.0.2 amzn2-core 50 k shadow-utils x86_64 2:4.1.5.1-24.amzn2.0.3 amzn2-core 1.1 M systemd x86_64 219-78.amzn2.0.22 amzn2-core 5.0 M systemd-libs x86_64 219-78.amzn2.0.22 amzn2-core 409 k ustr x86_64 1.0.4-16.amzn2.0.3 amzn2-core 96 k util-linux x86_64 2.30.2-2.amzn2.0.11 amzn2-core 2.3 M Transaction Summary ================================================================================ Install 5 Packages (+89 Dependent packages) Total download size: 118 M Installed size: 387 M Downloading packages: -------------------------------------------------------------------------------- Total 29 MB/s | 118 MB 00:04 Running transaction check Running transaction test Transaction test succeeded Running transaction Installing : mpfr-3.1.1-4.amzn2.0.2.x86_64 1/94 Installing : libmpc-1.0.1-3.amzn2.0.2.x86_64 2/94 Installing : libcap-ng-0.7.5-4.amzn2.0.4.x86_64 3/94 Installing : audit-libs-2.8.1-3.amzn2.1.x86_64 4/94 Installing : groff-base-1.22.2-8.amzn2.0.2.x86_64 5/94 Installing : lz4-1.7.5-2.amzn2.0.1.x86_64 6/94 Installing : 1:perl-parent-0.225-244.amzn2.0.1.noarch 7/94 Installing : perl-HTTP-Tiny-0.033-3.amzn2.0.1.noarch 8/94 Installing : perl-Pod-Perldoc-3.20-4.amzn2.0.1.noarch 9/94 Installing : perl-podlators-2.5.1-3.amzn2.0.1.noarch 10/94 Installing : perl-Text-ParseWords-3.29-4.amzn2.noarch 11/94 Installing : perl-Encode-2.51-7.amzn2.0.2.x86_64 12/94 Installing : perl-Pod-Usage-1.63-3.amzn2.noarch 13/94 Installing : 1:perl-Pod-Escapes-1.04-299.amzn2.0.2.noarch 14/94 Installing : 4:perl-libs-5.16.3-299.amzn2.0.2.x86_64 15/94 Installing : perl-Filter-1.49-3.amzn2.0.2.x86_64 16/94 Installing : perl-Storable-2.45-3.amzn2.0.2.x86_64 17/94 Installing : perl-Carp-1.26-244.amzn2.noarch 18/94 Installing : perl-File-Path-2.09-2.amzn2.noarch 19/94 Installing : perl-PathTools-3.40-5.amzn2.0.2.x86_64 20/94 Installing : perl-Scalar-List-Utils-1.27-248.amzn2.0.2.x86_64 21/94 Installing : perl-Exporter-5.68-3.amzn2.noarch 22/94 Installing : perl-Time-Local-1.2300-2.amzn2.noarch 23/94 Installing : perl-File-Temp-0.23.01-3.amzn2.noarch 24/94 Installing : perl-constant-1.27-2.amzn2.0.1.noarch 25/94 Installing : perl-threads-shared-1.43-6.amzn2.0.2.x86_64 26/94 Installing : perl-threads-1.87-4.amzn2.0.2.x86_64 27/94 Installing : 4:perl-Time-HiRes-1.9725-3.amzn2.0.2.x86_64 28/94 Installing : perl-Socket-2.010-4.amzn2.0.2.x86_64 29/94 Installing : 4:perl-macros-5.16.3-299.amzn2.0.2.x86_64 30/94 Installing : perl-Getopt-Long-2.40-3.amzn2.noarch 31/94 Installing : 1:perl-Pod-Simple-3.28-4.amzn2.noarch 32/94 Installing : 4:perl-5.16.3-299.amzn2.0.2.x86_64 33/94 Installing : perl-TermReadKey-2.30-20.amzn2.0.2.x86_64 34/94 Installing : 1:perl-Error-0.17020-2.amzn2.noarch 35/94 Installing : less-458-9.amzn2.0.2.x86_64 36/94 Installing : cpp-7.3.1-17.amzn2.x86_64 37/94 Installing : fipscheck-lib-1.4.1-6.amzn2.0.2.x86_64 38/94 Installing : fipscheck-1.4.1-6.amzn2.0.2.x86_64 39/94 Installing : libatomic-7.3.1-17.amzn2.x86_64 40/94 Installing : libgomp-7.3.1-17.amzn2.x86_64 41/94 Installing : kmod-libs-25-3.amzn2.0.2.x86_64 42/94 Installing : libsanitizer-7.3.1-17.amzn2.x86_64 43/94 Installing : gzip-1.5-10.amzn2.0.1.x86_64 44/94 Installing : cracklib-2.9.0-11.amzn2.0.2.x86_64 45/94 Installing : cracklib-dicts-2.9.0-11.amzn2.0.2.x86_64 46/94 Installing : libpwquality-1.2.3-5.amzn2.x86_64 47/94 Installing : pam-1.1.8-23.amzn2.0.1.x86_64 48/94 Installing : libmpx-7.3.1-17.amzn2.x86_64 49/94 Installing : ustr-1.0.4-16.amzn2.0.3.x86_64 50/94 Installing : libsemanage-2.5-11.amzn2.x86_64 51/94 Installing : 2:shadow-utils-4.1.5.1-24.amzn2.0.3.x86_64 52/94 Installing : libutempter-1.1.6-4.amzn2.0.2.x86_64 53/94 Installing : lzo-2.06-8.amzn2.0.4.x86_64 54/94 Installing : libarchive-3.1.2-14.amzn2.0.1.x86_64 55/94 Installing : libcilkrts-7.3.1-17.amzn2.x86_64 56/94 Installing : acl-2.2.51-14.amzn2.x86_64 57/94 Installing : pcre2-10.23-11.amzn2.0.1.x86_64 58/94 Installing : libsmartcols-2.30.2-2.amzn2.0.11.x86_64 59/94 Installing : binutils-2.29.1-31.amzn2.x86_64 60/94 Installing : kernel-headers-4.14.327-246.539.amzn2.x86_64 61/94 Installing : glibc-headers-2.26-63.amzn2.0.1.x86_64 62/94 Installing : glibc-devel-2.26-63.amzn2.0.1.x86_64 63/94 Installing : kmod-25-3.amzn2.0.2.x86_64 64/94 Installing : libfdisk-2.30.2-2.amzn2.0.11.x86_64 65/94 Installing : libtirpc-0.2.4-0.16.amzn2.x86_64 66/94 Installing : python3-setuptools-49.1.3-1.amzn2.0.3.noarch 67/94 Installing : python3-libs-3.7.16-1.amzn2.0.4.x86_64 68/94 Installing : python3-3.7.16-1.amzn2.0.4.x86_64 69/94 Installing : python3-pip-20.2.2-1.amzn2.0.4.noarch 70/94 Installing : qrencode-libs-3.4.1-3.amzn2.0.2.x86_64 71/94 Installing : util-linux-2.30.2-2.amzn2.0.11.x86_64 72/94 Installing : 7:device-mapper-1.02.170-6.amzn2.5.x86_64 73/94 Installing : 7:device-mapper-libs-1.02.170-6.amzn2.5.x86_64 74/94 Installing : cryptsetup-libs-1.7.4-4.amzn2.x86_64 75/94 Installing : elfutils-libs-0.176-2.amzn2.0.2.x86_64 76/94 Installing : systemd-libs-219-78.amzn2.0.22.x86_64 77/94 Installing : 1:dbus-libs-1.10.24-7.amzn2.0.3.x86_64 78/94 Installing : systemd-219-78.amzn2.0.22.x86_64 79/94 Failed to get D-Bus connection: Operation not permitted Installing : 1:dbus-1.10.24-7.amzn2.0.3.x86_64 80/94 Installing : elfutils-default-yama-scope-0.176-2.amzn2.0.2.noarch 81/94 Installing : openssh-7.4p1-22.amzn2.0.5.x86_64 82/94 Installing : libquadmath-7.3.1-17.amzn2.x86_64 83/94 Installing : libedit-3.0-12.20121213cvs.amzn2.0.2.x86_64 84/94 Installing : openssh-clients-7.4p1-22.amzn2.0.5.x86_64 85/94 Installing : git-core-2.40.1-1.amzn2.0.1.x86_64 86/94 Installing : git-core-doc-2.40.1-1.amzn2.0.1.noarch 87/94 Installing : git-2.40.1-1.amzn2.0.1.x86_64 88/94 Installing : perl-Git-2.40.1-1.amzn2.0.1.noarch 89/94 Installing : libitm-7.3.1-17.amzn2.x86_64 90/94 Installing : gcc-7.3.1-17.amzn2.x86_64 91/94 Installing : gcc-c++-7.3.1-17.amzn2.x86_64 92/94 Installing : cmake-2.8.12.2-2.amzn2.0.2.x86_64 93/94 Installing : 2:tar-1.26-35.amzn2.0.2.x86_64 94/94 Verifying : python3-pip-20.2.2-1.amzn2.0.4.noarch 1/94 Verifying : libitm-7.3.1-17.amzn2.x86_64 2/94 Verifying : 1:perl-Pod-Escapes-1.04-299.amzn2.0.2.noarch 3/94 Verifying : git-core-2.40.1-1.amzn2.0.1.x86_64 4/94 Verifying : python3-setuptools-49.1.3-1.amzn2.0.3.noarch 5/94 Verifying : libmpc-1.0.1-3.amzn2.0.2.x86_64 6/94 Verifying : git-2.40.1-1.amzn2.0.1.x86_64 7/94 Verifying : cryptsetup-libs-1.7.4-4.amzn2.x86_64 8/94 Verifying : libedit-3.0-12.20121213cvs.amzn2.0.2.x86_64 9/94 Verifying : libutempter-1.1.6-4.amzn2.0.2.x86_64 10/94 Verifying : lz4-1.7.5-2.amzn2.0.1.x86_64 11/94 Verifying : libquadmath-7.3.1-17.amzn2.x86_64 12/94 Verifying : qrencode-libs-3.4.1-3.amzn2.0.2.x86_64 13/94 Verifying : perl-Filter-1.49-3.amzn2.0.2.x86_64 14/94 Verifying : 1:perl-Pod-Simple-3.28-4.amzn2.noarch 15/94 Verifying : libtirpc-0.2.4-0.16.amzn2.x86_64 16/94 Verifying : libfdisk-2.30.2-2.amzn2.0.11.x86_64 17/94 Verifying : perl-PathTools-3.40-5.amzn2.0.2.x86_64 18/94 Verifying : libcap-ng-0.7.5-4.amzn2.0.4.x86_64 19/94 Verifying : python3-libs-3.7.16-1.amzn2.0.4.x86_64 20/94 Verifying : gcc-c++-7.3.1-17.amzn2.x86_64 21/94 Verifying : perl-Storable-2.45-3.amzn2.0.2.x86_64 22/94 Verifying : python3-3.7.16-1.amzn2.0.4.x86_64 23/94 Verifying : kmod-25-3.amzn2.0.2.x86_64 24/94 Verifying : kernel-headers-4.14.327-246.539.amzn2.x86_64 25/94 Verifying : cmake-2.8.12.2-2.amzn2.0.2.x86_64 26/94 Verifying : 4:perl-libs-5.16.3-299.amzn2.0.2.x86_64 27/94 Verifying : perl-Getopt-Long-2.40-3.amzn2.noarch 28/94 Verifying : perl-Time-Local-1.2300-2.amzn2.noarch 29/94 Verifying : 1:dbus-1.10.24-7.amzn2.0.3.x86_64 30/94 Verifying : 2:shadow-utils-4.1.5.1-24.amzn2.0.3.x86_64 31/94 Verifying : binutils-2.29.1-31.amzn2.x86_64 32/94 Verifying : libsmartcols-2.30.2-2.amzn2.0.11.x86_64 33/94 Verifying : fipscheck-1.4.1-6.amzn2.0.2.x86_64 34/94 Verifying : pcre2-10.23-11.amzn2.0.1.x86_64 35/94 Verifying : libpwquality-1.2.3-5.amzn2.x86_64 36/94 Verifying : 7:device-mapper-libs-1.02.170-6.amzn2.5.x86_64 37/94 Verifying : cracklib-dicts-2.9.0-11.amzn2.0.2.x86_64 38/94 Verifying : perl-TermReadKey-2.30-20.amzn2.0.2.x86_64 39/94 Verifying : audit-libs-2.8.1-3.amzn2.1.x86_64 40/94 Verifying : perl-Pod-Perldoc-3.20-4.amzn2.0.1.noarch 41/94 Verifying : perl-Git-2.40.1-1.amzn2.0.1.noarch 42/94 Verifying : acl-2.2.51-14.amzn2.x86_64 43/94 Verifying : libsemanage-2.5-11.amzn2.x86_64 44/94 Verifying : 2:tar-1.26-35.amzn2.0.2.x86_64 45/94 Verifying : elfutils-libs-0.176-2.amzn2.0.2.x86_64 46/94 Verifying : openssh-7.4p1-22.amzn2.0.5.x86_64 47/94 Verifying : systemd-libs-219-78.amzn2.0.22.x86_64 48/94 Verifying : perl-File-Path-2.09-2.amzn2.noarch 49/94 Verifying : libcilkrts-7.3.1-17.amzn2.x86_64 50/94 Verifying : fipscheck-lib-1.4.1-6.amzn2.0.2.x86_64 51/94 Verifying : systemd-219-78.amzn2.0.22.x86_64 52/94 Verifying : lzo-2.06-8.amzn2.0.4.x86_64 53/94 Verifying : glibc-devel-2.26-63.amzn2.0.1.x86_64 54/94 Verifying : git-core-doc-2.40.1-1.amzn2.0.1.noarch 55/94 Verifying : 4:perl-5.16.3-299.amzn2.0.2.x86_64 56/94 Verifying : 1:dbus-libs-1.10.24-7.amzn2.0.3.x86_64 57/94 Verifying : perl-Carp-1.26-244.amzn2.noarch 58/94 Verifying : elfutils-default-yama-scope-0.176-2.amzn2.0.2.noarch 59/94 Verifying : perl-Scalar-List-Utils-1.27-248.amzn2.0.2.x86_64 60/94 Verifying : cpp-7.3.1-17.amzn2.x86_64 61/94 Verifying : mpfr-3.1.1-4.amzn2.0.2.x86_64 62/94 Verifying : util-linux-2.30.2-2.amzn2.0.11.x86_64 63/94 Verifying : pam-1.1.8-23.amzn2.0.1.x86_64 64/94 Verifying : perl-HTTP-Tiny-0.033-3.amzn2.0.1.noarch 65/94 Verifying : ustr-1.0.4-16.amzn2.0.3.x86_64 66/94 Verifying : less-458-9.amzn2.0.2.x86_64 67/94 Verifying : 1:perl-Error-0.17020-2.amzn2.noarch 68/94 Verifying : perl-Pod-Usage-1.63-3.amzn2.noarch 69/94 Verifying : gcc-7.3.1-17.amzn2.x86_64 70/94 Verifying : 1:perl-parent-0.225-244.amzn2.0.1.noarch 71/94 Verifying : perl-File-Temp-0.23.01-3.amzn2.noarch 72/94 Verifying : libmpx-7.3.1-17.amzn2.x86_64 73/94 Verifying : openssh-clients-7.4p1-22.amzn2.0.5.x86_64 74/94 Verifying : libarchive-3.1.2-14.amzn2.0.1.x86_64 75/94 Verifying : perl-Exporter-5.68-3.amzn2.noarch 76/94 Verifying : cracklib-2.9.0-11.amzn2.0.2.x86_64 77/94 Verifying : perl-Encode-2.51-7.amzn2.0.2.x86_64 78/94 Verifying : 7:device-mapper-1.02.170-6.amzn2.5.x86_64 79/94 Verifying : perl-threads-shared-1.43-6.amzn2.0.2.x86_64 80/94 Verifying : gzip-1.5-10.amzn2.0.1.x86_64 81/94 Verifying : libsanitizer-7.3.1-17.amzn2.x86_64 82/94 Verifying : perl-constant-1.27-2.amzn2.0.1.noarch 83/94 Verifying : kmod-libs-25-3.amzn2.0.2.x86_64 84/94 Verifying : glibc-headers-2.26-63.amzn2.0.1.x86_64 85/94 Verifying : libgomp-7.3.1-17.amzn2.x86_64 86/94 Verifying : perl-threads-1.87-4.amzn2.0.2.x86_64 87/94 Verifying : perl-podlators-2.5.1-3.amzn2.0.1.noarch 88/94 Verifying : libatomic-7.3.1-17.amzn2.x86_64 89/94 Verifying : 4:perl-Time-HiRes-1.9725-3.amzn2.0.2.x86_64 90/94 Verifying : perl-Socket-2.010-4.amzn2.0.2.x86_64 91/94 Verifying : 4:perl-macros-5.16.3-299.amzn2.0.2.x86_64 92/94 Verifying : groff-base-1.22.2-8.amzn2.0.2.x86_64 93/94 Verifying : perl-Text-ParseWords-3.29-4.amzn2.noarch 94/94 Installed: cmake.x86_64 0:2.8.12.2-2.amzn2.0.2 gcc-c++.x86_64 0:7.3.1-17.amzn2 git.x86_64 0:2.40.1-1.amzn2.0.1 python3.x86_64 0:3.7.16-1.amzn2.0.4 tar.x86_64 2:1.26-35.amzn2.0.2 Dependency Installed: acl.x86_64 0:2.2.51-14.amzn2 audit-libs.x86_64 0:2.8.1-3.amzn2.1 binutils.x86_64 0:2.29.1-31.amzn2 cpp.x86_64 0:7.3.1-17.amzn2 cracklib.x86_64 0:2.9.0-11.amzn2.0.2 cracklib-dicts.x86_64 0:2.9.0-11.amzn2.0.2 cryptsetup-libs.x86_64 0:1.7.4-4.amzn2 dbus.x86_64 1:1.10.24-7.amzn2.0.3 dbus-libs.x86_64 1:1.10.24-7.amzn2.0.3 device-mapper.x86_64 7:1.02.170-6.amzn2.5 device-mapper-libs.x86_64 7:1.02.170-6.amzn2.5 elfutils-default-yama-scope.noarch 0:0.176-2.amzn2.0.2 elfutils-libs.x86_64 0:0.176-2.amzn2.0.2 fipscheck.x86_64 0:1.4.1-6.amzn2.0.2 fipscheck-lib.x86_64 0:1.4.1-6.amzn2.0.2 gcc.x86_64 0:7.3.1-17.amzn2 git-core.x86_64 0:2.40.1-1.amzn2.0.1 git-core-doc.noarch 0:2.40.1-1.amzn2.0.1 glibc-devel.x86_64 0:2.26-63.amzn2.0.1 glibc-headers.x86_64 0:2.26-63.amzn2.0.1 groff-base.x86_64 0:1.22.2-8.amzn2.0.2 gzip.x86_64 0:1.5-10.amzn2.0.1 kernel-headers.x86_64 0:4.14.327-246.539.amzn2 kmod.x86_64 0:25-3.amzn2.0.2 kmod-libs.x86_64 0:25-3.amzn2.0.2 less.x86_64 0:458-9.amzn2.0.2 libarchive.x86_64 0:3.1.2-14.amzn2.0.1 libatomic.x86_64 0:7.3.1-17.amzn2 libcap-ng.x86_64 0:0.7.5-4.amzn2.0.4 libcilkrts.x86_64 0:7.3.1-17.amzn2 libedit.x86_64 0:3.0-12.20121213cvs.amzn2.0.2 libfdisk.x86_64 0:2.30.2-2.amzn2.0.11 libgomp.x86_64 0:7.3.1-17.amzn2 libitm.x86_64 0:7.3.1-17.amzn2 libmpc.x86_64 0:1.0.1-3.amzn2.0.2 libmpx.x86_64 0:7.3.1-17.amzn2 libpwquality.x86_64 0:1.2.3-5.amzn2 libquadmath.x86_64 0:7.3.1-17.amzn2 libsanitizer.x86_64 0:7.3.1-17.amzn2 libsemanage.x86_64 0:2.5-11.amzn2 libsmartcols.x86_64 0:2.30.2-2.amzn2.0.11 libtirpc.x86_64 0:0.2.4-0.16.amzn2 libutempter.x86_64 0:1.1.6-4.amzn2.0.2 lz4.x86_64 0:1.7.5-2.amzn2.0.1 lzo.x86_64 0:2.06-8.amzn2.0.4 mpfr.x86_64 0:3.1.1-4.amzn2.0.2 openssh.x86_64 0:7.4p1-22.amzn2.0.5 openssh-clients.x86_64 0:7.4p1-22.amzn2.0.5 pam.x86_64 0:1.1.8-23.amzn2.0.1 pcre2.x86_64 0:10.23-11.amzn2.0.1 perl.x86_64 4:5.16.3-299.amzn2.0.2 perl-Carp.noarch 0:1.26-244.amzn2 perl-Encode.x86_64 0:2.51-7.amzn2.0.2 perl-Error.noarch 1:0.17020-2.amzn2 perl-Exporter.noarch 0:5.68-3.amzn2 perl-File-Path.noarch 0:2.09-2.amzn2 perl-File-Temp.noarch 0:0.23.01-3.amzn2 perl-Filter.x86_64 0:1.49-3.amzn2.0.2 perl-Getopt-Long.noarch 0:2.40-3.amzn2 perl-Git.noarch 0:2.40.1-1.amzn2.0.1 perl-HTTP-Tiny.noarch 0:0.033-3.amzn2.0.1 perl-PathTools.x86_64 0:3.40-5.amzn2.0.2 perl-Pod-Escapes.noarch 1:1.04-299.amzn2.0.2 perl-Pod-Perldoc.noarch 0:3.20-4.amzn2.0.1 perl-Pod-Simple.noarch 1:3.28-4.amzn2 perl-Pod-Usage.noarch 0:1.63-3.amzn2 perl-Scalar-List-Utils.x86_64 0:1.27-248.amzn2.0.2 perl-Socket.x86_64 0:2.010-4.amzn2.0.2 perl-Storable.x86_64 0:2.45-3.amzn2.0.2 perl-TermReadKey.x86_64 0:2.30-20.amzn2.0.2 perl-Text-ParseWords.noarch 0:3.29-4.amzn2 perl-Time-HiRes.x86_64 4:1.9725-3.amzn2.0.2 perl-Time-Local.noarch 0:1.2300-2.amzn2 perl-constant.noarch 0:1.27-2.amzn2.0.1 perl-libs.x86_64 4:5.16.3-299.amzn2.0.2 perl-macros.x86_64 4:5.16.3-299.amzn2.0.2 perl-parent.noarch 1:0.225-244.amzn2.0.1 perl-podlators.noarch 0:2.5.1-3.amzn2.0.1 perl-threads.x86_64 0:1.87-4.amzn2.0.2 perl-threads-shared.x86_64 0:1.43-6.amzn2.0.2 python3-libs.x86_64 0:3.7.16-1.amzn2.0.4 python3-pip.noarch 0:20.2.2-1.amzn2.0.4 python3-setuptools.noarch 0:49.1.3-1.amzn2.0.3 qrencode-libs.x86_64 0:3.4.1-3.amzn2.0.2 shadow-utils.x86_64 2:4.1.5.1-24.amzn2.0.3 systemd.x86_64 0:219-78.amzn2.0.22 systemd-libs.x86_64 0:219-78.amzn2.0.22 ustr.x86_64 0:1.0.4-16.amzn2.0.3 util-linux.x86_64 0:2.30.2-2.amzn2.0.11 Complete! Loaded plugins: ovl Resolving Dependencies --> Running transaction check ---> Package autoconf.noarch 0:2.69-11.amzn2 will be installed --> Processing Dependency: m4 >= 1.4.14 for package: autoconf-2.69-11.amzn2.noarch --> Processing Dependency: perl(Data::Dumper) for package: autoconf-2.69-11.amzn2.noarch ---> Package automake.noarch 0:1.13.4-3.1.amzn2 will be installed --> Processing Dependency: perl(TAP::Parser) for package: automake-1.13.4-3.1.amzn2.noarch --> Processing Dependency: perl(Thread::Queue) for package: automake-1.13.4-3.1.amzn2.noarch ---> Package bison.x86_64 0:3.0.4-6.amzn2.0.2 will be installed ---> Package byacc.x86_64 0:1.9.20130304-3.amzn2.0.2 will be installed ---> Package cscope.x86_64 0:15.8-10.amzn2.0.2 will be installed --> Processing Dependency: emacs-filesystem for package: cscope-15.8-10.amzn2.0.2.x86_64 ---> Package ctags.x86_64 0:5.8-13.amzn2.0.2 will be installed ---> Package diffstat.x86_64 0:1.57-4.amzn2.0.2 will be installed ---> Package doxygen.x86_64 1:1.8.5-4.amzn2 will be installed ---> Package elfutils.x86_64 0:0.176-2.amzn2.0.2 will be installed ---> Package flex.x86_64 0:2.5.37-3.amzn2.0.3 will be installed ---> Package gcc-gfortran.x86_64 0:7.3.1-17.amzn2 will be installed --> Processing Dependency: libgfortran.so.4()(64bit) for package: gcc-gfortran-7.3.1-17.amzn2.x86_64 ---> Package gettext.x86_64 0:0.19.8.1-3.amzn2 will be installed --> Processing Dependency: gettext-libs(x86-64) = 0.19.8.1-3.amzn2 for package: gettext-0.19.8.1-3.amzn2.x86_64 --> Processing Dependency: libcroco-0.6.so.3()(64bit) for package: gettext-0.19.8.1-3.amzn2.x86_64 --> Processing Dependency: libgettextlib-0.19.8.1.so()(64bit) for package: gettext-0.19.8.1-3.amzn2.x86_64 --> Processing Dependency: libgettextsrc-0.19.8.1.so()(64bit) for package: gettext-0.19.8.1-3.amzn2.x86_64 ---> Package indent.x86_64 0:2.2.11-13.amzn2.0.2 will be installed ---> Package intltool.noarch 0:0.50.2-7.amzn2 will be installed --> Processing Dependency: gettext-devel for package: intltool-0.50.2-7.amzn2.noarch --> Processing Dependency: perl(XML::Parser) for package: intltool-0.50.2-7.amzn2.noarch ---> Package libtool.x86_64 0:2.4.2-22.2.amzn2.0.2 will be installed ---> Package make.x86_64 1:3.82-24.amzn2 will be installed ---> Package patch.x86_64 0:2.7.1-12.amzn2.0.2 will be installed ---> Package patchutils.x86_64 0:0.3.3-4.amzn2.0.1 will be installed ---> Package pkgconfig.x86_64 1:0.27.1-4.amzn2.0.2 will be installed ---> Package rcs.x86_64 0:5.9.0-5.amzn2.0.2 will be installed ---> Package rpm-build.x86_64 0:4.11.3-48.amzn2.0.3 will be installed --> Processing Dependency: /usr/bin/gdb-add-index for package: rpm-build-4.11.3-48.amzn2.0.3.x86_64 --> Processing Dependency: bzip2 for package: rpm-build-4.11.3-48.amzn2.0.3.x86_64 --> Processing Dependency: file for package: rpm-build-4.11.3-48.amzn2.0.3.x86_64 --> Processing Dependency: unzip for package: rpm-build-4.11.3-48.amzn2.0.3.x86_64 --> Processing Dependency: xz for package: rpm-build-4.11.3-48.amzn2.0.3.x86_64 ---> Package rpm-sign.x86_64 0:4.11.3-48.amzn2.0.3 will be installed ---> Package subversion.x86_64 0:1.7.14-16.amzn2.0.1 will be installed --> Processing Dependency: subversion-libs(x86-64) = 1.7.14-16.amzn2.0.1 for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: systemd-sysv for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libapr-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libaprutil-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libneon.so.27()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_client-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_delta-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_diff-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_fs-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_fs_base-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_fs_fs-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_fs_util-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_ra-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_ra_local-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_ra_neon-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_ra_svn-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_repos-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_subr-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_wc-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 ---> Package swig.x86_64 0:3.0.12-11.amzn2.0.3 will be installed ---> Package system-rpm-config.noarch 0:9.1.0-76.amzn2.0.14 will be installed --> Processing Dependency: dwz >= 0.4 for package: system-rpm-config-9.1.0-76.amzn2.0.14.noarch --> Processing Dependency: go-srpm-macros for package: system-rpm-config-9.1.0-76.amzn2.0.14.noarch --> Processing Dependency: perl-srpm-macros for package: system-rpm-config-9.1.0-76.amzn2.0.14.noarch --> Processing Dependency: zip for package: system-rpm-config-9.1.0-76.amzn2.0.14.noarch ---> Package systemtap.x86_64 0:4.5-1.amzn2.0.1 will be installed --> Processing Dependency: systemtap-client = 4.5-1.amzn2.0.1 for package: systemtap-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: systemtap-devel = 4.5-1.amzn2.0.1 for package: systemtap-4.5-1.amzn2.0.1.x86_64 --> Running transaction check ---> Package apr.x86_64 0:1.7.2-1.amzn2 will be installed ---> Package apr-util.x86_64 0:1.6.3-1.amzn2.0.1 will be installed --> Processing Dependency: apr-util-bdb(x86-64) = 1.6.3-1.amzn2.0.1 for package: apr-util-1.6.3-1.amzn2.0.1.x86_64 ---> Package bzip2.x86_64 0:1.0.6-13.amzn2.0.3 will be installed ---> Package dwz.x86_64 0:0.11-3.amzn2.0.3 will be installed ---> Package emacs-filesystem.noarch 1:27.2-4.amzn2.0.4 will be installed ---> Package file.x86_64 0:5.11-36.amzn2.0.1 will be installed ---> Package gdb.x86_64 0:8.0.1-36.amzn2.0.1 will be installed ---> Package gettext-devel.x86_64 0:0.19.8.1-3.amzn2 will be installed --> Processing Dependency: gettext-common-devel = 0.19.8.1-3.amzn2 for package: gettext-devel-0.19.8.1-3.amzn2.x86_64 ---> Package gettext-libs.x86_64 0:0.19.8.1-3.amzn2 will be installed ---> Package go-srpm-macros.noarch 0:3.0.15-23.amzn2.0.2 will be installed ---> Package libcroco.x86_64 0:0.6.12-6.amzn2 will be installed ---> Package libgfortran.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package m4.x86_64 0:1.4.16-10.amzn2.0.2 will be installed ---> Package neon.x86_64 0:0.30.0-3.amzn2.0.2 will be installed --> Processing Dependency: libgnutls.so.28(GNUTLS_1_4)(64bit) for package: neon-0.30.0-3.amzn2.0.2.x86_64 --> Processing Dependency: libgnutls.so.28(GNUTLS_2_12)(64bit) for package: neon-0.30.0-3.amzn2.0.2.x86_64 --> Processing Dependency: libgnutls.so.28()(64bit) for package: neon-0.30.0-3.amzn2.0.2.x86_64 --> Processing Dependency: libpakchois.so.0()(64bit) for package: neon-0.30.0-3.amzn2.0.2.x86_64 --> Processing Dependency: libproxy.so.1()(64bit) for package: neon-0.30.0-3.amzn2.0.2.x86_64 ---> Package perl-Data-Dumper.x86_64 0:2.145-3.amzn2.0.2 will be installed ---> Package perl-Test-Harness.noarch 0:3.28-3.amzn2 will be installed ---> Package perl-Thread-Queue.noarch 0:3.02-2.amzn2 will be installed ---> Package perl-XML-Parser.x86_64 0:2.41-10.amzn2.0.2 will be installed ---> Package perl-srpm-macros.noarch 0:1-8.amzn2.0.1 will be installed ---> Package subversion-libs.x86_64 0:1.7.14-16.amzn2.0.1 will be installed ---> Package systemd-sysv.x86_64 0:219-78.amzn2.0.22 will be installed ---> Package systemtap-client.x86_64 0:4.5-1.amzn2.0.1 will be installed --> Processing Dependency: systemtap-runtime = 4.5-1.amzn2.0.1 for package: systemtap-client-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: mokutil for package: systemtap-client-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: libavahi-client.so.3()(64bit) for package: systemtap-client-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: libavahi-common.so.3()(64bit) for package: systemtap-client-4.5-1.amzn2.0.1.x86_64 ---> Package systemtap-devel.x86_64 0:4.5-1.amzn2.0.1 will be installed --> Processing Dependency: kernel-devel-uname-r for package: systemtap-devel-4.5-1.amzn2.0.1.x86_64 ---> Package unzip.x86_64 0:6.0-57.amzn2.0.1 will be installed ---> Package xz.x86_64 0:5.2.2-1.amzn2.0.3 will be installed ---> Package zip.x86_64 0:3.0-11.amzn2.0.2 will be installed --> Running transaction check ---> Package apr-util-bdb.x86_64 0:1.6.3-1.amzn2.0.1 will be installed ---> Package avahi-libs.x86_64 0:0.6.31-20.amzn2.0.2 will be installed ---> Package gettext-common-devel.noarch 0:0.19.8.1-3.amzn2 will be installed ---> Package gnutls.x86_64 0:3.3.29-9.amzn2.0.1 will be installed --> Processing Dependency: trousers >= 0.3.11.2 for package: gnutls-3.3.29-9.amzn2.0.1.x86_64 --> Processing Dependency: libhogweed.so.2()(64bit) for package: gnutls-3.3.29-9.amzn2.0.1.x86_64 --> Processing Dependency: libnettle.so.4()(64bit) for package: gnutls-3.3.29-9.amzn2.0.1.x86_64 ---> Package kernel-devel.x86_64 0:4.14.327-246.539.amzn2 will be installed --> Processing Dependency: /usr/sbin/hardlink for package: kernel-devel-4.14.327-246.539.amzn2.x86_64 --> Processing Dependency: elfutils-libelf-devel for package: kernel-devel-4.14.327-246.539.amzn2.x86_64 ---> Package libproxy.x86_64 0:0.4.11-10.amzn2.0.3 will be installed --> Processing Dependency: libmodman.so.1()(64bit) for package: libproxy-0.4.11-10.amzn2.0.3.x86_64 ---> Package mokutil.x86_64 1:0.3.0-10.amzn2.0.1 will be installed --> Processing Dependency: libefivar.so.1(LIBEFIVAR_0.24)(64bit) for package: 1:mokutil-0.3.0-10.amzn2.0.1.x86_64 --> Processing Dependency: libefivar.so.1(libefivar.so.0)(64bit) for package: 1:mokutil-0.3.0-10.amzn2.0.1.x86_64 --> Processing Dependency: libefivar.so.1()(64bit) for package: 1:mokutil-0.3.0-10.amzn2.0.1.x86_64 ---> Package pakchois.x86_64 0:0.4-10.amzn2.0.2 will be installed ---> Package systemtap-runtime.x86_64 0:4.5-1.amzn2.0.1 will be installed --> Processing Dependency: libboost_system.so.1.53.0()(64bit) for package: systemtap-runtime-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: libdyninstAPI.so.9.3()(64bit) for package: systemtap-runtime-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: libjson-c.so.2()(64bit) for package: systemtap-runtime-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: libsymtabAPI.so.9.3()(64bit) for package: systemtap-runtime-4.5-1.amzn2.0.1.x86_64 --> Running transaction check ---> Package boost-system.x86_64 0:1.53.0-27.amzn2.0.5 will be installed ---> Package dyninst.x86_64 0:9.3.1-3.amzn2 will be installed --> Processing Dependency: libboost_date_time-mt.so.1.53.0()(64bit) for package: dyninst-9.3.1-3.amzn2.x86_64 --> Processing Dependency: libboost_thread-mt.so.1.53.0()(64bit) for package: dyninst-9.3.1-3.amzn2.x86_64 --> Processing Dependency: libdwarf.so.0()(64bit) for package: dyninst-9.3.1-3.amzn2.x86_64 ---> Package efivar-libs.x86_64 0:31-4.amzn2.0.4 will be installed ---> Package elfutils-libelf-devel.x86_64 0:0.176-2.amzn2.0.2 will be installed --> Processing Dependency: pkgconfig(zlib) for package: elfutils-libelf-devel-0.176-2.amzn2.0.2.x86_64 ---> Package hardlink.x86_64 1:1.3-3.amzn2 will be installed ---> Package json-c.x86_64 0:0.11-4.amzn2.0.4 will be installed ---> Package libmodman.x86_64 0:2.0.1-8.amzn2.0.2 will be installed ---> Package nettle.x86_64 0:2.7.1-9.amzn2 will be installed ---> Package trousers.x86_64 0:0.3.14-2.amzn2.0.2 will be installed --> Running transaction check ---> Package boost-date-time.x86_64 0:1.53.0-27.amzn2.0.5 will be installed ---> Package boost-thread.x86_64 0:1.53.0-27.amzn2.0.5 will be installed ---> Package libdwarf.x86_64 0:20130207-4.amzn2.0.2 will be installed ---> Package zlib-devel.x86_64 0:1.2.7-19.amzn2.0.3 will be installed --> Processing Dependency: zlib = 1.2.7-19.amzn2.0.3 for package: zlib-devel-1.2.7-19.amzn2.0.3.x86_64 --> Running transaction check ---> Package zlib.x86_64 0:1.2.7-19.amzn2.0.2 will be updated ---> Package zlib.x86_64 0:1.2.7-19.amzn2.0.3 will be an update --> Finished Dependency Resolution Dependencies Resolved ================================================================================ Package Arch Version Repository Size ================================================================================ Installing for group install "Development Tools": autoconf noarch 2.69-11.amzn2 amzn2-core 701 k automake noarch 1.13.4-3.1.amzn2 amzn2-core 679 k bison x86_64 3.0.4-6.amzn2.0.2 amzn2-core 674 k byacc x86_64 1.9.20130304-3.amzn2.0.2 amzn2-core 66 k cscope x86_64 15.8-10.amzn2.0.2 amzn2-core 204 k ctags x86_64 5.8-13.amzn2.0.2 amzn2-core 157 k diffstat x86_64 1.57-4.amzn2.0.2 amzn2-core 35 k doxygen x86_64 1:1.8.5-4.amzn2 amzn2-core 3.5 M elfutils x86_64 0.176-2.amzn2.0.2 amzn2-core 303 k flex x86_64 2.5.37-3.amzn2.0.3 amzn2-core 291 k gcc-gfortran x86_64 7.3.1-17.amzn2 amzn2-core 11 M gettext x86_64 0.19.8.1-3.amzn2 amzn2-core 1.0 M indent x86_64 2.2.11-13.amzn2.0.2 amzn2-core 150 k intltool noarch 0.50.2-7.amzn2 amzn2-core 59 k libtool x86_64 2.4.2-22.2.amzn2.0.2 amzn2-core 588 k make x86_64 1:3.82-24.amzn2 amzn2-core 420 k patch x86_64 2.7.1-12.amzn2.0.2 amzn2-core 110 k patchutils x86_64 0.3.3-4.amzn2.0.1 amzn2-core 104 k pkgconfig x86_64 1:0.27.1-4.amzn2.0.2 amzn2-core 54 k rcs x86_64 5.9.0-5.amzn2.0.2 amzn2-core 231 k rpm-build x86_64 4.11.3-48.amzn2.0.3 amzn2-core 150 k rpm-sign x86_64 4.11.3-48.amzn2.0.3 amzn2-core 50 k subversion x86_64 1.7.14-16.amzn2.0.1 amzn2-core 1.0 M swig x86_64 3.0.12-11.amzn2.0.3 amzn2-core 1.4 M system-rpm-config noarch 9.1.0-76.amzn2.0.14 amzn2-core 90 k systemtap x86_64 4.5-1.amzn2.0.1 amzn2-core 12 k Installing for dependencies: apr x86_64 1.7.2-1.amzn2 amzn2-core 130 k apr-util x86_64 1.6.3-1.amzn2.0.1 amzn2-core 101 k apr-util-bdb x86_64 1.6.3-1.amzn2.0.1 amzn2-core 22 k avahi-libs x86_64 0.6.31-20.amzn2.0.2 amzn2-core 61 k boost-date-time x86_64 1.53.0-27.amzn2.0.5 amzn2-core 52 k boost-system x86_64 1.53.0-27.amzn2.0.5 amzn2-core 40 k boost-thread x86_64 1.53.0-27.amzn2.0.5 amzn2-core 73 k bzip2 x86_64 1.0.6-13.amzn2.0.3 amzn2-core 52 k dwz x86_64 0.11-3.amzn2.0.3 amzn2-core 98 k dyninst x86_64 9.3.1-3.amzn2 amzn2-core 3.5 M efivar-libs x86_64 31-4.amzn2.0.4 amzn2-core 68 k elfutils-libelf-devel x86_64 0.176-2.amzn2.0.2 amzn2-core 40 k emacs-filesystem noarch 1:27.2-4.amzn2.0.4 amzn2-core 68 k file x86_64 5.11-36.amzn2.0.1 amzn2-core 57 k gdb x86_64 8.0.1-36.amzn2.0.1 amzn2-core 3.1 M gettext-common-devel noarch 0.19.8.1-3.amzn2 amzn2-core 410 k gettext-devel x86_64 0.19.8.1-3.amzn2 amzn2-core 320 k gettext-libs x86_64 0.19.8.1-3.amzn2 amzn2-core 500 k gnutls x86_64 3.3.29-9.amzn2.0.1 amzn2-core 661 k go-srpm-macros noarch 3.0.15-23.amzn2.0.2 amzn2-core 23 k hardlink x86_64 1:1.3-3.amzn2 amzn2-core 23 k json-c x86_64 0.11-4.amzn2.0.4 amzn2-core 30 k kernel-devel x86_64 4.14.327-246.539.amzn2 amzn2-core 13 M libcroco x86_64 0.6.12-6.amzn2 amzn2-core 103 k libdwarf x86_64 20130207-4.amzn2.0.2 amzn2-core 111 k libgfortran x86_64 7.3.1-17.amzn2 amzn2-core 536 k libmodman x86_64 2.0.1-8.amzn2.0.2 amzn2-core 29 k libproxy x86_64 0.4.11-10.amzn2.0.3 amzn2-core 61 k m4 x86_64 1.4.16-10.amzn2.0.2 amzn2-core 256 k mokutil x86_64 1:0.3.0-10.amzn2.0.1 amzn2-core 39 k neon x86_64 0.30.0-3.amzn2.0.2 amzn2-core 166 k nettle x86_64 2.7.1-9.amzn2 amzn2-core 327 k pakchois x86_64 0.4-10.amzn2.0.2 amzn2-core 14 k perl-Data-Dumper x86_64 2.145-3.amzn2.0.2 amzn2-core 48 k perl-Test-Harness noarch 3.28-3.amzn2 amzn2-core 302 k perl-Thread-Queue noarch 3.02-2.amzn2 amzn2-core 17 k perl-XML-Parser x86_64 2.41-10.amzn2.0.2 amzn2-core 223 k perl-srpm-macros noarch 1-8.amzn2.0.1 amzn2-core 4.7 k subversion-libs x86_64 1.7.14-16.amzn2.0.1 amzn2-core 912 k systemd-sysv x86_64 219-78.amzn2.0.22 amzn2-core 98 k systemtap-client x86_64 4.5-1.amzn2.0.1 amzn2-core 3.7 M systemtap-devel x86_64 4.5-1.amzn2.0.1 amzn2-core 2.3 M systemtap-runtime x86_64 4.5-1.amzn2.0.1 amzn2-core 475 k trousers x86_64 0.3.14-2.amzn2.0.2 amzn2-core 294 k unzip x86_64 6.0-57.amzn2.0.1 amzn2-core 182 k xz x86_64 5.2.2-1.amzn2.0.3 amzn2-core 228 k zip x86_64 3.0-11.amzn2.0.2 amzn2-core 263 k zlib-devel x86_64 1.2.7-19.amzn2.0.3 amzn2-core 51 k Updating for dependencies: zlib x86_64 1.2.7-19.amzn2.0.3 amzn2-core 90 k Transaction Summary ================================================================================ Install 26 Packages (+48 Dependent packages) Upgrade ( 1 Dependent package) Total download size: 55 M Downloading packages: Delta RPMs disabled because /usr/bin/applydeltarpm not installed. -------------------------------------------------------------------------------- Total 11 MB/s | 55 MB 00:05 Running transaction check Running transaction test Transaction test succeeded Running transaction Updating : zlib-1.2.7-19.amzn2.0.3.x86_64 1/76 Installing : m4-1.4.16-10.amzn2.0.2.x86_64 2/76 Installing : 1:pkgconfig-0.27.1-4.amzn2.0.2.x86_64 3/76 Installing : boost-system-1.53.0-27.amzn2.0.5.x86_64 4/76 Installing : apr-1.7.2-1.amzn2.x86_64 5/76 Installing : apr-util-bdb-1.6.3-1.amzn2.0.1.x86_64 6/76 Installing : apr-util-1.6.3-1.amzn2.0.1.x86_64 7/76 Installing : zip-3.0-11.amzn2.0.2.x86_64 8/76 Installing : avahi-libs-0.6.31-20.amzn2.0.2.x86_64 9/76 Installing : xz-5.2.2-1.amzn2.0.3.x86_64 10/76 Installing : unzip-6.0-57.amzn2.0.1.x86_64 11/76 Installing : libcroco-0.6.12-6.amzn2.x86_64 12/76 Installing : gettext-libs-0.19.8.1-3.amzn2.x86_64 13/76 Installing : patch-2.7.1-12.amzn2.0.2.x86_64 14/76 Installing : perl-Thread-Queue-3.02-2.amzn2.noarch 15/76 Installing : gettext-0.19.8.1-3.amzn2.x86_64 16/76 Installing : boost-thread-1.53.0-27.amzn2.0.5.x86_64 17/76 Installing : zlib-devel-1.2.7-19.amzn2.0.3.x86_64 18/76 Installing : elfutils-libelf-devel-0.176-2.amzn2.0.2.x86_64 19/76 Installing : gdb-8.0.1-36.amzn2.0.1.x86_64 20/76 Installing : file-5.11-36.amzn2.0.1.x86_64 21/76 Installing : libmodman-2.0.1-8.amzn2.0.2.x86_64 22/76 Installing : libproxy-0.4.11-10.amzn2.0.3.x86_64 23/76 Installing : perl-XML-Parser-2.41-10.amzn2.0.2.x86_64 24/76 Installing : bzip2-1.0.6-13.amzn2.0.3.x86_64 25/76 Installing : gettext-common-devel-0.19.8.1-3.amzn2.noarch 26/76 Installing : gettext-devel-0.19.8.1-3.amzn2.x86_64 27/76 Installing : dwz-0.11-3.amzn2.0.3.x86_64 28/76 Installing : systemd-sysv-219-78.amzn2.0.22.x86_64 29/76 Installing : 1:make-3.82-24.amzn2.x86_64 30/76 Installing : elfutils-0.176-2.amzn2.0.2.x86_64 31/76 Installing : 1:emacs-filesystem-27.2-4.amzn2.0.4.noarch 32/76 Installing : efivar-libs-31-4.amzn2.0.4.x86_64 33/76 Installing : 1:mokutil-0.3.0-10.amzn2.0.1.x86_64 34/76 Installing : perl-srpm-macros-1-8.amzn2.0.1.noarch 35/76 Installing : go-srpm-macros-3.0.15-23.amzn2.0.2.noarch 36/76 Installing : system-rpm-config-9.1.0-76.amzn2.0.14.noarch 37/76 Installing : perl-Data-Dumper-2.145-3.amzn2.0.2.x86_64 38/76 Installing : autoconf-2.69-11.amzn2.noarch 39/76 Installing : trousers-0.3.14-2.amzn2.0.2.x86_64 40/76 Installing : json-c-0.11-4.amzn2.0.4.x86_64 41/76 Installing : perl-Test-Harness-3.28-3.amzn2.noarch 42/76 Installing : automake-1.13.4-3.1.amzn2.noarch 43/76 Installing : libgfortran-7.3.1-17.amzn2.x86_64 44/76 Installing : libdwarf-20130207-4.amzn2.0.2.x86_64 45/76 Installing : pakchois-0.4-10.amzn2.0.2.x86_64 46/76 Installing : nettle-2.7.1-9.amzn2.x86_64 47/76 Installing : gnutls-3.3.29-9.amzn2.0.1.x86_64 48/76 Installing : neon-0.30.0-3.amzn2.0.2.x86_64 49/76 Installing : subversion-libs-1.7.14-16.amzn2.0.1.x86_64 50/76 Installing : 1:hardlink-1.3-3.amzn2.x86_64 51/76 Installing : kernel-devel-4.14.327-246.539.amzn2.x86_64 52/76 Installing : systemtap-devel-4.5-1.amzn2.0.1.x86_64 53/76 Installing : boost-date-time-1.53.0-27.amzn2.0.5.x86_64 54/76 Installing : dyninst-9.3.1-3.amzn2.x86_64 55/76 Installing : systemtap-runtime-4.5-1.amzn2.0.1.x86_64 56/76 Installing : systemtap-client-4.5-1.amzn2.0.1.x86_64 57/76 Installing : systemtap-4.5-1.amzn2.0.1.x86_64 58/76 Installing : subversion-1.7.14-16.amzn2.0.1.x86_64 59/76 Installing : gcc-gfortran-7.3.1-17.amzn2.x86_64 60/76 Installing : intltool-0.50.2-7.amzn2.noarch 61/76 Installing : libtool-2.4.2-22.2.amzn2.0.2.x86_64 62/76 Installing : rpm-build-4.11.3-48.amzn2.0.3.x86_64 63/76 Installing : cscope-15.8-10.amzn2.0.2.x86_64 64/76 Installing : flex-2.5.37-3.amzn2.0.3.x86_64 65/76 Installing : bison-3.0.4-6.amzn2.0.2.x86_64 66/76 Installing : rpm-sign-4.11.3-48.amzn2.0.3.x86_64 67/76 Installing : patchutils-0.3.3-4.amzn2.0.1.x86_64 68/76 Installing : rcs-5.9.0-5.amzn2.0.2.x86_64 69/76 Installing : indent-2.2.11-13.amzn2.0.2.x86_64 70/76 Installing : 1:doxygen-1.8.5-4.amzn2.x86_64 71/76 Installing : diffstat-1.57-4.amzn2.0.2.x86_64 72/76 Installing : byacc-1.9.20130304-3.amzn2.0.2.x86_64 73/76 Installing : swig-3.0.12-11.amzn2.0.3.x86_64 74/76 Installing : ctags-5.8-13.amzn2.0.2.x86_64 75/76 Cleanup : zlib-1.2.7-19.amzn2.0.2.x86_64 76/76 Verifying : zlib-1.2.7-19.amzn2.0.3.x86_64 1/76 Verifying : perl-Thread-Queue-3.02-2.amzn2.noarch 2/76 Verifying : gettext-devel-0.19.8.1-3.amzn2.x86_64 3/76 Verifying : patch-2.7.1-12.amzn2.0.2.x86_64 4/76 Verifying : boost-date-time-1.53.0-27.amzn2.0.5.x86_64 5/76 Verifying : flex-2.5.37-3.amzn2.0.3.x86_64 6/76 Verifying : apr-1.7.2-1.amzn2.x86_64 7/76 Verifying : 1:hardlink-1.3-3.amzn2.x86_64 8/76 Verifying : nettle-2.7.1-9.amzn2.x86_64 9/76 Verifying : gcc-gfortran-7.3.1-17.amzn2.x86_64 10/76 Verifying : ctags-5.8-13.amzn2.0.2.x86_64 11/76 Verifying : swig-3.0.12-11.amzn2.0.3.x86_64 12/76 Verifying : byacc-1.9.20130304-3.amzn2.0.2.x86_64 13/76 Verifying : libcroco-0.6.12-6.amzn2.x86_64 14/76 Verifying : pakchois-0.4-10.amzn2.0.2.x86_64 15/76 Verifying : libdwarf-20130207-4.amzn2.0.2.x86_64 16/76 Verifying : kernel-devel-4.14.327-246.539.amzn2.x86_64 17/76 Verifying : dyninst-9.3.1-3.amzn2.x86_64 18/76 Verifying : gettext-libs-0.19.8.1-3.amzn2.x86_64 19/76 Verifying : cscope-15.8-10.amzn2.0.2.x86_64 20/76 Verifying : unzip-6.0-57.amzn2.0.1.x86_64 21/76 Verifying : diffstat-1.57-4.amzn2.0.2.x86_64 22/76 Verifying : 1:doxygen-1.8.5-4.amzn2.x86_64 23/76 Verifying : 1:mokutil-0.3.0-10.amzn2.0.1.x86_64 24/76 Verifying : system-rpm-config-9.1.0-76.amzn2.0.14.noarch 25/76 Verifying : systemtap-devel-4.5-1.amzn2.0.1.x86_64 26/76 Verifying : libgfortran-7.3.1-17.amzn2.x86_64 27/76 Verifying : gettext-0.19.8.1-3.amzn2.x86_64 28/76 Verifying : perl-Test-Harness-3.28-3.amzn2.noarch 29/76 Verifying : autoconf-2.69-11.amzn2.noarch 30/76 Verifying : intltool-0.50.2-7.amzn2.noarch 31/76 Verifying : zlib-devel-1.2.7-19.amzn2.0.3.x86_64 32/76 Verifying : apr-util-1.6.3-1.amzn2.0.1.x86_64 33/76 Verifying : libproxy-0.4.11-10.amzn2.0.3.x86_64 34/76 Verifying : boost-system-1.53.0-27.amzn2.0.5.x86_64 35/76 Verifying : json-c-0.11-4.amzn2.0.4.x86_64 36/76 Verifying : trousers-0.3.14-2.amzn2.0.2.x86_64 37/76 Verifying : xz-5.2.2-1.amzn2.0.3.x86_64 38/76 Verifying : perl-Data-Dumper-2.145-3.amzn2.0.2.x86_64 39/76 Verifying : perl-srpm-macros-1-8.amzn2.0.1.noarch 40/76 Verifying : gnutls-3.3.29-9.amzn2.0.1.x86_64 41/76 Verifying : subversion-libs-1.7.14-16.amzn2.0.1.x86_64 42/76 Verifying : automake-1.13.4-3.1.amzn2.noarch 43/76 Verifying : rpm-sign-4.11.3-48.amzn2.0.3.x86_64 44/76 Verifying : bison-3.0.4-6.amzn2.0.2.x86_64 45/76 Verifying : efivar-libs-31-4.amzn2.0.4.x86_64 46/76 Verifying : 1:pkgconfig-0.27.1-4.amzn2.0.2.x86_64 47/76 Verifying : 1:emacs-filesystem-27.2-4.amzn2.0.4.noarch 48/76 Verifying : gdb-8.0.1-36.amzn2.0.1.x86_64 49/76 Verifying : elfutils-0.176-2.amzn2.0.2.x86_64 50/76 Verifying : go-srpm-macros-3.0.15-23.amzn2.0.2.noarch 51/76 Verifying : libtool-2.4.2-22.2.amzn2.0.2.x86_64 52/76 Verifying : indent-2.2.11-13.amzn2.0.2.x86_64 53/76 Verifying : subversion-1.7.14-16.amzn2.0.1.x86_64 54/76 Verifying : 1:make-3.82-24.amzn2.x86_64 55/76 Verifying : avahi-libs-0.6.31-20.amzn2.0.2.x86_64 56/76 Verifying : systemd-sysv-219-78.amzn2.0.22.x86_64 57/76 Verifying : apr-util-bdb-1.6.3-1.amzn2.0.1.x86_64 58/76 Verifying : neon-0.30.0-3.amzn2.0.2.x86_64 59/76 Verifying : systemtap-4.5-1.amzn2.0.1.x86_64 60/76 Verifying : dwz-0.11-3.amzn2.0.3.x86_64 61/76 Verifying : gettext-common-devel-0.19.8.1-3.amzn2.noarch 62/76 Verifying : systemtap-client-4.5-1.amzn2.0.1.x86_64 63/76 Verifying : zip-3.0-11.amzn2.0.2.x86_64 64/76 Verifying : bzip2-1.0.6-13.amzn2.0.3.x86_64 65/76 Verifying : rcs-5.9.0-5.amzn2.0.2.x86_64 66/76 Verifying : boost-thread-1.53.0-27.amzn2.0.5.x86_64 67/76 Verifying : file-5.11-36.amzn2.0.1.x86_64 68/76 Verifying : rpm-build-4.11.3-48.amzn2.0.3.x86_64 69/76 Verifying : patchutils-0.3.3-4.amzn2.0.1.x86_64 70/76 Verifying : systemtap-runtime-4.5-1.amzn2.0.1.x86_64 71/76 Verifying : elfutils-libelf-devel-0.176-2.amzn2.0.2.x86_64 72/76 Verifying : m4-1.4.16-10.amzn2.0.2.x86_64 73/76 Verifying : perl-XML-Parser-2.41-10.amzn2.0.2.x86_64 74/76 Verifying : libmodman-2.0.1-8.amzn2.0.2.x86_64 75/76 Verifying : zlib-1.2.7-19.amzn2.0.2.x86_64 76/76 Installed: autoconf.noarch 0:2.69-11.amzn2 automake.noarch 0:1.13.4-3.1.amzn2 bison.x86_64 0:3.0.4-6.amzn2.0.2 byacc.x86_64 0:1.9.20130304-3.amzn2.0.2 cscope.x86_64 0:15.8-10.amzn2.0.2 ctags.x86_64 0:5.8-13.amzn2.0.2 diffstat.x86_64 0:1.57-4.amzn2.0.2 doxygen.x86_64 1:1.8.5-4.amzn2 elfutils.x86_64 0:0.176-2.amzn2.0.2 flex.x86_64 0:2.5.37-3.amzn2.0.3 gcc-gfortran.x86_64 0:7.3.1-17.amzn2 gettext.x86_64 0:0.19.8.1-3.amzn2 indent.x86_64 0:2.2.11-13.amzn2.0.2 intltool.noarch 0:0.50.2-7.amzn2 libtool.x86_64 0:2.4.2-22.2.amzn2.0.2 make.x86_64 1:3.82-24.amzn2 patch.x86_64 0:2.7.1-12.amzn2.0.2 patchutils.x86_64 0:0.3.3-4.amzn2.0.1 pkgconfig.x86_64 1:0.27.1-4.amzn2.0.2 rcs.x86_64 0:5.9.0-5.amzn2.0.2 rpm-build.x86_64 0:4.11.3-48.amzn2.0.3 rpm-sign.x86_64 0:4.11.3-48.amzn2.0.3 subversion.x86_64 0:1.7.14-16.amzn2.0.1 swig.x86_64 0:3.0.12-11.amzn2.0.3 system-rpm-config.noarch 0:9.1.0-76.amzn2.0.14 systemtap.x86_64 0:4.5-1.amzn2.0.1 Dependency Installed: apr.x86_64 0:1.7.2-1.amzn2 apr-util.x86_64 0:1.6.3-1.amzn2.0.1 apr-util-bdb.x86_64 0:1.6.3-1.amzn2.0.1 avahi-libs.x86_64 0:0.6.31-20.amzn2.0.2 boost-date-time.x86_64 0:1.53.0-27.amzn2.0.5 boost-system.x86_64 0:1.53.0-27.amzn2.0.5 boost-thread.x86_64 0:1.53.0-27.amzn2.0.5 bzip2.x86_64 0:1.0.6-13.amzn2.0.3 dwz.x86_64 0:0.11-3.amzn2.0.3 dyninst.x86_64 0:9.3.1-3.amzn2 efivar-libs.x86_64 0:31-4.amzn2.0.4 elfutils-libelf-devel.x86_64 0:0.176-2.amzn2.0.2 emacs-filesystem.noarch 1:27.2-4.amzn2.0.4 file.x86_64 0:5.11-36.amzn2.0.1 gdb.x86_64 0:8.0.1-36.amzn2.0.1 gettext-common-devel.noarch 0:0.19.8.1-3.amzn2 gettext-devel.x86_64 0:0.19.8.1-3.amzn2 gettext-libs.x86_64 0:0.19.8.1-3.amzn2 gnutls.x86_64 0:3.3.29-9.amzn2.0.1 go-srpm-macros.noarch 0:3.0.15-23.amzn2.0.2 hardlink.x86_64 1:1.3-3.amzn2 json-c.x86_64 0:0.11-4.amzn2.0.4 kernel-devel.x86_64 0:4.14.327-246.539.amzn2 libcroco.x86_64 0:0.6.12-6.amzn2 libdwarf.x86_64 0:20130207-4.amzn2.0.2 libgfortran.x86_64 0:7.3.1-17.amzn2 libmodman.x86_64 0:2.0.1-8.amzn2.0.2 libproxy.x86_64 0:0.4.11-10.amzn2.0.3 m4.x86_64 0:1.4.16-10.amzn2.0.2 mokutil.x86_64 1:0.3.0-10.amzn2.0.1 neon.x86_64 0:0.30.0-3.amzn2.0.2 nettle.x86_64 0:2.7.1-9.amzn2 pakchois.x86_64 0:0.4-10.amzn2.0.2 perl-Data-Dumper.x86_64 0:2.145-3.amzn2.0.2 perl-Test-Harness.noarch 0:3.28-3.amzn2 perl-Thread-Queue.noarch 0:3.02-2.amzn2 perl-XML-Parser.x86_64 0:2.41-10.amzn2.0.2 perl-srpm-macros.noarch 0:1-8.amzn2.0.1 subversion-libs.x86_64 0:1.7.14-16.amzn2.0.1 systemd-sysv.x86_64 0:219-78.amzn2.0.22 systemtap-client.x86_64 0:4.5-1.amzn2.0.1 systemtap-devel.x86_64 0:4.5-1.amzn2.0.1 systemtap-runtime.x86_64 0:4.5-1.amzn2.0.1 trousers.x86_64 0:0.3.14-2.amzn2.0.2 unzip.x86_64 0:6.0-57.amzn2.0.1 xz.x86_64 0:5.2.2-1.amzn2.0.3 zip.x86_64 0:3.0-11.amzn2.0.2 zlib-devel.x86_64 0:1.2.7-19.amzn2.0.3 Dependency Updated: zlib.x86_64 0:1.2.7-19.amzn2.0.3 Complete!% ```
jlarmstrongiv commented 1 year ago

@ashvardanian

unfortunately, I am unable to to use a different environment.

amazonlinux:2023 will be released hopefully before the end of the year 😂 but until then I’m stuck

I also received an error with the other flag SIMSIMD_TARGET_X86_AVX512=0

Error logs ``` Command failed with exit code 1: docker run --entrypoint /bin/bash -v /var/folders/zf/2l3hc6vn12v7r89t45mhxzhm0000gn/T/018bb149-923d-7233-8b5f-29ec475a5641:/var/task -e SHARP_IGNORE_GLOBAL_LIBVIPS=1 -e SIMSIMD_TARGET_X86_AVX512=0 --rm public.ecr.aws/lambda/nodejs:18-x86_64 -c npm install -g npm@10.2.3 && yum install tar git python3 cmake gcc-c++ -y && yum groupinstall "Development Tools" -y && npm install --build-from-source usearch@2.8.6 There is no installed groups file. Maybe run: yum groups mark convert (see man yum) npm ERR! code 1 npm ERR! path /var/task/node_modules/usearch npm ERR! command failed npm ERR! command sh -c node-gyp rebuild npm ERR! make: Entering directory `/var/task/node_modules/usearch/build' npm ERR! CC(target) Release/obj.target/nothing/../node-addon-api/nothing.o npm ERR! rm -f Release/obj.target/../node-addon-api/nothing.a Release/obj.target/../node-addon-api/nothing.a.ar-file-list; mkdir -p `dirname Release/obj.target/../node-addon-api/nothing.a` npm ERR! ar crs Release/obj.target/../node-addon-api/nothing.a @Release/obj.target/../node-addon-api/nothing.a.ar-file-list npm ERR! COPY Release/nothing.a npm ERR! CXX(target) Release/obj.target/usearch/javascript/lib.o npm ERR! make: Leaving directory `/var/task/node_modules/usearch/build' npm ERR! gyp info it worked if it ends with ok npm ERR! gyp info using node-gyp@10.0.1 npm ERR! gyp info using node@18.18.2 | linux | x64 npm ERR! gyp info find Python using Python version 3.7.16 found at "/usr/bin/python3" npm ERR! gyp http GET https://nodejs.org/download/release/v18.18.2/node-v18.18.2-headers.tar.gz npm ERR! gyp http 200 https://nodejs.org/download/release/v18.18.2/node-v18.18.2-headers.tar.gz npm ERR! gyp http GET https://nodejs.org/download/release/v18.18.2/SHASUMS256.txt npm ERR! gyp http 200 https://nodejs.org/download/release/v18.18.2/SHASUMS256.txt npm ERR! gyp info spawn /usr/bin/python3 npm ERR! gyp info spawn args [ npm ERR! gyp info spawn args '/var/lang/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py', npm ERR! gyp info spawn args 'binding.gyp', npm ERR! gyp info spawn args '-f', npm ERR! gyp info spawn args 'make', npm ERR! gyp info spawn args '-I', npm ERR! gyp info spawn args '/var/task/node_modules/usearch/build/config.gypi', npm ERR! gyp info spawn args '-I', npm ERR! gyp info spawn args '/var/lang/lib/node_modules/npm/node_modules/node-gyp/addon.gypi', npm ERR! gyp info spawn args '-I', npm ERR! gyp info spawn args '/root/.cache/node-gyp/18.18.2/include/node/common.gypi', npm ERR! gyp info spawn args '-Dlibrary=shared_library', npm ERR! gyp info spawn args '-Dvisibility=default', npm ERR! gyp info spawn args '-Dnode_root_dir=/root/.cache/node-gyp/18.18.2', npm ERR! gyp info spawn args '-Dnode_gyp_dir=/var/lang/lib/node_modules/npm/node_modules/node-gyp', npm ERR! gyp info spawn args '-Dnode_lib_file=/root/.cache/node-gyp/18.18.2/<(target_arch)/node.lib', npm ERR! gyp info spawn args '-Dmodule_root_dir=/var/task/node_modules/usearch', npm ERR! gyp info spawn args '-Dnode_engine=v8', npm ERR! gyp info spawn args '--depth=.', npm ERR! gyp info spawn args '--no-parallel', npm ERR! gyp info spawn args '--generator-output', npm ERR! gyp info spawn args 'build', npm ERR! gyp info spawn args '-Goutput_dir=.' npm ERR! gyp info spawn args ] npm ERR! gyp info spawn make npm ERR! gyp info spawn args [ 'BUILDTYPE=Release', '-C', 'build' ] npm ERR! In file included from ../simsimd/include/simsimd/simsimd.h:15:0, npm ERR! from ../include/usearch/index_plugins.hpp:51, npm ERR! from ../include/usearch/index_dense.hpp:10, npm ERR! from ../javascript/lib.cpp:18: npm ERR! ../simsimd/include/simsimd/binary.h: In function ‘simsimd_f32_t simsimd_avx512_b8_hamming(const simsimd_b8_t*, const simsimd_b8_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/binary.h:149:17: error: ‘_mm512_loadu_epi8’ was not declared in this scope npm ERR! a_vec = _mm512_loadu_epi8(a); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/binary.h:149:17: note: suggested alternative: ‘_mm512_add_epi8’ npm ERR! a_vec = _mm512_loadu_epi8(a); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! _mm512_add_epi8 npm ERR! ../simsimd/include/simsimd/binary.h: In function ‘simsimd_f32_t simsimd_avx512_b8_jaccard(const simsimd_b8_t*, const simsimd_b8_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/binary.h:175:17: error: ‘_mm512_loadu_epi8’ was not declared in this scope npm ERR! a_vec = _mm512_loadu_epi8(a); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/binary.h:175:17: note: suggested alternative: ‘_mm512_add_epi8’ npm ERR! a_vec = _mm512_loadu_epi8(a); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! _mm512_add_epi8 npm ERR! In file included from ../simsimd/include/simsimd/simsimd.h:16:0, npm ERR! from ../include/usearch/index_plugins.hpp:51, npm ERR! from ../include/usearch/index_dense.hpp:10, npm ERR! from ../javascript/lib.cpp:18: npm ERR! ../simsimd/include/simsimd/probability.h: In function ‘simsimd_f32_t simsimd_avx512_f32_js(const simsimd_f32_t*, const simsimd_f32_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/probability.h:427:12: warning: unused variable ‘m_recip_approx’ [-Wunused-variable] npm ERR! __m512 m_recip_approx = _mm512_rcp14_ps(m_vec); npm ERR! ^~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h: At global scope: npm ERR! ../simsimd/include/simsimd/probability.h:453:8: error: ‘__m512h’ does not name a type; did you mean ‘__m512d’? npm ERR! inline __m512h npm ERR! ^~~~~~~ npm ERR! __m512d npm ERR! ../simsimd/include/simsimd/probability.h:473:87: error: attribute(target("avx512fp16")) is unknown npm ERR! simsimd_avx512_f16_kl(simsimd_f16_t const* a, simsimd_f16_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! ../simsimd/include/simsimd/probability.h: In function ‘simsimd_f32_t simsimd_avx512_f16_kl(const simsimd_f16_t*, const simsimd_f16_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/probability.h:474:5: error: ‘__m512h’ was not declared in this scope npm ERR! __m512h sum_vec = _mm512_set1_ph((_Float16)0); npm ERR! ^~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:474:5: note: suggested alternative: ‘__m512d’ npm ERR! __m512h sum_vec = _mm512_set1_ph((_Float16)0); npm ERR! ^~~~~~~ npm ERR! __m512d npm ERR! ../simsimd/include/simsimd/probability.h:475:13: error: expected ‘;’ before ‘epsilon_vec’ npm ERR! __m512h epsilon_vec = _mm512_set1_ph((_Float16)SIMSIMD_F16_DIVISION_EPSILON); npm ERR! ^~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:476:13: error: expected ‘;’ before ‘a_vec’ npm ERR! __m512h a_vec, b_vec; npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:481:9: error: ‘a_vec’ was not declared in this scope npm ERR! a_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)), epsilon_vec); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:481:9: note: suggested alternative: ‘iovec’ npm ERR! a_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)), epsilon_vec); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:481:43: error: ‘_mm512_castsi512_ph’ was not declared in this scope npm ERR! a_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:481:43: note: suggested alternative: ‘_mm512_castsi512_pd’ npm ERR! a_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_castsi512_pd npm ERR! ../simsimd/include/simsimd/probability.h:481:99: error: ‘epsilon_vec’ was not declared in this scope npm ERR! a_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)), epsilon_vec); npm ERR! ^~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:481:17: error: ‘_mm512_maskz_add_ph’ was not declared in this scope npm ERR! a_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:481:17: note: suggested alternative: ‘_mm512_maskz_add_ps’ npm ERR! a_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_maskz_add_ps npm ERR! ../simsimd/include/simsimd/probability.h:482:9: error: ‘b_vec’ was not declared in this scope npm ERR! b_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, b)), epsilon_vec); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:482:9: note: suggested alternative: ‘iovec’ npm ERR! b_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, b)), epsilon_vec); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:485:9: error: ‘a_vec’ was not declared in this scope npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:485:9: note: suggested alternative: ‘iovec’ npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:485:51: error: ‘_mm512_loadu_epi16’ was not declared in this scope npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:485:51: note: suggested alternative: ‘_mm512_madd_epi16’ npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! _mm512_madd_epi16 npm ERR! ../simsimd/include/simsimd/probability.h:485:31: error: ‘_mm512_castsi512_ph’ was not declared in this scope npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:485:31: note: suggested alternative: ‘_mm512_castsi512_pd’ npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_castsi512_pd npm ERR! ../simsimd/include/simsimd/probability.h:485:75: error: ‘epsilon_vec’ was not declared in this scope npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:485:17: error: ‘_mm512_add_ph’ was not declared in this scope npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:485:17: note: suggested alternative: ‘_mm512_add_ps’ npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~ npm ERR! _mm512_add_ps npm ERR! ../simsimd/include/simsimd/probability.h:486:9: error: ‘b_vec’ was not declared in this scope npm ERR! b_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(b)), epsilon_vec); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:486:9: note: suggested alternative: ‘iovec’ npm ERR! b_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(b)), epsilon_vec); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:489:13: error: expected ‘;’ before ‘ratio_vec’ npm ERR! __m512h ratio_vec = _mm512_div_ph(a_vec, b_vec); npm ERR! ^~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:490:13: error: expected ‘;’ before ‘log_ratio_vec’ npm ERR! __m512h log_ratio_vec = simsimd_avx512_f16_log2(ratio_vec); npm ERR! ^~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:491:13: error: expected ‘;’ before ‘prod_vec’ npm ERR! __m512h prod_vec = _mm512_mul_ph(a_vec, log_ratio_vec); npm ERR! ^~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:492:5: error: ‘sum_vec’ was not declared in this scope npm ERR! sum_vec = _mm512_add_ph(sum_vec, prod_vec); npm ERR! ^~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:492:5: note: suggested alternative: ‘shm_open’ npm ERR! sum_vec = _mm512_add_ph(sum_vec, prod_vec); npm ERR! ^~~~~~~ npm ERR! shm_open npm ERR! ../simsimd/include/simsimd/probability.h:492:38: error: ‘prod_vec’ was not declared in this scope npm ERR! sum_vec = _mm512_add_ph(sum_vec, prod_vec); npm ERR! ^~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:492:38: note: suggested alternative: ‘iovec’ npm ERR! sum_vec = _mm512_add_ph(sum_vec, prod_vec); npm ERR! ^~~~~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:492:15: error: ‘_mm512_add_ph’ was not declared in this scope npm ERR! sum_vec = _mm512_add_ph(sum_vec, prod_vec); npm ERR! ^~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:492:15: note: suggested alternative: ‘_mm512_add_ps’ npm ERR! sum_vec = _mm512_add_ph(sum_vec, prod_vec); npm ERR! ^~~~~~~~~~~~~ npm ERR! _mm512_add_ps npm ERR! ../simsimd/include/simsimd/probability.h:497:12: error: ‘_mm512_reduce_add_ph’ was not declared in this scope npm ERR! return _mm512_reduce_add_ph(sum_vec) * log2_normalizer; npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:497:12: note: suggested alternative: ‘_mm512_reduce_add_pd’ npm ERR! return _mm512_reduce_add_ph(sum_vec) * log2_normalizer; npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_reduce_add_pd npm ERR! ../simsimd/include/simsimd/probability.h: At global scope: npm ERR! ../simsimd/include/simsimd/probability.h:502:87: error: attribute(target("avx512fp16")) is unknown npm ERR! simsimd_avx512_f16_js(simsimd_f16_t const* a, simsimd_f16_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! ../simsimd/include/simsimd/probability.h: In function ‘simsimd_f32_t simsimd_avx512_f16_js(const simsimd_f16_t*, const simsimd_f16_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/probability.h:503:5: error: ‘__m512h’ was not declared in this scope npm ERR! __m512h sum_a_vec = _mm512_set1_ph((_Float16)0); npm ERR! ^~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:503:5: note: suggested alternative: ‘__m512d’ npm ERR! __m512h sum_a_vec = _mm512_set1_ph((_Float16)0); npm ERR! ^~~~~~~ npm ERR! __m512d npm ERR! ../simsimd/include/simsimd/probability.h:504:13: error: expected ‘;’ before ‘sum_b_vec’ npm ERR! __m512h sum_b_vec = _mm512_set1_ph((_Float16)0); npm ERR! ^~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:505:13: error: expected ‘;’ before ‘epsilon_vec’ npm ERR! __m512h epsilon_vec = _mm512_set1_ph((_Float16)SIMSIMD_F16_DIVISION_EPSILON); npm ERR! ^~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:506:13: error: expected ‘;’ before ‘a_vec’ npm ERR! __m512h a_vec, b_vec; npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:511:9: error: ‘a_vec’ was not declared in this scope npm ERR! a_vec = _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:511:9: note: suggested alternative: ‘iovec’ npm ERR! a_vec = _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:511:17: error: ‘_mm512_castsi512_ph’ was not declared in this scope npm ERR! a_vec = _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:511:17: note: suggested alternative: ‘_mm512_castsi512_pd’ npm ERR! a_vec = _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_castsi512_pd npm ERR! ../simsimd/include/simsimd/probability.h:512:9: error: ‘b_vec’ was not declared in this scope npm ERR! b_vec = _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, b)); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:512:9: note: suggested alternative: ‘iovec’ npm ERR! b_vec = _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, b)); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:515:9: error: ‘a_vec’ was not declared in this scope npm ERR! a_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(a)); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:515:9: note: suggested alternative: ‘iovec’ npm ERR! a_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(a)); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:515:37: error: ‘_mm512_loadu_epi16’ was not declared in this scope npm ERR! a_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(a)); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:515:37: note: suggested alternative: ‘_mm512_madd_epi16’ npm ERR! a_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(a)); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! _mm512_madd_epi16 npm ERR! ../simsimd/include/simsimd/probability.h:515:17: error: ‘_mm512_castsi512_ph’ was not declared in this scope npm ERR! a_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(a)); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:515:17: note: suggested alternative: ‘_mm512_castsi512_pd’ npm ERR! a_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(a)); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_castsi512_pd npm ERR! ../simsimd/include/simsimd/probability.h:516:9: error: ‘b_vec’ was not declared in this scope npm ERR! b_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(b)); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:516:9: note: suggested alternative: ‘iovec’ npm ERR! b_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(b)); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:519:13: error: expected ‘;’ before ‘m_vec’ npm ERR! __m512h m_vec = _mm512_mul_ph(_mm512_add_ph(a_vec, b_vec), _mm512_set1_ph((_Float16)0.5f)); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:520:51: error: ‘a_vec’ was not declared in this scope npm ERR! __mmask32 nonzero_mask_a = _mm512_cmp_ph_mask(a_vec, epsilon_vec, _CMP_GE_OQ); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:520:51: note: suggested alternative: ‘iovec’ npm ERR! __mmask32 nonzero_mask_a = _mm512_cmp_ph_mask(a_vec, epsilon_vec, _CMP_GE_OQ); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:520:58: error: ‘epsilon_vec’ was not declared in this scope npm ERR! __mmask32 nonzero_mask_a = _mm512_cmp_ph_mask(a_vec, epsilon_vec, _CMP_GE_OQ); npm ERR! ^~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:520:32: error: ‘_mm512_cmp_ph_mask’ was not declared in this scope npm ERR! __mmask32 nonzero_mask_a = _mm512_cmp_ph_mask(a_vec, epsilon_vec, _CMP_GE_OQ); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:520:32: note: suggested alternative: ‘_mm512_cmp_ps_mask’ npm ERR! __mmask32 nonzero_mask_a = _mm512_cmp_ph_mask(a_vec, epsilon_vec, _CMP_GE_OQ); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! _mm512_cmp_ps_mask npm ERR! ../simsimd/include/simsimd/probability.h:521:51: error: ‘b_vec’ was not declared in this scope npm ERR! __mmask32 nonzero_mask_b = _mm512_cmp_ph_mask(b_vec, epsilon_vec, _CMP_GE_OQ); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:521:51: note: suggested alternative: ‘iovec’ npm ERR! __mmask32 nonzero_mask_b = _mm512_cmp_ph_mask(b_vec, epsilon_vec, _CMP_GE_OQ); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:523:13: error: expected ‘;’ before ‘m_recip_approx’ npm ERR! __m512h m_recip_approx = _mm512_rcp_ph(m_vec); npm ERR! ^~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:524:13: error: expected ‘;’ before ‘ratio_a_vec’ npm ERR! __m512h ratio_a_vec = _mm512_mul_ph(a_vec, m_recip_approx); npm ERR! ^~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:525:13: error: expected ‘;’ before ‘ratio_b_vec’ npm ERR! __m512h ratio_b_vec = _mm512_mul_ph(b_vec, m_recip_approx); npm ERR! ^~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:526:13: error: expected ‘;’ before ‘log_ratio_a_vec’ npm ERR! __m512h log_ratio_a_vec = simsimd_avx512_f16_log2(ratio_a_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:527:13: error: expected ‘;’ before ‘log_ratio_b_vec’ npm ERR! __m512h log_ratio_b_vec = simsimd_avx512_f16_log2(ratio_b_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:528:5: error: ‘sum_a_vec’ was not declared in this scope npm ERR! sum_a_vec = _mm512_maskz_fmadd_ph(nonzero_mask, a_vec, log_ratio_a_vec, sum_a_vec); npm ERR! ^~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:528:60: error: ‘log_ratio_a_vec’ was not declared in this scope npm ERR! sum_a_vec = _mm512_maskz_fmadd_ph(nonzero_mask, a_vec, log_ratio_a_vec, sum_a_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:528:17: error: ‘_mm512_maskz_fmadd_ph’ was not declared in this scope npm ERR! sum_a_vec = _mm512_maskz_fmadd_ph(nonzero_mask, a_vec, log_ratio_a_vec, sum_a_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:528:17: note: suggested alternative: ‘_mm512_maskz_fmadd_ps’ npm ERR! sum_a_vec = _mm512_maskz_fmadd_ph(nonzero_mask, a_vec, log_ratio_a_vec, sum_a_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_maskz_fmadd_ps npm ERR! ../simsimd/include/simsimd/probability.h:529:5: error: ‘sum_b_vec’ was not declared in this scope npm ERR! sum_b_vec = _mm512_maskz_fmadd_ph(nonzero_mask, b_vec, log_ratio_b_vec, sum_b_vec); npm ERR! ^~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:529:60: error: ‘log_ratio_b_vec’ was not declared in this scope npm ERR! sum_b_vec = _mm512_maskz_fmadd_ph(nonzero_mask, b_vec, log_ratio_b_vec, sum_b_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:534:33: error: ‘_mm512_add_ph’ was not declared in this scope npm ERR! return _mm512_reduce_add_ph(_mm512_add_ph(sum_a_vec, sum_b_vec)) * 0.5f * log2_normalizer; npm ERR! ^~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:534:33: note: suggested alternative: ‘_mm512_add_ps’ npm ERR! return _mm512_reduce_add_ph(_mm512_add_ph(sum_a_vec, sum_b_vec)) * 0.5f * log2_normalizer; npm ERR! ^~~~~~~~~~~~~ npm ERR! _mm512_add_ps npm ERR! ../simsimd/include/simsimd/probability.h:534:12: error: ‘_mm512_reduce_add_ph’ was not declared in this scope npm ERR! return _mm512_reduce_add_ph(_mm512_add_ph(sum_a_vec, sum_b_vec)) * 0.5f * log2_normalizer; npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:534:12: note: suggested alternative: ‘_mm512_reduce_add_pd’ npm ERR! return _mm512_reduce_add_ph(_mm512_add_ph(sum_a_vec, sum_b_vec)) * 0.5f * log2_normalizer; npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_reduce_add_pd npm ERR! In file included from ../simsimd/include/simsimd/simsimd.h:17:0, npm ERR! from ../include/usearch/index_plugins.hpp:51, npm ERR! from ../include/usearch/index_dense.hpp:10, npm ERR! from ../javascript/lib.cpp:18: npm ERR! ../simsimd/include/simsimd/spatial.h: At global scope: npm ERR! ../simsimd/include/simsimd/spatial.h:836:89: error: attribute(target("avx512fp16")) is unknown npm ERR! simsimd_avx512_f16_l2sq(simsimd_f16_t const* a, simsimd_f16_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! ../simsimd/include/simsimd/spatial.h: In function ‘simsimd_f32_t simsimd_avx512_f16_l2sq(const simsimd_f16_t*, const simsimd_f16_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/spatial.h:837:5: error: ‘__m512h’ was not declared in this scope npm ERR! __m512h d2_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:837:5: note: suggested alternative: ‘__m512d’ npm ERR! __m512h d2_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~~ npm ERR! __m512d npm ERR! ../simsimd/include/simsimd/spatial.h:847:21: error: ‘_mm512_loadu_epi16’ was not declared in this scope npm ERR! a_i16_vec = _mm512_loadu_epi16(a); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:847:21: note: suggested alternative: ‘_mm512_madd_epi16’ npm ERR! a_i16_vec = _mm512_loadu_epi16(a); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! _mm512_madd_epi16 npm ERR! ../simsimd/include/simsimd/spatial.h:851:13: error: expected ‘;’ before ‘d_vec’ npm ERR! __m512h d_vec = _mm512_sub_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec)); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:852:5: error: ‘d2_vec’ was not declared in this scope npm ERR! d2_vec = _mm512_fmadd_ph(d_vec, d_vec, d2_vec); npm ERR! ^~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:852:5: note: suggested alternative: ‘iovec’ npm ERR! d2_vec = _mm512_fmadd_ph(d_vec, d_vec, d2_vec); npm ERR! ^~~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/spatial.h:852:30: error: ‘d_vec’ was not declared in this scope npm ERR! d2_vec = _mm512_fmadd_ph(d_vec, d_vec, d2_vec); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:852:30: note: suggested alternative: ‘iovec’ npm ERR! d2_vec = _mm512_fmadd_ph(d_vec, d_vec, d2_vec); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/spatial.h:852:14: error: ‘_mm512_fmadd_ph’ was not declared in this scope npm ERR! d2_vec = _mm512_fmadd_ph(d_vec, d_vec, d2_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:852:14: note: suggested alternative: ‘_mm512_fmadd_ps’ npm ERR! d2_vec = _mm512_fmadd_ph(d_vec, d_vec, d2_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! _mm512_fmadd_ps npm ERR! ../simsimd/include/simsimd/spatial.h:856:12: error: ‘_mm512_reduce_add_ph’ was not declared in this scope npm ERR! return _mm512_reduce_add_ph(d2_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:856:12: note: suggested alternative: ‘_mm512_reduce_add_pd’ npm ERR! return _mm512_reduce_add_ph(d2_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_reduce_add_pd npm ERR! ../simsimd/include/simsimd/spatial.h: At global scope: npm ERR! ../simsimd/include/simsimd/spatial.h:861:87: error: attribute(target("avx512fp16")) is unknown npm ERR! simsimd_avx512_f16_ip(simsimd_f16_t const* a, simsimd_f16_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! ../simsimd/include/simsimd/spatial.h: In function ‘simsimd_f32_t simsimd_avx512_f16_ip(const simsimd_f16_t*, const simsimd_f16_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/spatial.h:862:5: error: ‘__m512h’ was not declared in this scope npm ERR! __m512h ab_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:862:5: note: suggested alternative: ‘__m512d’ npm ERR! __m512h ab_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~~ npm ERR! __m512d npm ERR! ../simsimd/include/simsimd/spatial.h:872:21: error: ‘_mm512_loadu_epi16’ was not declared in this scope npm ERR! a_i16_vec = _mm512_loadu_epi16(a); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:872:21: note: suggested alternative: ‘_mm512_madd_epi16’ npm ERR! a_i16_vec = _mm512_loadu_epi16(a); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! _mm512_madd_epi16 npm ERR! ../simsimd/include/simsimd/spatial.h:876:5: error: ‘ab_vec’ was not declared in this scope npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:876:5: note: suggested alternative: ‘iovec’ npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/spatial.h:876:30: error: ‘_mm512_castsi512_ph’ was not declared in this scope npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:876:30: note: suggested alternative: ‘_mm512_castsi512_pd’ npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_castsi512_pd npm ERR! ../simsimd/include/simsimd/spatial.h:876:14: error: ‘_mm512_fmadd_ph’ was not declared in this scope npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:876:14: note: suggested alternative: ‘_mm512_fmadd_ps’ npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! _mm512_fmadd_ps npm ERR! ../simsimd/include/simsimd/spatial.h:880:16: error: ‘_mm512_reduce_add_ph’ was not declared in this scope npm ERR! return 1 - _mm512_reduce_add_ph(ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:880:16: note: suggested alternative: ‘_mm512_reduce_add_pd’ npm ERR! return 1 - _mm512_reduce_add_ph(ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_reduce_add_pd npm ERR! ../simsimd/include/simsimd/spatial.h: At global scope: npm ERR! ../simsimd/include/simsimd/spatial.h:885:88: error: attribute(target("avx512fp16")) is unknown npm ERR! simsimd_avx512_f16_cos(simsimd_f16_t const* a, simsimd_f16_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! ../simsimd/include/simsimd/spatial.h: In function ‘simsimd_f32_t simsimd_avx512_f16_cos(const simsimd_f16_t*, const simsimd_f16_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/spatial.h:886:5: error: ‘__m512h’ was not declared in this scope npm ERR! __m512h ab_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:886:5: note: suggested alternative: ‘__m512d’ npm ERR! __m512h ab_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~~ npm ERR! __m512d npm ERR! ../simsimd/include/simsimd/spatial.h:887:13: error: expected ‘;’ before ‘a2_vec’ npm ERR! __m512h a2_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:888:13: error: expected ‘;’ before ‘b2_vec’ npm ERR! __m512h b2_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:898:21: error: ‘_mm512_loadu_epi16’ was not declared in this scope npm ERR! a_i16_vec = _mm512_loadu_epi16(a); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:898:21: note: suggested alternative: ‘_mm512_madd_epi16’ npm ERR! a_i16_vec = _mm512_loadu_epi16(a); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! _mm512_madd_epi16 npm ERR! ../simsimd/include/simsimd/spatial.h:902:5: error: ‘ab_vec’ was not declared in this scope npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:902:5: note: suggested alternative: ‘iovec’ npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/spatial.h:902:30: error: ‘_mm512_castsi512_ph’ was not declared in this scope npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:902:30: note: suggested alternative: ‘_mm512_castsi512_pd’ npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_castsi512_pd npm ERR! ../simsimd/include/simsimd/spatial.h:902:14: error: ‘_mm512_fmadd_ph’ was not declared in this scope npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:902:14: note: suggested alternative: ‘_mm512_fmadd_ps’ npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! _mm512_fmadd_ps npm ERR! ../simsimd/include/simsimd/spatial.h:903:5: error: ‘a2_vec’ was not declared in this scope npm ERR! a2_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(a_i16_vec), a2_vec); npm ERR! ^~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:903:5: note: suggested alternative: ‘iovec’ npm ERR! a2_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(a_i16_vec), a2_vec); npm ERR! ^~~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/spatial.h:904:5: error: ‘b2_vec’ was not declared in this scope npm ERR! b2_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(b_i16_vec), _mm512_castsi512_ph(b_i16_vec), b2_vec); npm ERR! ^~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:904:5: note: suggested alternative: ‘iovec’ npm ERR! b2_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(b_i16_vec), _mm512_castsi512_ph(b_i16_vec), b2_vec); npm ERR! ^~~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/spatial.h:908:24: error: ‘_mm512_reduce_add_ph’ was not declared in this scope npm ERR! simsimd_f32_t ab = _mm512_reduce_add_ph(ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:908:24: note: suggested alternative: ‘_mm512_reduce_add_pd’ npm ERR! simsimd_f32_t ab = _mm512_reduce_add_ph(ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_reduce_add_pd npm ERR! ../simsimd/include/simsimd/spatial.h: At global scope: npm ERR! ../simsimd/include/simsimd/spatial.h:933:86: error: attribute(target("avx512vnni")) is unknown npm ERR! simsimd_avx512_i8_l2sq(simsimd_i8_t const* a, simsimd_i8_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! ../simsimd/include/simsimd/spatial.h: In function ‘simsimd_f32_t simsimd_avx512_i8_l2sq(const simsimd_i8_t*, const simsimd_i8_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/spatial.h:944:38: error: ‘_mm256_loadu_epi8’ was not declared in this scope npm ERR! a_vec = _mm512_cvtepi8_epi16(_mm256_loadu_epi8(a)); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:944:38: note: suggested alternative: ‘_mm256_add_epi8’ npm ERR! a_vec = _mm512_cvtepi8_epi16(_mm256_loadu_epi8(a)); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! _mm256_add_epi8 npm ERR! ../simsimd/include/simsimd/spatial.h:949:19: error: ‘_mm512_dpwssd_epi32’ was not declared in this scope npm ERR! d2_i32s_vec = _mm512_dpwssd_epi32(d2_i32s_vec, d_i16s_vec, d_i16s_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:949:19: note: suggested alternative: ‘_mm512_4dpwssd_epi32’ npm ERR! d2_i32s_vec = _mm512_dpwssd_epi32(d2_i32s_vec, d_i16s_vec, d_i16s_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_4dpwssd_epi32 npm ERR! ../simsimd/include/simsimd/spatial.h: At global scope: npm ERR! ../simsimd/include/simsimd/spatial.h:958:85: error: attribute(target("avx512vnni")) is unknown npm ERR! simsimd_avx512_i8_cos(simsimd_i8_t const* a, simsimd_i8_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! ../simsimd/include/simsimd/spatial.h: In function ‘simsimd_f32_t simsimd_avx512_i8_cos(const simsimd_i8_t*, const simsimd_i8_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/spatial.h:971:17: error: ‘_mm512_loadu_epi8’ was not declared in this scope npm ERR! a_vec = _mm512_loadu_epi8(a); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:971:17: note: suggested alternative: ‘_mm512_add_epi8’ npm ERR! a_vec = _mm512_loadu_epi8(a); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! _mm512_add_epi8 npm ERR! ../simsimd/include/simsimd/spatial.h:975:19: error: ‘_mm512_dpbusd_epi32’ was not declared in this scope npm ERR! ab_i32s_vec = _mm512_dpbusd_epi32(ab_i32s_vec, a_vec, b_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:975:19: note: suggested alternative: ‘_mm512_4dpwssd_epi32’ npm ERR! ab_i32s_vec = _mm512_dpbusd_epi32(ab_i32s_vec, a_vec, b_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_4dpwssd_epi32 npm ERR! ../simsimd/include/simsimd/spatial.h: At global scope: npm ERR! ../simsimd/include/simsimd/spatial.h:994:84: error: attribute(target("avx512vnni")) is unknown npm ERR! simsimd_avx512_i8_ip(simsimd_i8_t const* a, simsimd_i8_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! In file included from ../include/usearch/index_plugins.hpp:51:0, npm ERR! from ../include/usearch/index_dense.hpp:10, npm ERR! from ../javascript/lib.cpp:18: npm ERR! ../simsimd/include/simsimd/simsimd.h:189:32: warning: unknown option after ‘#pragma GCC diagnostic’ kind [-Wpragmas] npm ERR! #pragma GCC diagnostic ignored "-Wcast-function-type" npm ERR! ^~~~~~~~~~~~~~~~~~~~~~ npm ERR! In file included from ../simsimd/include/simsimd/simsimd.h:17:0, npm ERR! from ../include/usearch/index_plugins.hpp:51, npm ERR! from ../include/usearch/index_dense.hpp:10, npm ERR! from ../javascript/lib.cpp:18: npm ERR! ../simsimd/include/simsimd/spatial.h: In function ‘simsimd_f32_t simsimd_avx512_i8_l2sq(const simsimd_i8_t*, const simsimd_i8_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/spatial.h:934:48: warning: AVX512F vector return without AVX512F enabled changes the ABI [-Wpsabi] npm ERR! __m512i d2_i32s_vec = _mm512_setzero_si512(); npm ERR! ^ npm ERR! ../simsimd/include/simsimd/spatial.h:940:37: warning: AVX vector return without AVX enabled changes the ABI [-Wpsabi] npm ERR! a_vec = _mm512_cvtepi8_epi16(_mm256_maskz_loadu_epi8(mask, a)); npm ERR! ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ npm ERR! make: *** [Release/obj.target/usearch/javascript/lib.o] Error 1 npm ERR! gyp ERR! build error npm ERR! gyp ERR! stack Error: `make` failed with exit code: 2 npm ERR! gyp ERR! stack at ChildProcess. (/var/lang/lib/node_modules/npm/node_modules/node-gyp/lib/build.js:209:23) npm ERR! gyp ERR! System Linux 6.4.16-linuxkit npm ERR! gyp ERR! command "/var/lang/bin/node" "/var/lang/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild" npm ERR! gyp ERR! cwd /var/task/node_modules/usearch npm ERR! gyp ERR! node -v v18.18.2 npm ERR! gyp ERR! node-gyp -v v10.0.1 npm ERR! gyp ERR! not ok npm ERR! A complete log of this run can be found in: /root/.npm/_logs/2023-11-08T23_35_33_558Z-debug-0.log removed 31 packages, and changed 65 packages in 5s 26 packages are looking for funding run `npm fund` for details Loaded plugins: ovl Resolving Dependencies --> Running transaction check ---> Package cmake.x86_64 0:2.8.12.2-2.amzn2.0.2 will be installed --> Processing Dependency: libarchive.so.13()(64bit) for package: cmake-2.8.12.2-2.amzn2.0.2.x86_64 ---> Package gcc-c++.x86_64 0:7.3.1-17.amzn2 will be installed --> Processing Dependency: gcc(x86-64) = 7.3.1-17.amzn2 for package: gcc-c++-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libmpc.so.3()(64bit) for package: gcc-c++-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libmpfr.so.4()(64bit) for package: gcc-c++-7.3.1-17.amzn2.x86_64 ---> Package git.x86_64 0:2.40.1-1.amzn2.0.1 will be installed --> Processing Dependency: git-core = 2.40.1-1.amzn2.0.1 for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: git-core-doc = 2.40.1-1.amzn2.0.1 for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl-Git = 2.40.1-1.amzn2.0.1 for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl >= 5.008 for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: /usr/bin/perl for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(File::Basename) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(File::Find) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(File::Spec) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(Getopt::Long) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(Git) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(IPC::Open2) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(Term::ReadKey) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(lib) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(strict) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(warnings) for package: git-2.40.1-1.amzn2.0.1.x86_64 ---> Package python3.x86_64 0:3.7.16-1.amzn2.0.4 will be installed --> Processing Dependency: python3-libs(x86-64) = 3.7.16-1.amzn2.0.4 for package: python3-3.7.16-1.amzn2.0.4.x86_64 --> Processing Dependency: python3-pip for package: python3-3.7.16-1.amzn2.0.4.x86_64 --> Processing Dependency: python3-setuptools for package: python3-3.7.16-1.amzn2.0.4.x86_64 --> Processing Dependency: libpython3.7m.so.1.0()(64bit) for package: python3-3.7.16-1.amzn2.0.4.x86_64 ---> Package tar.x86_64 2:1.26-35.amzn2.0.2 will be installed --> Running transaction check ---> Package gcc.x86_64 0:7.3.1-17.amzn2 will be installed --> Processing Dependency: cpp = 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libgomp = 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: binutils >= 2.24 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: glibc-devel >= 2.2.90-12 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libatomic >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libcilkrts >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libitm >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libmpx >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libquadmath >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libsanitizer >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libgomp.so.1()(64bit) for package: gcc-7.3.1-17.amzn2.x86_64 ---> Package git-core.x86_64 0:2.40.1-1.amzn2.0.1 will be installed --> Processing Dependency: less for package: git-core-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: openssh-clients for package: git-core-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: libpcre2-8.so.0()(64bit) for package: git-core-2.40.1-1.amzn2.0.1.x86_64 ---> Package git-core-doc.noarch 0:2.40.1-1.amzn2.0.1 will be installed ---> Package libarchive.x86_64 0:3.1.2-14.amzn2.0.1 will be installed --> Processing Dependency: liblzo2.so.2()(64bit) for package: libarchive-3.1.2-14.amzn2.0.1.x86_64 ---> Package libmpc.x86_64 0:1.0.1-3.amzn2.0.2 will be installed ---> Package mpfr.x86_64 0:3.1.1-4.amzn2.0.2 will be installed ---> Package perl.x86_64 4:5.16.3-299.amzn2.0.2 will be installed --> Processing Dependency: perl-libs = 4:5.16.3-299.amzn2.0.2 for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Scalar::Util) >= 1.10 for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Socket) >= 1.3 for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Carp) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Exporter) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(File::Path) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(File::Temp) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Filter::Util::Call) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Pod::Simple::Search) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Pod::Simple::XHTML) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Scalar::Util) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Socket) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Storable) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Time::HiRes) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Time::Local) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(constant) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(threads) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(threads::shared) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl-libs for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl-macros for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: libperl.so()(64bit) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 ---> Package perl-Getopt-Long.noarch 0:2.40-3.amzn2 will be installed --> Processing Dependency: perl(Pod::Usage) >= 1.14 for package: perl-Getopt-Long-2.40-3.amzn2.noarch --> Processing Dependency: perl(Text::ParseWords) for package: perl-Getopt-Long-2.40-3.amzn2.noarch ---> Package perl-Git.noarch 0:2.40.1-1.amzn2.0.1 will be installed --> Processing Dependency: perl(Error) for package: perl-Git-2.40.1-1.amzn2.0.1.noarch ---> Package perl-PathTools.x86_64 0:3.40-5.amzn2.0.2 will be installed ---> Package perl-TermReadKey.x86_64 0:2.30-20.amzn2.0.2 will be installed ---> Package python3-libs.x86_64 0:3.7.16-1.amzn2.0.4 will be installed --> Processing Dependency: libtirpc.so.1()(64bit) for package: python3-libs-3.7.16-1.amzn2.0.4.x86_64 ---> Package python3-pip.noarch 0:20.2.2-1.amzn2.0.4 will be installed ---> Package python3-setuptools.noarch 0:49.1.3-1.amzn2.0.3 will be installed --> Running transaction check ---> Package binutils.x86_64 0:2.29.1-31.amzn2 will be installed ---> Package cpp.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package glibc-devel.x86_64 0:2.26-63.amzn2.0.1 will be installed --> Processing Dependency: glibc-headers = 2.26-63.amzn2.0.1 for package: glibc-devel-2.26-63.amzn2.0.1.x86_64 --> Processing Dependency: glibc-headers for package: glibc-devel-2.26-63.amzn2.0.1.x86_64 ---> Package less.x86_64 0:458-9.amzn2.0.2 will be installed --> Processing Dependency: groff-base for package: less-458-9.amzn2.0.2.x86_64 ---> Package libatomic.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libcilkrts.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libgomp.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libitm.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libmpx.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libquadmath.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libsanitizer.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libtirpc.x86_64 0:0.2.4-0.16.amzn2 will be installed ---> Package lzo.x86_64 0:2.06-8.amzn2.0.4 will be installed ---> Package openssh-clients.x86_64 0:7.4p1-22.amzn2.0.5 will be installed --> Processing Dependency: openssh = 7.4p1-22.amzn2.0.5 for package: openssh-clients-7.4p1-22.amzn2.0.5.x86_64 --> Processing Dependency: fipscheck-lib(x86-64) >= 1.3.0 for package: openssh-clients-7.4p1-22.amzn2.0.5.x86_64 --> Processing Dependency: libedit.so.0()(64bit) for package: openssh-clients-7.4p1-22.amzn2.0.5.x86_64 --> Processing Dependency: libfipscheck.so.1()(64bit) for package: openssh-clients-7.4p1-22.amzn2.0.5.x86_64 ---> Package pcre2.x86_64 0:10.23-11.amzn2.0.1 will be installed ---> Package perl-Carp.noarch 0:1.26-244.amzn2 will be installed ---> Package perl-Error.noarch 1:0.17020-2.amzn2 will be installed ---> Package perl-Exporter.noarch 0:5.68-3.amzn2 will be installed ---> Package perl-File-Path.noarch 0:2.09-2.amzn2 will be installed ---> Package perl-File-Temp.noarch 0:0.23.01-3.amzn2 will be installed ---> Package perl-Filter.x86_64 0:1.49-3.amzn2.0.2 will be installed ---> Package perl-Pod-Simple.noarch 1:3.28-4.amzn2 will be installed --> Processing Dependency: perl(Pod::Escapes) >= 1.04 for package: 1:perl-Pod-Simple-3.28-4.amzn2.noarch --> Processing Dependency: perl(Encode) for package: 1:perl-Pod-Simple-3.28-4.amzn2.noarch ---> Package perl-Pod-Usage.noarch 0:1.63-3.amzn2 will be installed --> Processing Dependency: perl(Pod::Text) >= 3.15 for package: perl-Pod-Usage-1.63-3.amzn2.noarch --> Processing Dependency: perl-Pod-Perldoc for package: perl-Pod-Usage-1.63-3.amzn2.noarch ---> Package perl-Scalar-List-Utils.x86_64 0:1.27-248.amzn2.0.2 will be installed ---> Package perl-Socket.x86_64 0:2.010-4.amzn2.0.2 will be installed ---> Package perl-Storable.x86_64 0:2.45-3.amzn2.0.2 will be installed ---> Package perl-Text-ParseWords.noarch 0:3.29-4.amzn2 will be installed ---> Package perl-Time-HiRes.x86_64 4:1.9725-3.amzn2.0.2 will be installed ---> Package perl-Time-Local.noarch 0:1.2300-2.amzn2 will be installed ---> Package perl-constant.noarch 0:1.27-2.amzn2.0.1 will be installed ---> Package perl-libs.x86_64 4:5.16.3-299.amzn2.0.2 will be installed ---> Package perl-macros.x86_64 4:5.16.3-299.amzn2.0.2 will be installed ---> Package perl-threads.x86_64 0:1.87-4.amzn2.0.2 will be installed ---> Package perl-threads-shared.x86_64 0:1.43-6.amzn2.0.2 will be installed --> Running transaction check ---> Package fipscheck-lib.x86_64 0:1.4.1-6.amzn2.0.2 will be installed --> Processing Dependency: /usr/bin/fipscheck for package: fipscheck-lib-1.4.1-6.amzn2.0.2.x86_64 ---> Package glibc-headers.x86_64 0:2.26-63.amzn2.0.1 will be installed --> Processing Dependency: kernel-headers >= 2.2.1 for package: glibc-headers-2.26-63.amzn2.0.1.x86_64 --> Processing Dependency: kernel-headers for package: glibc-headers-2.26-63.amzn2.0.1.x86_64 ---> Package groff-base.x86_64 0:1.22.2-8.amzn2.0.2 will be installed ---> Package libedit.x86_64 0:3.0-12.20121213cvs.amzn2.0.2 will be installed ---> Package openssh.x86_64 0:7.4p1-22.amzn2.0.5 will be installed --> Processing Dependency: audit-libs >= 1.0.8 for package: openssh-7.4p1-22.amzn2.0.5.x86_64 --> Processing Dependency: /sbin/nologin for package: openssh-7.4p1-22.amzn2.0.5.x86_64 ---> Package perl-Encode.x86_64 0:2.51-7.amzn2.0.2 will be installed ---> Package perl-Pod-Escapes.noarch 1:1.04-299.amzn2.0.2 will be installed ---> Package perl-Pod-Perldoc.noarch 0:3.20-4.amzn2.0.1 will be installed --> Processing Dependency: perl(HTTP::Tiny) for package: perl-Pod-Perldoc-3.20-4.amzn2.0.1.noarch --> Processing Dependency: perl(parent) for package: perl-Pod-Perldoc-3.20-4.amzn2.0.1.noarch ---> Package perl-podlators.noarch 0:2.5.1-3.amzn2.0.1 will be installed --> Running transaction check ---> Package audit-libs.x86_64 0:2.8.1-3.amzn2.1 will be installed --> Processing Dependency: libcap-ng.so.0()(64bit) for package: audit-libs-2.8.1-3.amzn2.1.x86_64 ---> Package fipscheck.x86_64 0:1.4.1-6.amzn2.0.2 will be installed ---> Package kernel-headers.x86_64 0:4.14.327-246.539.amzn2 will be installed ---> Package perl-HTTP-Tiny.noarch 0:0.033-3.amzn2.0.1 will be installed ---> Package perl-parent.noarch 1:0.225-244.amzn2.0.1 will be installed ---> Package util-linux.x86_64 0:2.30.2-2.amzn2.0.11 will be installed --> Processing Dependency: libfdisk = 2.30.2-2.amzn2.0.11 for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols = 2.30.2-2.amzn2.0.11 for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: pam >= 1.1.3-7 for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: /etc/pam.d/system-auth for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1(FDISK_2.26)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1(FDISK_2.27)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1(FDISK_2.28)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1(FDISK_2.29)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1(FDISK_2.30)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libpam.so.0(LIBPAM_1.0)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libpam_misc.so.0(LIBPAM_MISC_1.0)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1(SMARTCOLS_2.25)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1(SMARTCOLS_2.27)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1(SMARTCOLS_2.28)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1(SMARTCOLS_2.29)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1(SMARTCOLS_2.30)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsystemd.so.0(LIBSYSTEMD_209)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libudev.so.1(LIBUDEV_183)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libutempter.so.0(UTEMPTER_1.1)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libpam.so.0()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libpam_misc.so.0()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsystemd.so.0()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libudev.so.1()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libutempter.so.0()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Running transaction check ---> Package libcap-ng.x86_64 0:0.7.5-4.amzn2.0.4 will be installed ---> Package libfdisk.x86_64 0:2.30.2-2.amzn2.0.11 will be installed ---> Package libsmartcols.x86_64 0:2.30.2-2.amzn2.0.11 will be installed ---> Package libutempter.x86_64 0:1.1.6-4.amzn2.0.2 will be installed --> Processing Dependency: shadow-utils for package: libutempter-1.1.6-4.amzn2.0.2.x86_64 ---> Package pam.x86_64 0:1.1.8-23.amzn2.0.1 will be installed --> Processing Dependency: cracklib-dicts >= 2.8 for package: pam-1.1.8-23.amzn2.0.1.x86_64 --> Processing Dependency: libpwquality >= 0.9.9 for package: pam-1.1.8-23.amzn2.0.1.x86_64 --> Processing Dependency: libcrack.so.2()(64bit) for package: pam-1.1.8-23.amzn2.0.1.x86_64 ---> Package systemd-libs.x86_64 0:219-78.amzn2.0.22 will be installed --> Processing Dependency: libdw.so.1()(64bit) for package: systemd-libs-219-78.amzn2.0.22.x86_64 --> Processing Dependency: liblz4.so.1()(64bit) for package: systemd-libs-219-78.amzn2.0.22.x86_64 --> Running transaction check ---> Package cracklib.x86_64 0:2.9.0-11.amzn2.0.2 will be installed --> Processing Dependency: gzip for package: cracklib-2.9.0-11.amzn2.0.2.x86_64 ---> Package cracklib-dicts.x86_64 0:2.9.0-11.amzn2.0.2 will be installed ---> Package elfutils-libs.x86_64 0:0.176-2.amzn2.0.2 will be installed --> Processing Dependency: default-yama-scope for package: elfutils-libs-0.176-2.amzn2.0.2.x86_64 ---> Package libpwquality.x86_64 0:1.2.3-5.amzn2 will be installed ---> Package lz4.x86_64 0:1.7.5-2.amzn2.0.1 will be installed ---> Package shadow-utils.x86_64 2:4.1.5.1-24.amzn2.0.3 will be installed --> Processing Dependency: libsemanage.so.1(LIBSEMANAGE_1.0)(64bit) for package: 2:shadow-utils-4.1.5.1-24.amzn2.0.3.x86_64 --> Processing Dependency: libsemanage.so.1()(64bit) for package: 2:shadow-utils-4.1.5.1-24.amzn2.0.3.x86_64 --> Running transaction check ---> Package elfutils-default-yama-scope.noarch 0:0.176-2.amzn2.0.2 will be installed --> Processing Dependency: systemd for package: elfutils-default-yama-scope-0.176-2.amzn2.0.2.noarch --> Processing Dependency: systemd for package: elfutils-default-yama-scope-0.176-2.amzn2.0.2.noarch ---> Package gzip.x86_64 0:1.5-10.amzn2.0.1 will be installed ---> Package libsemanage.x86_64 0:2.5-11.amzn2 will be installed --> Processing Dependency: libustr-1.0.so.1(USTR_1.0)(64bit) for package: libsemanage-2.5-11.amzn2.x86_64 --> Processing Dependency: libustr-1.0.so.1(USTR_1.0.1)(64bit) for package: libsemanage-2.5-11.amzn2.x86_64 --> Processing Dependency: libustr-1.0.so.1()(64bit) for package: libsemanage-2.5-11.amzn2.x86_64 --> Running transaction check ---> Package systemd.x86_64 0:219-78.amzn2.0.22 will be installed --> Processing Dependency: kmod >= 18-4 for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: acl for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: dbus for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: libcryptsetup.so.4(CRYPTSETUP_1.0)(64bit) for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: libkmod.so.2(LIBKMOD_5)(64bit) for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: libcryptsetup.so.4()(64bit) for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: libkmod.so.2()(64bit) for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: libqrencode.so.3()(64bit) for package: systemd-219-78.amzn2.0.22.x86_64 ---> Package ustr.x86_64 0:1.0.4-16.amzn2.0.3 will be installed --> Running transaction check ---> Package acl.x86_64 0:2.2.51-14.amzn2 will be installed ---> Package cryptsetup-libs.x86_64 0:1.7.4-4.amzn2 will be installed --> Processing Dependency: libdevmapper.so.1.02(Base)(64bit) for package: cryptsetup-libs-1.7.4-4.amzn2.x86_64 --> Processing Dependency: libdevmapper.so.1.02(DM_1_02_97)(64bit) for package: cryptsetup-libs-1.7.4-4.amzn2.x86_64 --> Processing Dependency: libdevmapper.so.1.02()(64bit) for package: cryptsetup-libs-1.7.4-4.amzn2.x86_64 ---> Package dbus.x86_64 1:1.10.24-7.amzn2.0.3 will be installed --> Processing Dependency: dbus-libs(x86-64) = 1:1.10.24-7.amzn2.0.3 for package: 1:dbus-1.10.24-7.amzn2.0.3.x86_64 --> Processing Dependency: libdbus-1.so.3(LIBDBUS_1_3)(64bit) for package: 1:dbus-1.10.24-7.amzn2.0.3.x86_64 --> Processing Dependency: libdbus-1.so.3(LIBDBUS_PRIVATE_1.10.24)(64bit) for package: 1:dbus-1.10.24-7.amzn2.0.3.x86_64 --> Processing Dependency: libdbus-1.so.3()(64bit) for package: 1:dbus-1.10.24-7.amzn2.0.3.x86_64 ---> Package kmod.x86_64 0:25-3.amzn2.0.2 will be installed ---> Package kmod-libs.x86_64 0:25-3.amzn2.0.2 will be installed ---> Package qrencode-libs.x86_64 0:3.4.1-3.amzn2.0.2 will be installed --> Running transaction check ---> Package dbus-libs.x86_64 1:1.10.24-7.amzn2.0.3 will be installed ---> Package device-mapper-libs.x86_64 7:1.02.170-6.amzn2.5 will be installed --> Processing Dependency: device-mapper = 7:1.02.170-6.amzn2.5 for package: 7:device-mapper-libs-1.02.170-6.amzn2.5.x86_64 --> Running transaction check ---> Package device-mapper.x86_64 7:1.02.170-6.amzn2.5 will be installed --> Finished Dependency Resolution Dependencies Resolved ================================================================================ Package Arch Version Repository Size ================================================================================ Installing: cmake x86_64 2.8.12.2-2.amzn2.0.2 amzn2-core 6.9 M gcc-c++ x86_64 7.3.1-17.amzn2 amzn2-core 13 M git x86_64 2.40.1-1.amzn2.0.1 amzn2-core 54 k python3 x86_64 3.7.16-1.amzn2.0.4 amzn2-core 72 k tar x86_64 2:1.26-35.amzn2.0.2 amzn2-core 845 k Installing for dependencies: acl x86_64 2.2.51-14.amzn2 amzn2-core 82 k audit-libs x86_64 2.8.1-3.amzn2.1 amzn2-core 99 k binutils x86_64 2.29.1-31.amzn2 amzn2-core 5.8 M cpp x86_64 7.3.1-17.amzn2 amzn2-core 9.2 M cracklib x86_64 2.9.0-11.amzn2.0.2 amzn2-core 80 k cracklib-dicts x86_64 2.9.0-11.amzn2.0.2 amzn2-core 3.6 M cryptsetup-libs x86_64 1.7.4-4.amzn2 amzn2-core 224 k dbus x86_64 1:1.10.24-7.amzn2.0.3 amzn2-core 245 k dbus-libs x86_64 1:1.10.24-7.amzn2.0.3 amzn2-core 167 k device-mapper x86_64 7:1.02.170-6.amzn2.5 amzn2-core 297 k device-mapper-libs x86_64 7:1.02.170-6.amzn2.5 amzn2-core 326 k elfutils-default-yama-scope noarch 0.176-2.amzn2.0.2 amzn2-core 33 k elfutils-libs x86_64 0.176-2.amzn2.0.2 amzn2-core 289 k fipscheck x86_64 1.4.1-6.amzn2.0.2 amzn2-core 21 k fipscheck-lib x86_64 1.4.1-6.amzn2.0.2 amzn2-core 11 k gcc x86_64 7.3.1-17.amzn2 amzn2-core 22 M git-core x86_64 2.40.1-1.amzn2.0.1 amzn2-core 10 M git-core-doc noarch 2.40.1-1.amzn2.0.1 amzn2-core 3.0 M glibc-devel x86_64 2.26-63.amzn2.0.1 amzn2-core 995 k glibc-headers x86_64 2.26-63.amzn2.0.1 amzn2-core 516 k groff-base x86_64 1.22.2-8.amzn2.0.2 amzn2-core 948 k gzip x86_64 1.5-10.amzn2.0.1 amzn2-core 129 k kernel-headers x86_64 4.14.327-246.539.amzn2 amzn2-core 1.2 M kmod x86_64 25-3.amzn2.0.2 amzn2-core 111 k kmod-libs x86_64 25-3.amzn2.0.2 amzn2-core 59 k less x86_64 458-9.amzn2.0.2 amzn2-core 121 k libarchive x86_64 3.1.2-14.amzn2.0.1 amzn2-core 312 k libatomic x86_64 7.3.1-17.amzn2 amzn2-core 46 k libcap-ng x86_64 0.7.5-4.amzn2.0.4 amzn2-core 25 k libcilkrts x86_64 7.3.1-17.amzn2 amzn2-core 85 k libedit x86_64 3.0-12.20121213cvs.amzn2.0.2 amzn2-core 93 k libfdisk x86_64 2.30.2-2.amzn2.0.11 amzn2-core 238 k libgomp x86_64 7.3.1-17.amzn2 amzn2-core 205 k libitm x86_64 7.3.1-17.amzn2 amzn2-core 85 k libmpc x86_64 1.0.1-3.amzn2.0.2 amzn2-core 52 k libmpx x86_64 7.3.1-17.amzn2 amzn2-core 52 k libpwquality x86_64 1.2.3-5.amzn2 amzn2-core 84 k libquadmath x86_64 7.3.1-17.amzn2 amzn2-core 189 k libsanitizer x86_64 7.3.1-17.amzn2 amzn2-core 642 k libsemanage x86_64 2.5-11.amzn2 amzn2-core 152 k libsmartcols x86_64 2.30.2-2.amzn2.0.11 amzn2-core 155 k libtirpc x86_64 0.2.4-0.16.amzn2 amzn2-core 88 k libutempter x86_64 1.1.6-4.amzn2.0.2 amzn2-core 25 k lz4 x86_64 1.7.5-2.amzn2.0.1 amzn2-core 99 k lzo x86_64 2.06-8.amzn2.0.4 amzn2-core 60 k mpfr x86_64 3.1.1-4.amzn2.0.2 amzn2-core 208 k openssh x86_64 7.4p1-22.amzn2.0.5 amzn2-core 508 k openssh-clients x86_64 7.4p1-22.amzn2.0.5 amzn2-core 652 k pam x86_64 1.1.8-23.amzn2.0.1 amzn2-core 715 k pcre2 x86_64 10.23-11.amzn2.0.1 amzn2-core 207 k perl x86_64 4:5.16.3-299.amzn2.0.2 amzn2-core 8.0 M perl-Carp noarch 1.26-244.amzn2 amzn2-core 19 k perl-Encode x86_64 2.51-7.amzn2.0.2 amzn2-core 1.5 M perl-Error noarch 1:0.17020-2.amzn2 amzn2-core 32 k perl-Exporter noarch 5.68-3.amzn2 amzn2-core 29 k perl-File-Path noarch 2.09-2.amzn2 amzn2-core 27 k perl-File-Temp noarch 0.23.01-3.amzn2 amzn2-core 56 k perl-Filter x86_64 1.49-3.amzn2.0.2 amzn2-core 76 k perl-Getopt-Long noarch 2.40-3.amzn2 amzn2-core 56 k perl-Git noarch 2.40.1-1.amzn2.0.1 amzn2-core 41 k perl-HTTP-Tiny noarch 0.033-3.amzn2.0.1 amzn2-core 39 k perl-PathTools x86_64 3.40-5.amzn2.0.2 amzn2-core 83 k perl-Pod-Escapes noarch 1:1.04-299.amzn2.0.2 amzn2-core 52 k perl-Pod-Perldoc noarch 3.20-4.amzn2.0.1 amzn2-core 87 k perl-Pod-Simple noarch 1:3.28-4.amzn2 amzn2-core 216 k perl-Pod-Usage noarch 1.63-3.amzn2 amzn2-core 27 k perl-Scalar-List-Utils x86_64 1.27-248.amzn2.0.2 amzn2-core 36 k perl-Socket x86_64 2.010-4.amzn2.0.2 amzn2-core 49 k perl-Storable x86_64 2.45-3.amzn2.0.2 amzn2-core 78 k perl-TermReadKey x86_64 2.30-20.amzn2.0.2 amzn2-core 31 k perl-Text-ParseWords noarch 3.29-4.amzn2 amzn2-core 14 k perl-Time-HiRes x86_64 4:1.9725-3.amzn2.0.2 amzn2-core 45 k perl-Time-Local noarch 1.2300-2.amzn2 amzn2-core 24 k perl-constant noarch 1.27-2.amzn2.0.1 amzn2-core 19 k perl-libs x86_64 4:5.16.3-299.amzn2.0.2 amzn2-core 685 k perl-macros x86_64 4:5.16.3-299.amzn2.0.2 amzn2-core 45 k perl-parent noarch 1:0.225-244.amzn2.0.1 amzn2-core 12 k perl-podlators noarch 2.5.1-3.amzn2.0.1 amzn2-core 112 k perl-threads x86_64 1.87-4.amzn2.0.2 amzn2-core 50 k perl-threads-shared x86_64 1.43-6.amzn2.0.2 amzn2-core 39 k python3-libs x86_64 3.7.16-1.amzn2.0.4 amzn2-core 9.8 M python3-pip noarch 20.2.2-1.amzn2.0.4 amzn2-core 2.0 M python3-setuptools noarch 49.1.3-1.amzn2.0.3 amzn2-core 1.1 M qrencode-libs x86_64 3.4.1-3.amzn2.0.2 amzn2-core 50 k shadow-utils x86_64 2:4.1.5.1-24.amzn2.0.3 amzn2-core 1.1 M systemd x86_64 219-78.amzn2.0.22 amzn2-core 5.0 M systemd-libs x86_64 219-78.amzn2.0.22 amzn2-core 409 k ustr x86_64 1.0.4-16.amzn2.0.3 amzn2-core 96 k util-linux x86_64 2.30.2-2.amzn2.0.11 amzn2-core 2.3 M Transaction Summary ================================================================================ Install 5 Packages (+89 Dependent packages) Total download size: 118 M Installed size: 387 M Downloading packages: -------------------------------------------------------------------------------- Total 29 MB/s | 118 MB 00:04 Running transaction check Running transaction test Transaction test succeeded Running transaction Installing : mpfr-3.1.1-4.amzn2.0.2.x86_64 1/94 Installing : libmpc-1.0.1-3.amzn2.0.2.x86_64 2/94 Installing : libcap-ng-0.7.5-4.amzn2.0.4.x86_64 3/94 Installing : audit-libs-2.8.1-3.amzn2.1.x86_64 4/94 Installing : groff-base-1.22.2-8.amzn2.0.2.x86_64 5/94 Installing : lz4-1.7.5-2.amzn2.0.1.x86_64 6/94 Installing : 1:perl-parent-0.225-244.amzn2.0.1.noarch 7/94 Installing : perl-HTTP-Tiny-0.033-3.amzn2.0.1.noarch 8/94 Installing : perl-Pod-Perldoc-3.20-4.amzn2.0.1.noarch 9/94 Installing : perl-podlators-2.5.1-3.amzn2.0.1.noarch 10/94 Installing : perl-Text-ParseWords-3.29-4.amzn2.noarch 11/94 Installing : perl-Encode-2.51-7.amzn2.0.2.x86_64 12/94 Installing : perl-Pod-Usage-1.63-3.amzn2.noarch 13/94 Installing : 1:perl-Pod-Escapes-1.04-299.amzn2.0.2.noarch 14/94 Installing : 4:perl-libs-5.16.3-299.amzn2.0.2.x86_64 15/94 Installing : perl-Filter-1.49-3.amzn2.0.2.x86_64 16/94 Installing : perl-Storable-2.45-3.amzn2.0.2.x86_64 17/94 Installing : perl-Carp-1.26-244.amzn2.noarch 18/94 Installing : perl-File-Path-2.09-2.amzn2.noarch 19/94 Installing : perl-PathTools-3.40-5.amzn2.0.2.x86_64 20/94 Installing : perl-Scalar-List-Utils-1.27-248.amzn2.0.2.x86_64 21/94 Installing : perl-Exporter-5.68-3.amzn2.noarch 22/94 Installing : perl-Time-Local-1.2300-2.amzn2.noarch 23/94 Installing : perl-File-Temp-0.23.01-3.amzn2.noarch 24/94 Installing : perl-constant-1.27-2.amzn2.0.1.noarch 25/94 Installing : perl-threads-shared-1.43-6.amzn2.0.2.x86_64 26/94 Installing : perl-threads-1.87-4.amzn2.0.2.x86_64 27/94 Installing : 4:perl-Time-HiRes-1.9725-3.amzn2.0.2.x86_64 28/94 Installing : perl-Socket-2.010-4.amzn2.0.2.x86_64 29/94 Installing : 4:perl-macros-5.16.3-299.amzn2.0.2.x86_64 30/94 Installing : perl-Getopt-Long-2.40-3.amzn2.noarch 31/94 Installing : 1:perl-Pod-Simple-3.28-4.amzn2.noarch 32/94 Installing : 4:perl-5.16.3-299.amzn2.0.2.x86_64 33/94 Installing : perl-TermReadKey-2.30-20.amzn2.0.2.x86_64 34/94 Installing : 1:perl-Error-0.17020-2.amzn2.noarch 35/94 Installing : less-458-9.amzn2.0.2.x86_64 36/94 Installing : cpp-7.3.1-17.amzn2.x86_64 37/94 Installing : fipscheck-lib-1.4.1-6.amzn2.0.2.x86_64 38/94 Installing : fipscheck-1.4.1-6.amzn2.0.2.x86_64 39/94 Installing : libatomic-7.3.1-17.amzn2.x86_64 40/94 Installing : libgomp-7.3.1-17.amzn2.x86_64 41/94 Installing : kmod-libs-25-3.amzn2.0.2.x86_64 42/94 Installing : libsanitizer-7.3.1-17.amzn2.x86_64 43/94 Installing : gzip-1.5-10.amzn2.0.1.x86_64 44/94 Installing : cracklib-2.9.0-11.amzn2.0.2.x86_64 45/94 Installing : cracklib-dicts-2.9.0-11.amzn2.0.2.x86_64 46/94 Installing : libpwquality-1.2.3-5.amzn2.x86_64 47/94 Installing : pam-1.1.8-23.amzn2.0.1.x86_64 48/94 Installing : libmpx-7.3.1-17.amzn2.x86_64 49/94 Installing : ustr-1.0.4-16.amzn2.0.3.x86_64 50/94 Installing : libsemanage-2.5-11.amzn2.x86_64 51/94 Installing : 2:shadow-utils-4.1.5.1-24.amzn2.0.3.x86_64 52/94 Installing : libutempter-1.1.6-4.amzn2.0.2.x86_64 53/94 Installing : lzo-2.06-8.amzn2.0.4.x86_64 54/94 Installing : libarchive-3.1.2-14.amzn2.0.1.x86_64 55/94 Installing : libcilkrts-7.3.1-17.amzn2.x86_64 56/94 Installing : acl-2.2.51-14.amzn2.x86_64 57/94 Installing : pcre2-10.23-11.amzn2.0.1.x86_64 58/94 Installing : libsmartcols-2.30.2-2.amzn2.0.11.x86_64 59/94 Installing : binutils-2.29.1-31.amzn2.x86_64 60/94 Installing : kernel-headers-4.14.327-246.539.amzn2.x86_64 61/94 Installing : glibc-headers-2.26-63.amzn2.0.1.x86_64 62/94 Installing : glibc-devel-2.26-63.amzn2.0.1.x86_64 63/94 Installing : kmod-25-3.amzn2.0.2.x86_64 64/94 Installing : libfdisk-2.30.2-2.amzn2.0.11.x86_64 65/94 Installing : libtirpc-0.2.4-0.16.amzn2.x86_64 66/94 Installing : python3-setuptools-49.1.3-1.amzn2.0.3.noarch 67/94 Installing : python3-libs-3.7.16-1.amzn2.0.4.x86_64 68/94 Installing : python3-3.7.16-1.amzn2.0.4.x86_64 69/94 Installing : python3-pip-20.2.2-1.amzn2.0.4.noarch 70/94 Installing : qrencode-libs-3.4.1-3.amzn2.0.2.x86_64 71/94 Installing : util-linux-2.30.2-2.amzn2.0.11.x86_64 72/94 Installing : 7:device-mapper-1.02.170-6.amzn2.5.x86_64 73/94 Installing : 7:device-mapper-libs-1.02.170-6.amzn2.5.x86_64 74/94 Installing : cryptsetup-libs-1.7.4-4.amzn2.x86_64 75/94 Installing : elfutils-libs-0.176-2.amzn2.0.2.x86_64 76/94 Installing : systemd-libs-219-78.amzn2.0.22.x86_64 77/94 Installing : 1:dbus-libs-1.10.24-7.amzn2.0.3.x86_64 78/94 Installing : systemd-219-78.amzn2.0.22.x86_64 79/94 Failed to get D-Bus connection: Operation not permitted Installing : 1:dbus-1.10.24-7.amzn2.0.3.x86_64 80/94 Installing : elfutils-default-yama-scope-0.176-2.amzn2.0.2.noarch 81/94 Installing : openssh-7.4p1-22.amzn2.0.5.x86_64 82/94 Installing : libquadmath-7.3.1-17.amzn2.x86_64 83/94 Installing : libedit-3.0-12.20121213cvs.amzn2.0.2.x86_64 84/94 Installing : openssh-clients-7.4p1-22.amzn2.0.5.x86_64 85/94 Installing : git-core-2.40.1-1.amzn2.0.1.x86_64 86/94 Installing : git-core-doc-2.40.1-1.amzn2.0.1.noarch 87/94 Installing : git-2.40.1-1.amzn2.0.1.x86_64 88/94 Installing : perl-Git-2.40.1-1.amzn2.0.1.noarch 89/94 Installing : libitm-7.3.1-17.amzn2.x86_64 90/94 Installing : gcc-7.3.1-17.amzn2.x86_64 91/94 Installing : gcc-c++-7.3.1-17.amzn2.x86_64 92/94 Installing : cmake-2.8.12.2-2.amzn2.0.2.x86_64 93/94 Installing : 2:tar-1.26-35.amzn2.0.2.x86_64 94/94 Verifying : python3-pip-20.2.2-1.amzn2.0.4.noarch 1/94 Verifying : libitm-7.3.1-17.amzn2.x86_64 2/94 Verifying : 1:perl-Pod-Escapes-1.04-299.amzn2.0.2.noarch 3/94 Verifying : git-core-2.40.1-1.amzn2.0.1.x86_64 4/94 Verifying : python3-setuptools-49.1.3-1.amzn2.0.3.noarch 5/94 Verifying : libmpc-1.0.1-3.amzn2.0.2.x86_64 6/94 Verifying : git-2.40.1-1.amzn2.0.1.x86_64 7/94 Verifying : cryptsetup-libs-1.7.4-4.amzn2.x86_64 8/94 Verifying : libedit-3.0-12.20121213cvs.amzn2.0.2.x86_64 9/94 Verifying : libutempter-1.1.6-4.amzn2.0.2.x86_64 10/94 Verifying : lz4-1.7.5-2.amzn2.0.1.x86_64 11/94 Verifying : libquadmath-7.3.1-17.amzn2.x86_64 12/94 Verifying : qrencode-libs-3.4.1-3.amzn2.0.2.x86_64 13/94 Verifying : perl-Filter-1.49-3.amzn2.0.2.x86_64 14/94 Verifying : 1:perl-Pod-Simple-3.28-4.amzn2.noarch 15/94 Verifying : libtirpc-0.2.4-0.16.amzn2.x86_64 16/94 Verifying : libfdisk-2.30.2-2.amzn2.0.11.x86_64 17/94 Verifying : perl-PathTools-3.40-5.amzn2.0.2.x86_64 18/94 Verifying : libcap-ng-0.7.5-4.amzn2.0.4.x86_64 19/94 Verifying : python3-libs-3.7.16-1.amzn2.0.4.x86_64 20/94 Verifying : gcc-c++-7.3.1-17.amzn2.x86_64 21/94 Verifying : perl-Storable-2.45-3.amzn2.0.2.x86_64 22/94 Verifying : python3-3.7.16-1.amzn2.0.4.x86_64 23/94 Verifying : kmod-25-3.amzn2.0.2.x86_64 24/94 Verifying : kernel-headers-4.14.327-246.539.amzn2.x86_64 25/94 Verifying : cmake-2.8.12.2-2.amzn2.0.2.x86_64 26/94 Verifying : 4:perl-libs-5.16.3-299.amzn2.0.2.x86_64 27/94 Verifying : perl-Getopt-Long-2.40-3.amzn2.noarch 28/94 Verifying : perl-Time-Local-1.2300-2.amzn2.noarch 29/94 Verifying : 1:dbus-1.10.24-7.amzn2.0.3.x86_64 30/94 Verifying : 2:shadow-utils-4.1.5.1-24.amzn2.0.3.x86_64 31/94 Verifying : binutils-2.29.1-31.amzn2.x86_64 32/94 Verifying : libsmartcols-2.30.2-2.amzn2.0.11.x86_64 33/94 Verifying : fipscheck-1.4.1-6.amzn2.0.2.x86_64 34/94 Verifying : pcre2-10.23-11.amzn2.0.1.x86_64 35/94 Verifying : libpwquality-1.2.3-5.amzn2.x86_64 36/94 Verifying : 7:device-mapper-libs-1.02.170-6.amzn2.5.x86_64 37/94 Verifying : cracklib-dicts-2.9.0-11.amzn2.0.2.x86_64 38/94 Verifying : perl-TermReadKey-2.30-20.amzn2.0.2.x86_64 39/94 Verifying : audit-libs-2.8.1-3.amzn2.1.x86_64 40/94 Verifying : perl-Pod-Perldoc-3.20-4.amzn2.0.1.noarch 41/94 Verifying : perl-Git-2.40.1-1.amzn2.0.1.noarch 42/94 Verifying : acl-2.2.51-14.amzn2.x86_64 43/94 Verifying : libsemanage-2.5-11.amzn2.x86_64 44/94 Verifying : 2:tar-1.26-35.amzn2.0.2.x86_64 45/94 Verifying : elfutils-libs-0.176-2.amzn2.0.2.x86_64 46/94 Verifying : openssh-7.4p1-22.amzn2.0.5.x86_64 47/94 Verifying : systemd-libs-219-78.amzn2.0.22.x86_64 48/94 Verifying : perl-File-Path-2.09-2.amzn2.noarch 49/94 Verifying : libcilkrts-7.3.1-17.amzn2.x86_64 50/94 Verifying : fipscheck-lib-1.4.1-6.amzn2.0.2.x86_64 51/94 Verifying : systemd-219-78.amzn2.0.22.x86_64 52/94 Verifying : lzo-2.06-8.amzn2.0.4.x86_64 53/94 Verifying : glibc-devel-2.26-63.amzn2.0.1.x86_64 54/94 Verifying : git-core-doc-2.40.1-1.amzn2.0.1.noarch 55/94 Verifying : 4:perl-5.16.3-299.amzn2.0.2.x86_64 56/94 Verifying : 1:dbus-libs-1.10.24-7.amzn2.0.3.x86_64 57/94 Verifying : perl-Carp-1.26-244.amzn2.noarch 58/94 Verifying : elfutils-default-yama-scope-0.176-2.amzn2.0.2.noarch 59/94 Verifying : perl-Scalar-List-Utils-1.27-248.amzn2.0.2.x86_64 60/94 Verifying : cpp-7.3.1-17.amzn2.x86_64 61/94 Verifying : mpfr-3.1.1-4.amzn2.0.2.x86_64 62/94 Verifying : util-linux-2.30.2-2.amzn2.0.11.x86_64 63/94 Verifying : pam-1.1.8-23.amzn2.0.1.x86_64 64/94 Verifying : perl-HTTP-Tiny-0.033-3.amzn2.0.1.noarch 65/94 Verifying : ustr-1.0.4-16.amzn2.0.3.x86_64 66/94 Verifying : less-458-9.amzn2.0.2.x86_64 67/94 Verifying : 1:perl-Error-0.17020-2.amzn2.noarch 68/94 Verifying : perl-Pod-Usage-1.63-3.amzn2.noarch 69/94 Verifying : gcc-7.3.1-17.amzn2.x86_64 70/94 Verifying : 1:perl-parent-0.225-244.amzn2.0.1.noarch 71/94 Verifying : perl-File-Temp-0.23.01-3.amzn2.noarch 72/94 Verifying : libmpx-7.3.1-17.amzn2.x86_64 73/94 Verifying : openssh-clients-7.4p1-22.amzn2.0.5.x86_64 74/94 Verifying : libarchive-3.1.2-14.amzn2.0.1.x86_64 75/94 Verifying : perl-Exporter-5.68-3.amzn2.noarch 76/94 Verifying : cracklib-2.9.0-11.amzn2.0.2.x86_64 77/94 Verifying : perl-Encode-2.51-7.amzn2.0.2.x86_64 78/94 Verifying : 7:device-mapper-1.02.170-6.amzn2.5.x86_64 79/94 Verifying : perl-threads-shared-1.43-6.amzn2.0.2.x86_64 80/94 Verifying : gzip-1.5-10.amzn2.0.1.x86_64 81/94 Verifying : libsanitizer-7.3.1-17.amzn2.x86_64 82/94 Verifying : perl-constant-1.27-2.amzn2.0.1.noarch 83/94 Verifying : kmod-libs-25-3.amzn2.0.2.x86_64 84/94 Verifying : glibc-headers-2.26-63.amzn2.0.1.x86_64 85/94 Verifying : libgomp-7.3.1-17.amzn2.x86_64 86/94 Verifying : perl-threads-1.87-4.amzn2.0.2.x86_64 87/94 Verifying : perl-podlators-2.5.1-3.amzn2.0.1.noarch 88/94 Verifying : libatomic-7.3.1-17.amzn2.x86_64 89/94 Verifying : 4:perl-Time-HiRes-1.9725-3.amzn2.0.2.x86_64 90/94 Verifying : perl-Socket-2.010-4.amzn2.0.2.x86_64 91/94 Verifying : 4:perl-macros-5.16.3-299.amzn2.0.2.x86_64 92/94 Verifying : groff-base-1.22.2-8.amzn2.0.2.x86_64 93/94 Verifying : perl-Text-ParseWords-3.29-4.amzn2.noarch 94/94 Installed: cmake.x86_64 0:2.8.12.2-2.amzn2.0.2 gcc-c++.x86_64 0:7.3.1-17.amzn2 git.x86_64 0:2.40.1-1.amzn2.0.1 python3.x86_64 0:3.7.16-1.amzn2.0.4 tar.x86_64 2:1.26-35.amzn2.0.2 Dependency Installed: acl.x86_64 0:2.2.51-14.amzn2 audit-libs.x86_64 0:2.8.1-3.amzn2.1 binutils.x86_64 0:2.29.1-31.amzn2 cpp.x86_64 0:7.3.1-17.amzn2 cracklib.x86_64 0:2.9.0-11.amzn2.0.2 cracklib-dicts.x86_64 0:2.9.0-11.amzn2.0.2 cryptsetup-libs.x86_64 0:1.7.4-4.amzn2 dbus.x86_64 1:1.10.24-7.amzn2.0.3 dbus-libs.x86_64 1:1.10.24-7.amzn2.0.3 device-mapper.x86_64 7:1.02.170-6.amzn2.5 device-mapper-libs.x86_64 7:1.02.170-6.amzn2.5 elfutils-default-yama-scope.noarch 0:0.176-2.amzn2.0.2 elfutils-libs.x86_64 0:0.176-2.amzn2.0.2 fipscheck.x86_64 0:1.4.1-6.amzn2.0.2 fipscheck-lib.x86_64 0:1.4.1-6.amzn2.0.2 gcc.x86_64 0:7.3.1-17.amzn2 git-core.x86_64 0:2.40.1-1.amzn2.0.1 git-core-doc.noarch 0:2.40.1-1.amzn2.0.1 glibc-devel.x86_64 0:2.26-63.amzn2.0.1 glibc-headers.x86_64 0:2.26-63.amzn2.0.1 groff-base.x86_64 0:1.22.2-8.amzn2.0.2 gzip.x86_64 0:1.5-10.amzn2.0.1 kernel-headers.x86_64 0:4.14.327-246.539.amzn2 kmod.x86_64 0:25-3.amzn2.0.2 kmod-libs.x86_64 0:25-3.amzn2.0.2 less.x86_64 0:458-9.amzn2.0.2 libarchive.x86_64 0:3.1.2-14.amzn2.0.1 libatomic.x86_64 0:7.3.1-17.amzn2 libcap-ng.x86_64 0:0.7.5-4.amzn2.0.4 libcilkrts.x86_64 0:7.3.1-17.amzn2 libedit.x86_64 0:3.0-12.20121213cvs.amzn2.0.2 libfdisk.x86_64 0:2.30.2-2.amzn2.0.11 libgomp.x86_64 0:7.3.1-17.amzn2 libitm.x86_64 0:7.3.1-17.amzn2 libmpc.x86_64 0:1.0.1-3.amzn2.0.2 libmpx.x86_64 0:7.3.1-17.amzn2 libpwquality.x86_64 0:1.2.3-5.amzn2 libquadmath.x86_64 0:7.3.1-17.amzn2 libsanitizer.x86_64 0:7.3.1-17.amzn2 libsemanage.x86_64 0:2.5-11.amzn2 libsmartcols.x86_64 0:2.30.2-2.amzn2.0.11 libtirpc.x86_64 0:0.2.4-0.16.amzn2 libutempter.x86_64 0:1.1.6-4.amzn2.0.2 lz4.x86_64 0:1.7.5-2.amzn2.0.1 lzo.x86_64 0:2.06-8.amzn2.0.4 mpfr.x86_64 0:3.1.1-4.amzn2.0.2 openssh.x86_64 0:7.4p1-22.amzn2.0.5 openssh-clients.x86_64 0:7.4p1-22.amzn2.0.5 pam.x86_64 0:1.1.8-23.amzn2.0.1 pcre2.x86_64 0:10.23-11.amzn2.0.1 perl.x86_64 4:5.16.3-299.amzn2.0.2 perl-Carp.noarch 0:1.26-244.amzn2 perl-Encode.x86_64 0:2.51-7.amzn2.0.2 perl-Error.noarch 1:0.17020-2.amzn2 perl-Exporter.noarch 0:5.68-3.amzn2 perl-File-Path.noarch 0:2.09-2.amzn2 perl-File-Temp.noarch 0:0.23.01-3.amzn2 perl-Filter.x86_64 0:1.49-3.amzn2.0.2 perl-Getopt-Long.noarch 0:2.40-3.amzn2 perl-Git.noarch 0:2.40.1-1.amzn2.0.1 perl-HTTP-Tiny.noarch 0:0.033-3.amzn2.0.1 perl-PathTools.x86_64 0:3.40-5.amzn2.0.2 perl-Pod-Escapes.noarch 1:1.04-299.amzn2.0.2 perl-Pod-Perldoc.noarch 0:3.20-4.amzn2.0.1 perl-Pod-Simple.noarch 1:3.28-4.amzn2 perl-Pod-Usage.noarch 0:1.63-3.amzn2 perl-Scalar-List-Utils.x86_64 0:1.27-248.amzn2.0.2 perl-Socket.x86_64 0:2.010-4.amzn2.0.2 perl-Storable.x86_64 0:2.45-3.amzn2.0.2 perl-TermReadKey.x86_64 0:2.30-20.amzn2.0.2 perl-Text-ParseWords.noarch 0:3.29-4.amzn2 perl-Time-HiRes.x86_64 4:1.9725-3.amzn2.0.2 perl-Time-Local.noarch 0:1.2300-2.amzn2 perl-constant.noarch 0:1.27-2.amzn2.0.1 perl-libs.x86_64 4:5.16.3-299.amzn2.0.2 perl-macros.x86_64 4:5.16.3-299.amzn2.0.2 perl-parent.noarch 1:0.225-244.amzn2.0.1 perl-podlators.noarch 0:2.5.1-3.amzn2.0.1 perl-threads.x86_64 0:1.87-4.amzn2.0.2 perl-threads-shared.x86_64 0:1.43-6.amzn2.0.2 python3-libs.x86_64 0:3.7.16-1.amzn2.0.4 python3-pip.noarch 0:20.2.2-1.amzn2.0.4 python3-setuptools.noarch 0:49.1.3-1.amzn2.0.3 qrencode-libs.x86_64 0:3.4.1-3.amzn2.0.2 shadow-utils.x86_64 2:4.1.5.1-24.amzn2.0.3 systemd.x86_64 0:219-78.amzn2.0.22 systemd-libs.x86_64 0:219-78.amzn2.0.22 ustr.x86_64 0:1.0.4-16.amzn2.0.3 util-linux.x86_64 0:2.30.2-2.amzn2.0.11 Complete! Loaded plugins: ovl Resolving Dependencies --> Running transaction check ---> Package autoconf.noarch 0:2.69-11.amzn2 will be installed --> Processing Dependency: m4 >= 1.4.14 for package: autoconf-2.69-11.amzn2.noarch --> Processing Dependency: perl(Data::Dumper) for package: autoconf-2.69-11.amzn2.noarch ---> Package automake.noarch 0:1.13.4-3.1.amzn2 will be installed --> Processing Dependency: perl(TAP::Parser) for package: automake-1.13.4-3.1.amzn2.noarch --> Processing Dependency: perl(Thread::Queue) for package: automake-1.13.4-3.1.amzn2.noarch ---> Package bison.x86_64 0:3.0.4-6.amzn2.0.2 will be installed ---> Package byacc.x86_64 0:1.9.20130304-3.amzn2.0.2 will be installed ---> Package cscope.x86_64 0:15.8-10.amzn2.0.2 will be installed --> Processing Dependency: emacs-filesystem for package: cscope-15.8-10.amzn2.0.2.x86_64 ---> Package ctags.x86_64 0:5.8-13.amzn2.0.2 will be installed ---> Package diffstat.x86_64 0:1.57-4.amzn2.0.2 will be installed ---> Package doxygen.x86_64 1:1.8.5-4.amzn2 will be installed ---> Package elfutils.x86_64 0:0.176-2.amzn2.0.2 will be installed ---> Package flex.x86_64 0:2.5.37-3.amzn2.0.3 will be installed ---> Package gcc-gfortran.x86_64 0:7.3.1-17.amzn2 will be installed --> Processing Dependency: libgfortran.so.4()(64bit) for package: gcc-gfortran-7.3.1-17.amzn2.x86_64 ---> Package gettext.x86_64 0:0.19.8.1-3.amzn2 will be installed --> Processing Dependency: gettext-libs(x86-64) = 0.19.8.1-3.amzn2 for package: gettext-0.19.8.1-3.amzn2.x86_64 --> Processing Dependency: libcroco-0.6.so.3()(64bit) for package: gettext-0.19.8.1-3.amzn2.x86_64 --> Processing Dependency: libgettextlib-0.19.8.1.so()(64bit) for package: gettext-0.19.8.1-3.amzn2.x86_64 --> Processing Dependency: libgettextsrc-0.19.8.1.so()(64bit) for package: gettext-0.19.8.1-3.amzn2.x86_64 ---> Package indent.x86_64 0:2.2.11-13.amzn2.0.2 will be installed ---> Package intltool.noarch 0:0.50.2-7.amzn2 will be installed --> Processing Dependency: gettext-devel for package: intltool-0.50.2-7.amzn2.noarch --> Processing Dependency: perl(XML::Parser) for package: intltool-0.50.2-7.amzn2.noarch ---> Package libtool.x86_64 0:2.4.2-22.2.amzn2.0.2 will be installed ---> Package make.x86_64 1:3.82-24.amzn2 will be installed ---> Package patch.x86_64 0:2.7.1-12.amzn2.0.2 will be installed ---> Package patchutils.x86_64 0:0.3.3-4.amzn2.0.1 will be installed ---> Package pkgconfig.x86_64 1:0.27.1-4.amzn2.0.2 will be installed ---> Package rcs.x86_64 0:5.9.0-5.amzn2.0.2 will be installed ---> Package rpm-build.x86_64 0:4.11.3-48.amzn2.0.3 will be installed --> Processing Dependency: /usr/bin/gdb-add-index for package: rpm-build-4.11.3-48.amzn2.0.3.x86_64 --> Processing Dependency: bzip2 for package: rpm-build-4.11.3-48.amzn2.0.3.x86_64 --> Processing Dependency: file for package: rpm-build-4.11.3-48.amzn2.0.3.x86_64 --> Processing Dependency: unzip for package: rpm-build-4.11.3-48.amzn2.0.3.x86_64 --> Processing Dependency: xz for package: rpm-build-4.11.3-48.amzn2.0.3.x86_64 ---> Package rpm-sign.x86_64 0:4.11.3-48.amzn2.0.3 will be installed ---> Package subversion.x86_64 0:1.7.14-16.amzn2.0.1 will be installed --> Processing Dependency: subversion-libs(x86-64) = 1.7.14-16.amzn2.0.1 for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: systemd-sysv for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libapr-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libaprutil-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libneon.so.27()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_client-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_delta-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_diff-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_fs-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_fs_base-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_fs_fs-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_fs_util-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_ra-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_ra_local-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_ra_neon-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_ra_svn-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_repos-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_subr-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_wc-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 ---> Package swig.x86_64 0:3.0.12-11.amzn2.0.3 will be installed ---> Package system-rpm-config.noarch 0:9.1.0-76.amzn2.0.14 will be installed --> Processing Dependency: dwz >= 0.4 for package: system-rpm-config-9.1.0-76.amzn2.0.14.noarch --> Processing Dependency: go-srpm-macros for package: system-rpm-config-9.1.0-76.amzn2.0.14.noarch --> Processing Dependency: perl-srpm-macros for package: system-rpm-config-9.1.0-76.amzn2.0.14.noarch --> Processing Dependency: zip for package: system-rpm-config-9.1.0-76.amzn2.0.14.noarch ---> Package systemtap.x86_64 0:4.5-1.amzn2.0.1 will be installed --> Processing Dependency: systemtap-client = 4.5-1.amzn2.0.1 for package: systemtap-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: systemtap-devel = 4.5-1.amzn2.0.1 for package: systemtap-4.5-1.amzn2.0.1.x86_64 --> Running transaction check ---> Package apr.x86_64 0:1.7.2-1.amzn2 will be installed ---> Package apr-util.x86_64 0:1.6.3-1.amzn2.0.1 will be installed --> Processing Dependency: apr-util-bdb(x86-64) = 1.6.3-1.amzn2.0.1 for package: apr-util-1.6.3-1.amzn2.0.1.x86_64 ---> Package bzip2.x86_64 0:1.0.6-13.amzn2.0.3 will be installed ---> Package dwz.x86_64 0:0.11-3.amzn2.0.3 will be installed ---> Package emacs-filesystem.noarch 1:27.2-4.amzn2.0.4 will be installed ---> Package file.x86_64 0:5.11-36.amzn2.0.1 will be installed ---> Package gdb.x86_64 0:8.0.1-36.amzn2.0.1 will be installed ---> Package gettext-devel.x86_64 0:0.19.8.1-3.amzn2 will be installed --> Processing Dependency: gettext-common-devel = 0.19.8.1-3.amzn2 for package: gettext-devel-0.19.8.1-3.amzn2.x86_64 ---> Package gettext-libs.x86_64 0:0.19.8.1-3.amzn2 will be installed ---> Package go-srpm-macros.noarch 0:3.0.15-23.amzn2.0.2 will be installed ---> Package libcroco.x86_64 0:0.6.12-6.amzn2 will be installed ---> Package libgfortran.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package m4.x86_64 0:1.4.16-10.amzn2.0.2 will be installed ---> Package neon.x86_64 0:0.30.0-3.amzn2.0.2 will be installed --> Processing Dependency: libgnutls.so.28(GNUTLS_1_4)(64bit) for package: neon-0.30.0-3.amzn2.0.2.x86_64 --> Processing Dependency: libgnutls.so.28(GNUTLS_2_12)(64bit) for package: neon-0.30.0-3.amzn2.0.2.x86_64 --> Processing Dependency: libgnutls.so.28()(64bit) for package: neon-0.30.0-3.amzn2.0.2.x86_64 --> Processing Dependency: libpakchois.so.0()(64bit) for package: neon-0.30.0-3.amzn2.0.2.x86_64 --> Processing Dependency: libproxy.so.1()(64bit) for package: neon-0.30.0-3.amzn2.0.2.x86_64 ---> Package perl-Data-Dumper.x86_64 0:2.145-3.amzn2.0.2 will be installed ---> Package perl-Test-Harness.noarch 0:3.28-3.amzn2 will be installed ---> Package perl-Thread-Queue.noarch 0:3.02-2.amzn2 will be installed ---> Package perl-XML-Parser.x86_64 0:2.41-10.amzn2.0.2 will be installed ---> Package perl-srpm-macros.noarch 0:1-8.amzn2.0.1 will be installed ---> Package subversion-libs.x86_64 0:1.7.14-16.amzn2.0.1 will be installed ---> Package systemd-sysv.x86_64 0:219-78.amzn2.0.22 will be installed ---> Package systemtap-client.x86_64 0:4.5-1.amzn2.0.1 will be installed --> Processing Dependency: systemtap-runtime = 4.5-1.amzn2.0.1 for package: systemtap-client-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: mokutil for package: systemtap-client-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: libavahi-client.so.3()(64bit) for package: systemtap-client-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: libavahi-common.so.3()(64bit) for package: systemtap-client-4.5-1.amzn2.0.1.x86_64 ---> Package systemtap-devel.x86_64 0:4.5-1.amzn2.0.1 will be installed --> Processing Dependency: kernel-devel-uname-r for package: systemtap-devel-4.5-1.amzn2.0.1.x86_64 ---> Package unzip.x86_64 0:6.0-57.amzn2.0.1 will be installed ---> Package xz.x86_64 0:5.2.2-1.amzn2.0.3 will be installed ---> Package zip.x86_64 0:3.0-11.amzn2.0.2 will be installed --> Running transaction check ---> Package apr-util-bdb.x86_64 0:1.6.3-1.amzn2.0.1 will be installed ---> Package avahi-libs.x86_64 0:0.6.31-20.amzn2.0.2 will be installed ---> Package gettext-common-devel.noarch 0:0.19.8.1-3.amzn2 will be installed ---> Package gnutls.x86_64 0:3.3.29-9.amzn2.0.1 will be installed --> Processing Dependency: trousers >= 0.3.11.2 for package: gnutls-3.3.29-9.amzn2.0.1.x86_64 --> Processing Dependency: libhogweed.so.2()(64bit) for package: gnutls-3.3.29-9.amzn2.0.1.x86_64 --> Processing Dependency: libnettle.so.4()(64bit) for package: gnutls-3.3.29-9.amzn2.0.1.x86_64 ---> Package kernel-devel.x86_64 0:4.14.327-246.539.amzn2 will be installed --> Processing Dependency: /usr/sbin/hardlink for package: kernel-devel-4.14.327-246.539.amzn2.x86_64 --> Processing Dependency: elfutils-libelf-devel for package: kernel-devel-4.14.327-246.539.amzn2.x86_64 ---> Package libproxy.x86_64 0:0.4.11-10.amzn2.0.3 will be installed --> Processing Dependency: libmodman.so.1()(64bit) for package: libproxy-0.4.11-10.amzn2.0.3.x86_64 ---> Package mokutil.x86_64 1:0.3.0-10.amzn2.0.1 will be installed --> Processing Dependency: libefivar.so.1(LIBEFIVAR_0.24)(64bit) for package: 1:mokutil-0.3.0-10.amzn2.0.1.x86_64 --> Processing Dependency: libefivar.so.1(libefivar.so.0)(64bit) for package: 1:mokutil-0.3.0-10.amzn2.0.1.x86_64 --> Processing Dependency: libefivar.so.1()(64bit) for package: 1:mokutil-0.3.0-10.amzn2.0.1.x86_64 ---> Package pakchois.x86_64 0:0.4-10.amzn2.0.2 will be installed ---> Package systemtap-runtime.x86_64 0:4.5-1.amzn2.0.1 will be installed --> Processing Dependency: libboost_system.so.1.53.0()(64bit) for package: systemtap-runtime-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: libdyninstAPI.so.9.3()(64bit) for package: systemtap-runtime-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: libjson-c.so.2()(64bit) for package: systemtap-runtime-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: libsymtabAPI.so.9.3()(64bit) for package: systemtap-runtime-4.5-1.amzn2.0.1.x86_64 --> Running transaction check ---> Package boost-system.x86_64 0:1.53.0-27.amzn2.0.5 will be installed ---> Package dyninst.x86_64 0:9.3.1-3.amzn2 will be installed --> Processing Dependency: libboost_date_time-mt.so.1.53.0()(64bit) for package: dyninst-9.3.1-3.amzn2.x86_64 --> Processing Dependency: libboost_thread-mt.so.1.53.0()(64bit) for package: dyninst-9.3.1-3.amzn2.x86_64 --> Processing Dependency: libdwarf.so.0()(64bit) for package: dyninst-9.3.1-3.amzn2.x86_64 ---> Package efivar-libs.x86_64 0:31-4.amzn2.0.4 will be installed ---> Package elfutils-libelf-devel.x86_64 0:0.176-2.amzn2.0.2 will be installed --> Processing Dependency: pkgconfig(zlib) for package: elfutils-libelf-devel-0.176-2.amzn2.0.2.x86_64 ---> Package hardlink.x86_64 1:1.3-3.amzn2 will be installed ---> Package json-c.x86_64 0:0.11-4.amzn2.0.4 will be installed ---> Package libmodman.x86_64 0:2.0.1-8.amzn2.0.2 will be installed ---> Package nettle.x86_64 0:2.7.1-9.amzn2 will be installed ---> Package trousers.x86_64 0:0.3.14-2.amzn2.0.2 will be installed --> Running transaction check ---> Package boost-date-time.x86_64 0:1.53.0-27.amzn2.0.5 will be installed ---> Package boost-thread.x86_64 0:1.53.0-27.amzn2.0.5 will be installed ---> Package libdwarf.x86_64 0:20130207-4.amzn2.0.2 will be installed ---> Package zlib-devel.x86_64 0:1.2.7-19.amzn2.0.3 will be installed --> Processing Dependency: zlib = 1.2.7-19.amzn2.0.3 for package: zlib-devel-1.2.7-19.amzn2.0.3.x86_64 --> Running transaction check ---> Package zlib.x86_64 0:1.2.7-19.amzn2.0.2 will be updated ---> Package zlib.x86_64 0:1.2.7-19.amzn2.0.3 will be an update --> Finished Dependency Resolution Dependencies Resolved ================================================================================ Package Arch Version Repository Size ================================================================================ Installing for group install "Development Tools": autoconf noarch 2.69-11.amzn2 amzn2-core 701 k automake noarch 1.13.4-3.1.amzn2 amzn2-core 679 k bison x86_64 3.0.4-6.amzn2.0.2 amzn2-core 674 k byacc x86_64 1.9.20130304-3.amzn2.0.2 amzn2-core 66 k cscope x86_64 15.8-10.amzn2.0.2 amzn2-core 204 k ctags x86_64 5.8-13.amzn2.0.2 amzn2-core 157 k diffstat x86_64 1.57-4.amzn2.0.2 amzn2-core 35 k doxygen x86_64 1:1.8.5-4.amzn2 amzn2-core 3.5 M elfutils x86_64 0.176-2.amzn2.0.2 amzn2-core 303 k flex x86_64 2.5.37-3.amzn2.0.3 amzn2-core 291 k gcc-gfortran x86_64 7.3.1-17.amzn2 amzn2-core 11 M gettext x86_64 0.19.8.1-3.amzn2 amzn2-core 1.0 M indent x86_64 2.2.11-13.amzn2.0.2 amzn2-core 150 k intltool noarch 0.50.2-7.amzn2 amzn2-core 59 k libtool x86_64 2.4.2-22.2.amzn2.0.2 amzn2-core 588 k make x86_64 1:3.82-24.amzn2 amzn2-core 420 k patch x86_64 2.7.1-12.amzn2.0.2 amzn2-core 110 k patchutils x86_64 0.3.3-4.amzn2.0.1 amzn2-core 104 k pkgconfig x86_64 1:0.27.1-4.amzn2.0.2 amzn2-core 54 k rcs x86_64 5.9.0-5.amzn2.0.2 amzn2-core 231 k rpm-build x86_64 4.11.3-48.amzn2.0.3 amzn2-core 150 k rpm-sign x86_64 4.11.3-48.amzn2.0.3 amzn2-core 50 k subversion x86_64 1.7.14-16.amzn2.0.1 amzn2-core 1.0 M swig x86_64 3.0.12-11.amzn2.0.3 amzn2-core 1.4 M system-rpm-config noarch 9.1.0-76.amzn2.0.14 amzn2-core 90 k systemtap x86_64 4.5-1.amzn2.0.1 amzn2-core 12 k Installing for dependencies: apr x86_64 1.7.2-1.amzn2 amzn2-core 130 k apr-util x86_64 1.6.3-1.amzn2.0.1 amzn2-core 101 k apr-util-bdb x86_64 1.6.3-1.amzn2.0.1 amzn2-core 22 k avahi-libs x86_64 0.6.31-20.amzn2.0.2 amzn2-core 61 k boost-date-time x86_64 1.53.0-27.amzn2.0.5 amzn2-core 52 k boost-system x86_64 1.53.0-27.amzn2.0.5 amzn2-core 40 k boost-thread x86_64 1.53.0-27.amzn2.0.5 amzn2-core 73 k bzip2 x86_64 1.0.6-13.amzn2.0.3 amzn2-core 52 k dwz x86_64 0.11-3.amzn2.0.3 amzn2-core 98 k dyninst x86_64 9.3.1-3.amzn2 amzn2-core 3.5 M efivar-libs x86_64 31-4.amzn2.0.4 amzn2-core 68 k elfutils-libelf-devel x86_64 0.176-2.amzn2.0.2 amzn2-core 40 k emacs-filesystem noarch 1:27.2-4.amzn2.0.4 amzn2-core 68 k file x86_64 5.11-36.amzn2.0.1 amzn2-core 57 k gdb x86_64 8.0.1-36.amzn2.0.1 amzn2-core 3.1 M gettext-common-devel noarch 0.19.8.1-3.amzn2 amzn2-core 410 k gettext-devel x86_64 0.19.8.1-3.amzn2 amzn2-core 320 k gettext-libs x86_64 0.19.8.1-3.amzn2 amzn2-core 500 k gnutls x86_64 3.3.29-9.amzn2.0.1 amzn2-core 661 k go-srpm-macros noarch 3.0.15-23.amzn2.0.2 amzn2-core 23 k hardlink x86_64 1:1.3-3.amzn2 amzn2-core 23 k json-c x86_64 0.11-4.amzn2.0.4 amzn2-core 30 k kernel-devel x86_64 4.14.327-246.539.amzn2 amzn2-core 13 M libcroco x86_64 0.6.12-6.amzn2 amzn2-core 103 k libdwarf x86_64 20130207-4.amzn2.0.2 amzn2-core 111 k libgfortran x86_64 7.3.1-17.amzn2 amzn2-core 536 k libmodman x86_64 2.0.1-8.amzn2.0.2 amzn2-core 29 k libproxy x86_64 0.4.11-10.amzn2.0.3 amzn2-core 61 k m4 x86_64 1.4.16-10.amzn2.0.2 amzn2-core 256 k mokutil x86_64 1:0.3.0-10.amzn2.0.1 amzn2-core 39 k neon x86_64 0.30.0-3.amzn2.0.2 amzn2-core 166 k nettle x86_64 2.7.1-9.amzn2 amzn2-core 327 k pakchois x86_64 0.4-10.amzn2.0.2 amzn2-core 14 k perl-Data-Dumper x86_64 2.145-3.amzn2.0.2 amzn2-core 48 k perl-Test-Harness noarch 3.28-3.amzn2 amzn2-core 302 k perl-Thread-Queue noarch 3.02-2.amzn2 amzn2-core 17 k perl-XML-Parser x86_64 2.41-10.amzn2.0.2 amzn2-core 223 k perl-srpm-macros noarch 1-8.amzn2.0.1 amzn2-core 4.7 k subversion-libs x86_64 1.7.14-16.amzn2.0.1 amzn2-core 912 k systemd-sysv x86_64 219-78.amzn2.0.22 amzn2-core 98 k systemtap-client x86_64 4.5-1.amzn2.0.1 amzn2-core 3.7 M systemtap-devel x86_64 4.5-1.amzn2.0.1 amzn2-core 2.3 M systemtap-runtime x86_64 4.5-1.amzn2.0.1 amzn2-core 475 k trousers x86_64 0.3.14-2.amzn2.0.2 amzn2-core 294 k unzip x86_64 6.0-57.amzn2.0.1 amzn2-core 182 k xz x86_64 5.2.2-1.amzn2.0.3 amzn2-core 228 k zip x86_64 3.0-11.amzn2.0.2 amzn2-core 263 k zlib-devel x86_64 1.2.7-19.amzn2.0.3 amzn2-core 51 k Updating for dependencies: zlib x86_64 1.2.7-19.amzn2.0.3 amzn2-core 90 k Transaction Summary ================================================================================ Install 26 Packages (+48 Dependent packages) Upgrade ( 1 Dependent package) Total download size: 55 M Downloading packages: Delta RPMs disabled because /usr/bin/applydeltarpm not installed. -------------------------------------------------------------------------------- Total 11 MB/s | 55 MB 00:05 Running transaction check Running transaction test Transaction test succeeded Running transaction Updating : zlib-1.2.7-19.amzn2.0.3.x86_64 1/76 Installing : m4-1.4.16-10.amzn2.0.2.x86_64 2/76 Installing : 1:pkgconfig-0.27.1-4.amzn2.0.2.x86_64 3/76 Installing : boost-system-1.53.0-27.amzn2.0.5.x86_64 4/76 Installing : apr-1.7.2-1.amzn2.x86_64 5/76 Installing : apr-util-bdb-1.6.3-1.amzn2.0.1.x86_64 6/76 Installing : apr-util-1.6.3-1.amzn2.0.1.x86_64 7/76 Installing : zip-3.0-11.amzn2.0.2.x86_64 8/76 Installing : avahi-libs-0.6.31-20.amzn2.0.2.x86_64 9/76 Installing : xz-5.2.2-1.amzn2.0.3.x86_64 10/76 Installing : unzip-6.0-57.amzn2.0.1.x86_64 11/76 Installing : libcroco-0.6.12-6.amzn2.x86_64 12/76 Installing : gettext-libs-0.19.8.1-3.amzn2.x86_64 13/76 Installing : patch-2.7.1-12.amzn2.0.2.x86_64 14/76 Installing : perl-Thread-Queue-3.02-2.amzn2.noarch 15/76 Installing : gettext-0.19.8.1-3.amzn2.x86_64 16/76 Installing : boost-thread-1.53.0-27.amzn2.0.5.x86_64 17/76 Installing : zlib-devel-1.2.7-19.amzn2.0.3.x86_64 18/76 Installing : elfutils-libelf-devel-0.176-2.amzn2.0.2.x86_64 19/76 Installing : gdb-8.0.1-36.amzn2.0.1.x86_64 20/76 Installing : file-5.11-36.amzn2.0.1.x86_64 21/76 Installing : libmodman-2.0.1-8.amzn2.0.2.x86_64 22/76 Installing : libproxy-0.4.11-10.amzn2.0.3.x86_64 23/76 Installing : perl-XML-Parser-2.41-10.amzn2.0.2.x86_64 24/76 Installing : bzip2-1.0.6-13.amzn2.0.3.x86_64 25/76 Installing : gettext-common-devel-0.19.8.1-3.amzn2.noarch 26/76 Installing : gettext-devel-0.19.8.1-3.amzn2.x86_64 27/76 Installing : dwz-0.11-3.amzn2.0.3.x86_64 28/76 Installing : systemd-sysv-219-78.amzn2.0.22.x86_64 29/76 Installing : 1:make-3.82-24.amzn2.x86_64 30/76 Installing : elfutils-0.176-2.amzn2.0.2.x86_64 31/76 Installing : 1:emacs-filesystem-27.2-4.amzn2.0.4.noarch 32/76 Installing : efivar-libs-31-4.amzn2.0.4.x86_64 33/76 Installing : 1:mokutil-0.3.0-10.amzn2.0.1.x86_64 34/76 Installing : perl-srpm-macros-1-8.amzn2.0.1.noarch 35/76 Installing : go-srpm-macros-3.0.15-23.amzn2.0.2.noarch 36/76 Installing : system-rpm-config-9.1.0-76.amzn2.0.14.noarch 37/76 Installing : perl-Data-Dumper-2.145-3.amzn2.0.2.x86_64 38/76 Installing : autoconf-2.69-11.amzn2.noarch 39/76 Installing : trousers-0.3.14-2.amzn2.0.2.x86_64 40/76 Installing : json-c-0.11-4.amzn2.0.4.x86_64 41/76 Installing : perl-Test-Harness-3.28-3.amzn2.noarch 42/76 Installing : automake-1.13.4-3.1.amzn2.noarch 43/76 Installing : libgfortran-7.3.1-17.amzn2.x86_64 44/76 Installing : libdwarf-20130207-4.amzn2.0.2.x86_64 45/76 Installing : pakchois-0.4-10.amzn2.0.2.x86_64 46/76 Installing : nettle-2.7.1-9.amzn2.x86_64 47/76 Installing : gnutls-3.3.29-9.amzn2.0.1.x86_64 48/76 Installing : neon-0.30.0-3.amzn2.0.2.x86_64 49/76 Installing : subversion-libs-1.7.14-16.amzn2.0.1.x86_64 50/76 Installing : 1:hardlink-1.3-3.amzn2.x86_64 51/76 Installing : kernel-devel-4.14.327-246.539.amzn2.x86_64 52/76 Installing : systemtap-devel-4.5-1.amzn2.0.1.x86_64 53/76 Installing : boost-date-time-1.53.0-27.amzn2.0.5.x86_64 54/76 Installing : dyninst-9.3.1-3.amzn2.x86_64 55/76 Installing : systemtap-runtime-4.5-1.amzn2.0.1.x86_64 56/76 Installing : systemtap-client-4.5-1.amzn2.0.1.x86_64 57/76 Installing : systemtap-4.5-1.amzn2.0.1.x86_64 58/76 Installing : subversion-1.7.14-16.amzn2.0.1.x86_64 59/76 Installing : gcc-gfortran-7.3.1-17.amzn2.x86_64 60/76 Installing : intltool-0.50.2-7.amzn2.noarch 61/76 Installing : libtool-2.4.2-22.2.amzn2.0.2.x86_64 62/76 Installing : rpm-build-4.11.3-48.amzn2.0.3.x86_64 63/76 Installing : cscope-15.8-10.amzn2.0.2.x86_64 64/76 Installing : flex-2.5.37-3.amzn2.0.3.x86_64 65/76 Installing : bison-3.0.4-6.amzn2.0.2.x86_64 66/76 Installing : rpm-sign-4.11.3-48.amzn2.0.3.x86_64 67/76 Installing : patchutils-0.3.3-4.amzn2.0.1.x86_64 68/76 Installing : rcs-5.9.0-5.amzn2.0.2.x86_64 69/76 Installing : indent-2.2.11-13.amzn2.0.2.x86_64 70/76 Installing : 1:doxygen-1.8.5-4.amzn2.x86_64 71/76 Installing : diffstat-1.57-4.amzn2.0.2.x86_64 72/76 Installing : byacc-1.9.20130304-3.amzn2.0.2.x86_64 73/76 Installing : swig-3.0.12-11.amzn2.0.3.x86_64 74/76 Installing : ctags-5.8-13.amzn2.0.2.x86_64 75/76 Cleanup : zlib-1.2.7-19.amzn2.0.2.x86_64 76/76 Verifying : zlib-1.2.7-19.amzn2.0.3.x86_64 1/76 Verifying : perl-Thread-Queue-3.02-2.amzn2.noarch 2/76 Verifying : gettext-devel-0.19.8.1-3.amzn2.x86_64 3/76 Verifying : patch-2.7.1-12.amzn2.0.2.x86_64 4/76 Verifying : boost-date-time-1.53.0-27.amzn2.0.5.x86_64 5/76 Verifying : flex-2.5.37-3.amzn2.0.3.x86_64 6/76 Verifying : apr-1.7.2-1.amzn2.x86_64 7/76 Verifying : 1:hardlink-1.3-3.amzn2.x86_64 8/76 Verifying : nettle-2.7.1-9.amzn2.x86_64 9/76 Verifying : gcc-gfortran-7.3.1-17.amzn2.x86_64 10/76 Verifying : ctags-5.8-13.amzn2.0.2.x86_64 11/76 Verifying : swig-3.0.12-11.amzn2.0.3.x86_64 12/76 Verifying : byacc-1.9.20130304-3.amzn2.0.2.x86_64 13/76 Verifying : libcroco-0.6.12-6.amzn2.x86_64 14/76 Verifying : pakchois-0.4-10.amzn2.0.2.x86_64 15/76 Verifying : libdwarf-20130207-4.amzn2.0.2.x86_64 16/76 Verifying : kernel-devel-4.14.327-246.539.amzn2.x86_64 17/76 Verifying : dyninst-9.3.1-3.amzn2.x86_64 18/76 Verifying : gettext-libs-0.19.8.1-3.amzn2.x86_64 19/76 Verifying : cscope-15.8-10.amzn2.0.2.x86_64 20/76 Verifying : unzip-6.0-57.amzn2.0.1.x86_64 21/76 Verifying : diffstat-1.57-4.amzn2.0.2.x86_64 22/76 Verifying : 1:doxygen-1.8.5-4.amzn2.x86_64 23/76 Verifying : 1:mokutil-0.3.0-10.amzn2.0.1.x86_64 24/76 Verifying : system-rpm-config-9.1.0-76.amzn2.0.14.noarch 25/76 Verifying : systemtap-devel-4.5-1.amzn2.0.1.x86_64 26/76 Verifying : libgfortran-7.3.1-17.amzn2.x86_64 27/76 Verifying : gettext-0.19.8.1-3.amzn2.x86_64 28/76 Verifying : perl-Test-Harness-3.28-3.amzn2.noarch 29/76 Verifying : autoconf-2.69-11.amzn2.noarch 30/76 Verifying : intltool-0.50.2-7.amzn2.noarch 31/76 Verifying : zlib-devel-1.2.7-19.amzn2.0.3.x86_64 32/76 Verifying : apr-util-1.6.3-1.amzn2.0.1.x86_64 33/76 Verifying : libproxy-0.4.11-10.amzn2.0.3.x86_64 34/76 Verifying : boost-system-1.53.0-27.amzn2.0.5.x86_64 35/76 Verifying : json-c-0.11-4.amzn2.0.4.x86_64 36/76 Verifying : trousers-0.3.14-2.amzn2.0.2.x86_64 37/76 Verifying : xz-5.2.2-1.amzn2.0.3.x86_64 38/76 Verifying : perl-Data-Dumper-2.145-3.amzn2.0.2.x86_64 39/76 Verifying : perl-srpm-macros-1-8.amzn2.0.1.noarch 40/76 Verifying : gnutls-3.3.29-9.amzn2.0.1.x86_64 41/76 Verifying : subversion-libs-1.7.14-16.amzn2.0.1.x86_64 42/76 Verifying : automake-1.13.4-3.1.amzn2.noarch 43/76 Verifying : rpm-sign-4.11.3-48.amzn2.0.3.x86_64 44/76 Verifying : bison-3.0.4-6.amzn2.0.2.x86_64 45/76 Verifying : efivar-libs-31-4.amzn2.0.4.x86_64 46/76 Verifying : 1:pkgconfig-0.27.1-4.amzn2.0.2.x86_64 47/76 Verifying : 1:emacs-filesystem-27.2-4.amzn2.0.4.noarch 48/76 Verifying : gdb-8.0.1-36.amzn2.0.1.x86_64 49/76 Verifying : elfutils-0.176-2.amzn2.0.2.x86_64 50/76 Verifying : go-srpm-macros-3.0.15-23.amzn2.0.2.noarch 51/76 Verifying : libtool-2.4.2-22.2.amzn2.0.2.x86_64 52/76 Verifying : indent-2.2.11-13.amzn2.0.2.x86_64 53/76 Verifying : subversion-1.7.14-16.amzn2.0.1.x86_64 54/76 Verifying : 1:make-3.82-24.amzn2.x86_64 55/76 Verifying : avahi-libs-0.6.31-20.amzn2.0.2.x86_64 56/76 Verifying : systemd-sysv-219-78.amzn2.0.22.x86_64 57/76 Verifying : apr-util-bdb-1.6.3-1.amzn2.0.1.x86_64 58/76 Verifying : neon-0.30.0-3.amzn2.0.2.x86_64 59/76 Verifying : systemtap-4.5-1.amzn2.0.1.x86_64 60/76 Verifying : dwz-0.11-3.amzn2.0.3.x86_64 61/76 Verifying : gettext-common-devel-0.19.8.1-3.amzn2.noarch 62/76 Verifying : systemtap-client-4.5-1.amzn2.0.1.x86_64 63/76 Verifying : zip-3.0-11.amzn2.0.2.x86_64 64/76 Verifying : bzip2-1.0.6-13.amzn2.0.3.x86_64 65/76 Verifying : rcs-5.9.0-5.amzn2.0.2.x86_64 66/76 Verifying : boost-thread-1.53.0-27.amzn2.0.5.x86_64 67/76 Verifying : file-5.11-36.amzn2.0.1.x86_64 68/76 Verifying : rpm-build-4.11.3-48.amzn2.0.3.x86_64 69/76 Verifying : patchutils-0.3.3-4.amzn2.0.1.x86_64 70/76 Verifying : systemtap-runtime-4.5-1.amzn2.0.1.x86_64 71/76 Verifying : elfutils-libelf-devel-0.176-2.amzn2.0.2.x86_64 72/76 Verifying : m4-1.4.16-10.amzn2.0.2.x86_64 73/76 Verifying : perl-XML-Parser-2.41-10.amzn2.0.2.x86_64 74/76 Verifying : libmodman-2.0.1-8.amzn2.0.2.x86_64 75/76 Verifying : zlib-1.2.7-19.amzn2.0.2.x86_64 76/76 Installed: autoconf.noarch 0:2.69-11.amzn2 automake.noarch 0:1.13.4-3.1.amzn2 bison.x86_64 0:3.0.4-6.amzn2.0.2 byacc.x86_64 0:1.9.20130304-3.amzn2.0.2 cscope.x86_64 0:15.8-10.amzn2.0.2 ctags.x86_64 0:5.8-13.amzn2.0.2 diffstat.x86_64 0:1.57-4.amzn2.0.2 doxygen.x86_64 1:1.8.5-4.amzn2 elfutils.x86_64 0:0.176-2.amzn2.0.2 flex.x86_64 0:2.5.37-3.amzn2.0.3 gcc-gfortran.x86_64 0:7.3.1-17.amzn2 gettext.x86_64 0:0.19.8.1-3.amzn2 indent.x86_64 0:2.2.11-13.amzn2.0.2 intltool.noarch 0:0.50.2-7.amzn2 libtool.x86_64 0:2.4.2-22.2.amzn2.0.2 make.x86_64 1:3.82-24.amzn2 patch.x86_64 0:2.7.1-12.amzn2.0.2 patchutils.x86_64 0:0.3.3-4.amzn2.0.1 pkgconfig.x86_64 1:0.27.1-4.amzn2.0.2 rcs.x86_64 0:5.9.0-5.amzn2.0.2 rpm-build.x86_64 0:4.11.3-48.amzn2.0.3 rpm-sign.x86_64 0:4.11.3-48.amzn2.0.3 subversion.x86_64 0:1.7.14-16.amzn2.0.1 swig.x86_64 0:3.0.12-11.amzn2.0.3 system-rpm-config.noarch 0:9.1.0-76.amzn2.0.14 systemtap.x86_64 0:4.5-1.amzn2.0.1 Dependency Installed: apr.x86_64 0:1.7.2-1.amzn2 apr-util.x86_64 0:1.6.3-1.amzn2.0.1 apr-util-bdb.x86_64 0:1.6.3-1.amzn2.0.1 avahi-libs.x86_64 0:0.6.31-20.amzn2.0.2 boost-date-time.x86_64 0:1.53.0-27.amzn2.0.5 boost-system.x86_64 0:1.53.0-27.amzn2.0.5 boost-thread.x86_64 0:1.53.0-27.amzn2.0.5 bzip2.x86_64 0:1.0.6-13.amzn2.0.3 dwz.x86_64 0:0.11-3.amzn2.0.3 dyninst.x86_64 0:9.3.1-3.amzn2 efivar-libs.x86_64 0:31-4.amzn2.0.4 elfutils-libelf-devel.x86_64 0:0.176-2.amzn2.0.2 emacs-filesystem.noarch 1:27.2-4.amzn2.0.4 file.x86_64 0:5.11-36.amzn2.0.1 gdb.x86_64 0:8.0.1-36.amzn2.0.1 gettext-common-devel.noarch 0:0.19.8.1-3.amzn2 gettext-devel.x86_64 0:0.19.8.1-3.amzn2 gettext-libs.x86_64 0:0.19.8.1-3.amzn2 gnutls.x86_64 0:3.3.29-9.amzn2.0.1 go-srpm-macros.noarch 0:3.0.15-23.amzn2.0.2 hardlink.x86_64 1:1.3-3.amzn2 json-c.x86_64 0:0.11-4.amzn2.0.4 kernel-devel.x86_64 0:4.14.327-246.539.amzn2 libcroco.x86_64 0:0.6.12-6.amzn2 libdwarf.x86_64 0:20130207-4.amzn2.0.2 libgfortran.x86_64 0:7.3.1-17.amzn2 libmodman.x86_64 0:2.0.1-8.amzn2.0.2 libproxy.x86_64 0:0.4.11-10.amzn2.0.3 m4.x86_64 0:1.4.16-10.amzn2.0.2 mokutil.x86_64 1:0.3.0-10.amzn2.0.1 neon.x86_64 0:0.30.0-3.amzn2.0.2 nettle.x86_64 0:2.7.1-9.amzn2 pakchois.x86_64 0:0.4-10.amzn2.0.2 perl-Data-Dumper.x86_64 0:2.145-3.amzn2.0.2 perl-Test-Harness.noarch 0:3.28-3.amzn2 perl-Thread-Queue.noarch 0:3.02-2.amzn2 perl-XML-Parser.x86_64 0:2.41-10.amzn2.0.2 perl-srpm-macros.noarch 0:1-8.amzn2.0.1 subversion-libs.x86_64 0:1.7.14-16.amzn2.0.1 systemd-sysv.x86_64 0:219-78.amzn2.0.22 systemtap-client.x86_64 0:4.5-1.amzn2.0.1 systemtap-devel.x86_64 0:4.5-1.amzn2.0.1 systemtap-runtime.x86_64 0:4.5-1.amzn2.0.1 trousers.x86_64 0:0.3.14-2.amzn2.0.2 unzip.x86_64 0:6.0-57.amzn2.0.1 xz.x86_64 0:5.2.2-1.amzn2.0.3 zip.x86_64 0:3.0-11.amzn2.0.2 zlib-devel.x86_64 0:1.2.7-19.amzn2.0.3 Dependency Updated: zlib.x86_64 0:1.2.7-19.amzn2.0.3 Complete!% ```
ashvardanian commented 1 year ago

Your macro isn't being passed. Try changing it in the bindings.gyp here.

jlarmstrongiv commented 1 year ago

@ashvardanian is there a way to do that with a flag or environment variable? It builds right away, so there’s not really a gap between the npm install usearch@2.8.6 and the error

Would you recommend forking the repo to change that value?

jlarmstrongiv commented 1 year ago

@ashvardanian I forked and changed that value, but still have an error

Error logs ``` Command failed with exit code 1: docker run --entrypoint /bin/bash -v /var/folders/zf/2l3hc6vn12v7r89t45mhxzhm0000gn/T/018bb154-492e-7d03-822c-ee9619453db7:/var/task -e SHARP_IGNORE_GLOBAL_LIBVIPS=1 -e SIMSIMD_TARGET_X86_AVX512=0 --rm public.ecr.aws/lambda/nodejs:18-x86_64 -c npm install -g npm@10.2.3 && yum install tar git python3 cmake gcc-c++ -y && yum groupinstall "Development Tools" -y && npm install --build-from-source jlarmstrongiv/usearch There is no installed groups file. Maybe run: yum groups mark convert (see man yum) npm ERR! code 1 npm ERR! path /var/task/node_modules/usearch npm ERR! command failed npm ERR! command sh -c node-gyp rebuild npm ERR! make: Entering directory `/var/task/node_modules/usearch/build' npm ERR! CC(target) Release/obj.target/nothing/../node-addon-api/nothing.o npm ERR! rm -f Release/obj.target/../node-addon-api/nothing.a Release/obj.target/../node-addon-api/nothing.a.ar-file-list; mkdir -p `dirname Release/obj.target/../node-addon-api/nothing.a` npm ERR! ar crs Release/obj.target/../node-addon-api/nothing.a @Release/obj.target/../node-addon-api/nothing.a.ar-file-list npm ERR! COPY Release/nothing.a npm ERR! CXX(target) Release/obj.target/usearch/javascript/lib.o npm ERR! make: Leaving directory `/var/task/node_modules/usearch/build' npm ERR! gyp info it worked if it ends with ok npm ERR! gyp info using node-gyp@10.0.1 npm ERR! gyp info using node@18.18.2 | linux | x64 npm ERR! gyp info find Python using Python version 3.7.16 found at "/usr/bin/python3" npm ERR! gyp http GET https://nodejs.org/download/release/v18.18.2/node-v18.18.2-headers.tar.gz npm ERR! gyp http 200 https://nodejs.org/download/release/v18.18.2/node-v18.18.2-headers.tar.gz npm ERR! gyp http GET https://nodejs.org/download/release/v18.18.2/SHASUMS256.txt npm ERR! gyp http 200 https://nodejs.org/download/release/v18.18.2/SHASUMS256.txt npm ERR! gyp info spawn /usr/bin/python3 npm ERR! gyp info spawn args [ npm ERR! gyp info spawn args '/var/lang/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py', npm ERR! gyp info spawn args 'binding.gyp', npm ERR! gyp info spawn args '-f', npm ERR! gyp info spawn args 'make', npm ERR! gyp info spawn args '-I', npm ERR! gyp info spawn args '/var/task/node_modules/usearch/build/config.gypi', npm ERR! gyp info spawn args '-I', npm ERR! gyp info spawn args '/var/lang/lib/node_modules/npm/node_modules/node-gyp/addon.gypi', npm ERR! gyp info spawn args '-I', npm ERR! gyp info spawn args '/root/.cache/node-gyp/18.18.2/include/node/common.gypi', npm ERR! gyp info spawn args '-Dlibrary=shared_library', npm ERR! gyp info spawn args '-Dvisibility=default', npm ERR! gyp info spawn args '-Dnode_root_dir=/root/.cache/node-gyp/18.18.2', npm ERR! gyp info spawn args '-Dnode_gyp_dir=/var/lang/lib/node_modules/npm/node_modules/node-gyp', npm ERR! gyp info spawn args '-Dnode_lib_file=/root/.cache/node-gyp/18.18.2/<(target_arch)/node.lib', npm ERR! gyp info spawn args '-Dmodule_root_dir=/var/task/node_modules/usearch', npm ERR! gyp info spawn args '-Dnode_engine=v8', npm ERR! gyp info spawn args '--depth=.', npm ERR! gyp info spawn args '--no-parallel', npm ERR! gyp info spawn args '--generator-output', npm ERR! gyp info spawn args 'build', npm ERR! gyp info spawn args '-Goutput_dir=.' npm ERR! gyp info spawn args ] npm ERR! gyp info spawn make npm ERR! gyp info spawn args [ 'BUILDTYPE=Release', '-C', 'build' ] npm ERR! In file included from ../include/usearch/index_dense.hpp:10:0, npm ERR! from ../javascript/lib.cpp:18: npm ERR! ../include/usearch/index_plugins.hpp:36:10: fatal error: fp16/fp16.h: No such file or directory npm ERR! #include npm ERR! ^~~~~~~~~~~~~ npm ERR! compilation terminated. npm ERR! make: *** [Release/obj.target/usearch/javascript/lib.o] Error 1 npm ERR! gyp ERR! build error npm ERR! gyp ERR! stack Error: `make` failed with exit code: 2 npm ERR! gyp ERR! stack at ChildProcess. (/var/lang/lib/node_modules/npm/node_modules/node-gyp/lib/build.js:209:23) npm ERR! gyp ERR! System Linux 6.4.16-linuxkit npm ERR! gyp ERR! command "/var/lang/bin/node" "/var/lang/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild" npm ERR! gyp ERR! cwd /var/task/node_modules/usearch npm ERR! gyp ERR! node -v v18.18.2 npm ERR! gyp ERR! node-gyp -v v10.0.1 npm ERR! gyp ERR! not ok npm ERR! A complete log of this run can be found in: /root/.npm/_logs/2023-11-08T23_47_26_144Z-debug-0.log removed 31 packages, and changed 65 packages in 6s 26 packages are looking for funding run `npm fund` for details Loaded plugins: ovl Resolving Dependencies --> Running transaction check ---> Package cmake.x86_64 0:2.8.12.2-2.amzn2.0.2 will be installed --> Processing Dependency: libarchive.so.13()(64bit) for package: cmake-2.8.12.2-2.amzn2.0.2.x86_64 ---> Package gcc-c++.x86_64 0:7.3.1-17.amzn2 will be installed --> Processing Dependency: gcc(x86-64) = 7.3.1-17.amzn2 for package: gcc-c++-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libmpc.so.3()(64bit) for package: gcc-c++-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libmpfr.so.4()(64bit) for package: gcc-c++-7.3.1-17.amzn2.x86_64 ---> Package git.x86_64 0:2.40.1-1.amzn2.0.1 will be installed --> Processing Dependency: git-core = 2.40.1-1.amzn2.0.1 for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: git-core-doc = 2.40.1-1.amzn2.0.1 for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl-Git = 2.40.1-1.amzn2.0.1 for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl >= 5.008 for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: /usr/bin/perl for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(File::Basename) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(File::Find) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(File::Spec) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(Getopt::Long) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(Git) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(IPC::Open2) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(Term::ReadKey) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(lib) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(strict) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(warnings) for package: git-2.40.1-1.amzn2.0.1.x86_64 ---> Package python3.x86_64 0:3.7.16-1.amzn2.0.4 will be installed --> Processing Dependency: python3-libs(x86-64) = 3.7.16-1.amzn2.0.4 for package: python3-3.7.16-1.amzn2.0.4.x86_64 --> Processing Dependency: python3-pip for package: python3-3.7.16-1.amzn2.0.4.x86_64 --> Processing Dependency: python3-setuptools for package: python3-3.7.16-1.amzn2.0.4.x86_64 --> Processing Dependency: libpython3.7m.so.1.0()(64bit) for package: python3-3.7.16-1.amzn2.0.4.x86_64 ---> Package tar.x86_64 2:1.26-35.amzn2.0.2 will be installed --> Running transaction check ---> Package gcc.x86_64 0:7.3.1-17.amzn2 will be installed --> Processing Dependency: cpp = 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libgomp = 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: binutils >= 2.24 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: glibc-devel >= 2.2.90-12 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libatomic >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libcilkrts >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libitm >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libmpx >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libquadmath >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libsanitizer >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libgomp.so.1()(64bit) for package: gcc-7.3.1-17.amzn2.x86_64 ---> Package git-core.x86_64 0:2.40.1-1.amzn2.0.1 will be installed --> Processing Dependency: less for package: git-core-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: openssh-clients for package: git-core-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: libpcre2-8.so.0()(64bit) for package: git-core-2.40.1-1.amzn2.0.1.x86_64 ---> Package git-core-doc.noarch 0:2.40.1-1.amzn2.0.1 will be installed ---> Package libarchive.x86_64 0:3.1.2-14.amzn2.0.1 will be installed --> Processing Dependency: liblzo2.so.2()(64bit) for package: libarchive-3.1.2-14.amzn2.0.1.x86_64 ---> Package libmpc.x86_64 0:1.0.1-3.amzn2.0.2 will be installed ---> Package mpfr.x86_64 0:3.1.1-4.amzn2.0.2 will be installed ---> Package perl.x86_64 4:5.16.3-299.amzn2.0.2 will be installed --> Processing Dependency: perl-libs = 4:5.16.3-299.amzn2.0.2 for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Scalar::Util) >= 1.10 for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Socket) >= 1.3 for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Carp) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Exporter) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(File::Path) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(File::Temp) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Filter::Util::Call) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Pod::Simple::Search) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Pod::Simple::XHTML) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Scalar::Util) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Socket) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Storable) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Time::HiRes) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Time::Local) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(constant) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(threads) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(threads::shared) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl-libs for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl-macros for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: libperl.so()(64bit) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 ---> Package perl-Getopt-Long.noarch 0:2.40-3.amzn2 will be installed --> Processing Dependency: perl(Pod::Usage) >= 1.14 for package: perl-Getopt-Long-2.40-3.amzn2.noarch --> Processing Dependency: perl(Text::ParseWords) for package: perl-Getopt-Long-2.40-3.amzn2.noarch ---> Package perl-Git.noarch 0:2.40.1-1.amzn2.0.1 will be installed --> Processing Dependency: perl(Error) for package: perl-Git-2.40.1-1.amzn2.0.1.noarch ---> Package perl-PathTools.x86_64 0:3.40-5.amzn2.0.2 will be installed ---> Package perl-TermReadKey.x86_64 0:2.30-20.amzn2.0.2 will be installed ---> Package python3-libs.x86_64 0:3.7.16-1.amzn2.0.4 will be installed --> Processing Dependency: libtirpc.so.1()(64bit) for package: python3-libs-3.7.16-1.amzn2.0.4.x86_64 ---> Package python3-pip.noarch 0:20.2.2-1.amzn2.0.4 will be installed ---> Package python3-setuptools.noarch 0:49.1.3-1.amzn2.0.3 will be installed --> Running transaction check ---> Package binutils.x86_64 0:2.29.1-31.amzn2 will be installed ---> Package cpp.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package glibc-devel.x86_64 0:2.26-63.amzn2.0.1 will be installed --> Processing Dependency: glibc-headers = 2.26-63.amzn2.0.1 for package: glibc-devel-2.26-63.amzn2.0.1.x86_64 --> Processing Dependency: glibc-headers for package: glibc-devel-2.26-63.amzn2.0.1.x86_64 ---> Package less.x86_64 0:458-9.amzn2.0.2 will be installed --> Processing Dependency: groff-base for package: less-458-9.amzn2.0.2.x86_64 ---> Package libatomic.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libcilkrts.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libgomp.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libitm.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libmpx.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libquadmath.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libsanitizer.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libtirpc.x86_64 0:0.2.4-0.16.amzn2 will be installed ---> Package lzo.x86_64 0:2.06-8.amzn2.0.4 will be installed ---> Package openssh-clients.x86_64 0:7.4p1-22.amzn2.0.5 will be installed --> Processing Dependency: openssh = 7.4p1-22.amzn2.0.5 for package: openssh-clients-7.4p1-22.amzn2.0.5.x86_64 --> Processing Dependency: fipscheck-lib(x86-64) >= 1.3.0 for package: openssh-clients-7.4p1-22.amzn2.0.5.x86_64 --> Processing Dependency: libedit.so.0()(64bit) for package: openssh-clients-7.4p1-22.amzn2.0.5.x86_64 --> Processing Dependency: libfipscheck.so.1()(64bit) for package: openssh-clients-7.4p1-22.amzn2.0.5.x86_64 ---> Package pcre2.x86_64 0:10.23-11.amzn2.0.1 will be installed ---> Package perl-Carp.noarch 0:1.26-244.amzn2 will be installed ---> Package perl-Error.noarch 1:0.17020-2.amzn2 will be installed ---> Package perl-Exporter.noarch 0:5.68-3.amzn2 will be installed ---> Package perl-File-Path.noarch 0:2.09-2.amzn2 will be installed ---> Package perl-File-Temp.noarch 0:0.23.01-3.amzn2 will be installed ---> Package perl-Filter.x86_64 0:1.49-3.amzn2.0.2 will be installed ---> Package perl-Pod-Simple.noarch 1:3.28-4.amzn2 will be installed --> Processing Dependency: perl(Pod::Escapes) >= 1.04 for package: 1:perl-Pod-Simple-3.28-4.amzn2.noarch --> Processing Dependency: perl(Encode) for package: 1:perl-Pod-Simple-3.28-4.amzn2.noarch ---> Package perl-Pod-Usage.noarch 0:1.63-3.amzn2 will be installed --> Processing Dependency: perl(Pod::Text) >= 3.15 for package: perl-Pod-Usage-1.63-3.amzn2.noarch --> Processing Dependency: perl-Pod-Perldoc for package: perl-Pod-Usage-1.63-3.amzn2.noarch ---> Package perl-Scalar-List-Utils.x86_64 0:1.27-248.amzn2.0.2 will be installed ---> Package perl-Socket.x86_64 0:2.010-4.amzn2.0.2 will be installed ---> Package perl-Storable.x86_64 0:2.45-3.amzn2.0.2 will be installed ---> Package perl-Text-ParseWords.noarch 0:3.29-4.amzn2 will be installed ---> Package perl-Time-HiRes.x86_64 4:1.9725-3.amzn2.0.2 will be installed ---> Package perl-Time-Local.noarch 0:1.2300-2.amzn2 will be installed ---> Package perl-constant.noarch 0:1.27-2.amzn2.0.1 will be installed ---> Package perl-libs.x86_64 4:5.16.3-299.amzn2.0.2 will be installed ---> Package perl-macros.x86_64 4:5.16.3-299.amzn2.0.2 will be installed ---> Package perl-threads.x86_64 0:1.87-4.amzn2.0.2 will be installed ---> Package perl-threads-shared.x86_64 0:1.43-6.amzn2.0.2 will be installed --> Running transaction check ---> Package fipscheck-lib.x86_64 0:1.4.1-6.amzn2.0.2 will be installed --> Processing Dependency: /usr/bin/fipscheck for package: fipscheck-lib-1.4.1-6.amzn2.0.2.x86_64 ---> Package glibc-headers.x86_64 0:2.26-63.amzn2.0.1 will be installed --> Processing Dependency: kernel-headers >= 2.2.1 for package: glibc-headers-2.26-63.amzn2.0.1.x86_64 --> Processing Dependency: kernel-headers for package: glibc-headers-2.26-63.amzn2.0.1.x86_64 ---> Package groff-base.x86_64 0:1.22.2-8.amzn2.0.2 will be installed ---> Package libedit.x86_64 0:3.0-12.20121213cvs.amzn2.0.2 will be installed ---> Package openssh.x86_64 0:7.4p1-22.amzn2.0.5 will be installed --> Processing Dependency: audit-libs >= 1.0.8 for package: openssh-7.4p1-22.amzn2.0.5.x86_64 --> Processing Dependency: /sbin/nologin for package: openssh-7.4p1-22.amzn2.0.5.x86_64 ---> Package perl-Encode.x86_64 0:2.51-7.amzn2.0.2 will be installed ---> Package perl-Pod-Escapes.noarch 1:1.04-299.amzn2.0.2 will be installed ---> Package perl-Pod-Perldoc.noarch 0:3.20-4.amzn2.0.1 will be installed --> Processing Dependency: perl(HTTP::Tiny) for package: perl-Pod-Perldoc-3.20-4.amzn2.0.1.noarch --> Processing Dependency: perl(parent) for package: perl-Pod-Perldoc-3.20-4.amzn2.0.1.noarch ---> Package perl-podlators.noarch 0:2.5.1-3.amzn2.0.1 will be installed --> Running transaction check ---> Package audit-libs.x86_64 0:2.8.1-3.amzn2.1 will be installed --> Processing Dependency: libcap-ng.so.0()(64bit) for package: audit-libs-2.8.1-3.amzn2.1.x86_64 ---> Package fipscheck.x86_64 0:1.4.1-6.amzn2.0.2 will be installed ---> Package kernel-headers.x86_64 0:4.14.327-246.539.amzn2 will be installed ---> Package perl-HTTP-Tiny.noarch 0:0.033-3.amzn2.0.1 will be installed ---> Package perl-parent.noarch 1:0.225-244.amzn2.0.1 will be installed ---> Package util-linux.x86_64 0:2.30.2-2.amzn2.0.11 will be installed --> Processing Dependency: libfdisk = 2.30.2-2.amzn2.0.11 for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols = 2.30.2-2.amzn2.0.11 for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: pam >= 1.1.3-7 for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: /etc/pam.d/system-auth for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1(FDISK_2.26)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1(FDISK_2.27)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1(FDISK_2.28)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1(FDISK_2.29)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1(FDISK_2.30)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libpam.so.0(LIBPAM_1.0)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libpam_misc.so.0(LIBPAM_MISC_1.0)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1(SMARTCOLS_2.25)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1(SMARTCOLS_2.27)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1(SMARTCOLS_2.28)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1(SMARTCOLS_2.29)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1(SMARTCOLS_2.30)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsystemd.so.0(LIBSYSTEMD_209)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libudev.so.1(LIBUDEV_183)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libutempter.so.0(UTEMPTER_1.1)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libpam.so.0()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libpam_misc.so.0()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsystemd.so.0()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libudev.so.1()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libutempter.so.0()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Running transaction check ---> Package libcap-ng.x86_64 0:0.7.5-4.amzn2.0.4 will be installed ---> Package libfdisk.x86_64 0:2.30.2-2.amzn2.0.11 will be installed ---> Package libsmartcols.x86_64 0:2.30.2-2.amzn2.0.11 will be installed ---> Package libutempter.x86_64 0:1.1.6-4.amzn2.0.2 will be installed --> Processing Dependency: shadow-utils for package: libutempter-1.1.6-4.amzn2.0.2.x86_64 ---> Package pam.x86_64 0:1.1.8-23.amzn2.0.1 will be installed --> Processing Dependency: cracklib-dicts >= 2.8 for package: pam-1.1.8-23.amzn2.0.1.x86_64 --> Processing Dependency: libpwquality >= 0.9.9 for package: pam-1.1.8-23.amzn2.0.1.x86_64 --> Processing Dependency: libcrack.so.2()(64bit) for package: pam-1.1.8-23.amzn2.0.1.x86_64 ---> Package systemd-libs.x86_64 0:219-78.amzn2.0.22 will be installed --> Processing Dependency: libdw.so.1()(64bit) for package: systemd-libs-219-78.amzn2.0.22.x86_64 --> Processing Dependency: liblz4.so.1()(64bit) for package: systemd-libs-219-78.amzn2.0.22.x86_64 --> Running transaction check ---> Package cracklib.x86_64 0:2.9.0-11.amzn2.0.2 will be installed --> Processing Dependency: gzip for package: cracklib-2.9.0-11.amzn2.0.2.x86_64 ---> Package cracklib-dicts.x86_64 0:2.9.0-11.amzn2.0.2 will be installed ---> Package elfutils-libs.x86_64 0:0.176-2.amzn2.0.2 will be installed --> Processing Dependency: default-yama-scope for package: elfutils-libs-0.176-2.amzn2.0.2.x86_64 ---> Package libpwquality.x86_64 0:1.2.3-5.amzn2 will be installed ---> Package lz4.x86_64 0:1.7.5-2.amzn2.0.1 will be installed ---> Package shadow-utils.x86_64 2:4.1.5.1-24.amzn2.0.3 will be installed --> Processing Dependency: libsemanage.so.1(LIBSEMANAGE_1.0)(64bit) for package: 2:shadow-utils-4.1.5.1-24.amzn2.0.3.x86_64 --> Processing Dependency: libsemanage.so.1()(64bit) for package: 2:shadow-utils-4.1.5.1-24.amzn2.0.3.x86_64 --> Running transaction check ---> Package elfutils-default-yama-scope.noarch 0:0.176-2.amzn2.0.2 will be installed --> Processing Dependency: systemd for package: elfutils-default-yama-scope-0.176-2.amzn2.0.2.noarch --> Processing Dependency: systemd for package: elfutils-default-yama-scope-0.176-2.amzn2.0.2.noarch ---> Package gzip.x86_64 0:1.5-10.amzn2.0.1 will be installed ---> Package libsemanage.x86_64 0:2.5-11.amzn2 will be installed --> Processing Dependency: libustr-1.0.so.1(USTR_1.0)(64bit) for package: libsemanage-2.5-11.amzn2.x86_64 --> Processing Dependency: libustr-1.0.so.1(USTR_1.0.1)(64bit) for package: libsemanage-2.5-11.amzn2.x86_64 --> Processing Dependency: libustr-1.0.so.1()(64bit) for package: libsemanage-2.5-11.amzn2.x86_64 --> Running transaction check ---> Package systemd.x86_64 0:219-78.amzn2.0.22 will be installed --> Processing Dependency: kmod >= 18-4 for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: acl for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: dbus for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: libcryptsetup.so.4(CRYPTSETUP_1.0)(64bit) for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: libkmod.so.2(LIBKMOD_5)(64bit) for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: libcryptsetup.so.4()(64bit) for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: libkmod.so.2()(64bit) for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: libqrencode.so.3()(64bit) for package: systemd-219-78.amzn2.0.22.x86_64 ---> Package ustr.x86_64 0:1.0.4-16.amzn2.0.3 will be installed --> Running transaction check ---> Package acl.x86_64 0:2.2.51-14.amzn2 will be installed ---> Package cryptsetup-libs.x86_64 0:1.7.4-4.amzn2 will be installed --> Processing Dependency: libdevmapper.so.1.02(Base)(64bit) for package: cryptsetup-libs-1.7.4-4.amzn2.x86_64 --> Processing Dependency: libdevmapper.so.1.02(DM_1_02_97)(64bit) for package: cryptsetup-libs-1.7.4-4.amzn2.x86_64 --> Processing Dependency: libdevmapper.so.1.02()(64bit) for package: cryptsetup-libs-1.7.4-4.amzn2.x86_64 ---> Package dbus.x86_64 1:1.10.24-7.amzn2.0.3 will be installed --> Processing Dependency: dbus-libs(x86-64) = 1:1.10.24-7.amzn2.0.3 for package: 1:dbus-1.10.24-7.amzn2.0.3.x86_64 --> Processing Dependency: libdbus-1.so.3(LIBDBUS_1_3)(64bit) for package: 1:dbus-1.10.24-7.amzn2.0.3.x86_64 --> Processing Dependency: libdbus-1.so.3(LIBDBUS_PRIVATE_1.10.24)(64bit) for package: 1:dbus-1.10.24-7.amzn2.0.3.x86_64 --> Processing Dependency: libdbus-1.so.3()(64bit) for package: 1:dbus-1.10.24-7.amzn2.0.3.x86_64 ---> Package kmod.x86_64 0:25-3.amzn2.0.2 will be installed ---> Package kmod-libs.x86_64 0:25-3.amzn2.0.2 will be installed ---> Package qrencode-libs.x86_64 0:3.4.1-3.amzn2.0.2 will be installed --> Running transaction check ---> Package dbus-libs.x86_64 1:1.10.24-7.amzn2.0.3 will be installed ---> Package device-mapper-libs.x86_64 7:1.02.170-6.amzn2.5 will be installed --> Processing Dependency: device-mapper = 7:1.02.170-6.amzn2.5 for package: 7:device-mapper-libs-1.02.170-6.amzn2.5.x86_64 --> Running transaction check ---> Package device-mapper.x86_64 7:1.02.170-6.amzn2.5 will be installed --> Finished Dependency Resolution Dependencies Resolved ================================================================================ Package Arch Version Repository Size ================================================================================ Installing: cmake x86_64 2.8.12.2-2.amzn2.0.2 amzn2-core 6.9 M gcc-c++ x86_64 7.3.1-17.amzn2 amzn2-core 13 M git x86_64 2.40.1-1.amzn2.0.1 amzn2-core 54 k python3 x86_64 3.7.16-1.amzn2.0.4 amzn2-core 72 k tar x86_64 2:1.26-35.amzn2.0.2 amzn2-core 845 k Installing for dependencies: acl x86_64 2.2.51-14.amzn2 amzn2-core 82 k audit-libs x86_64 2.8.1-3.amzn2.1 amzn2-core 99 k binutils x86_64 2.29.1-31.amzn2 amzn2-core 5.8 M cpp x86_64 7.3.1-17.amzn2 amzn2-core 9.2 M cracklib x86_64 2.9.0-11.amzn2.0.2 amzn2-core 80 k cracklib-dicts x86_64 2.9.0-11.amzn2.0.2 amzn2-core 3.6 M cryptsetup-libs x86_64 1.7.4-4.amzn2 amzn2-core 224 k dbus x86_64 1:1.10.24-7.amzn2.0.3 amzn2-core 245 k dbus-libs x86_64 1:1.10.24-7.amzn2.0.3 amzn2-core 167 k device-mapper x86_64 7:1.02.170-6.amzn2.5 amzn2-core 297 k device-mapper-libs x86_64 7:1.02.170-6.amzn2.5 amzn2-core 326 k elfutils-default-yama-scope noarch 0.176-2.amzn2.0.2 amzn2-core 33 k elfutils-libs x86_64 0.176-2.amzn2.0.2 amzn2-core 289 k fipscheck x86_64 1.4.1-6.amzn2.0.2 amzn2-core 21 k fipscheck-lib x86_64 1.4.1-6.amzn2.0.2 amzn2-core 11 k gcc x86_64 7.3.1-17.amzn2 amzn2-core 22 M git-core x86_64 2.40.1-1.amzn2.0.1 amzn2-core 10 M git-core-doc noarch 2.40.1-1.amzn2.0.1 amzn2-core 3.0 M glibc-devel x86_64 2.26-63.amzn2.0.1 amzn2-core 995 k glibc-headers x86_64 2.26-63.amzn2.0.1 amzn2-core 516 k groff-base x86_64 1.22.2-8.amzn2.0.2 amzn2-core 948 k gzip x86_64 1.5-10.amzn2.0.1 amzn2-core 129 k kernel-headers x86_64 4.14.327-246.539.amzn2 amzn2-core 1.2 M kmod x86_64 25-3.amzn2.0.2 amzn2-core 111 k kmod-libs x86_64 25-3.amzn2.0.2 amzn2-core 59 k less x86_64 458-9.amzn2.0.2 amzn2-core 121 k libarchive x86_64 3.1.2-14.amzn2.0.1 amzn2-core 312 k libatomic x86_64 7.3.1-17.amzn2 amzn2-core 46 k libcap-ng x86_64 0.7.5-4.amzn2.0.4 amzn2-core 25 k libcilkrts x86_64 7.3.1-17.amzn2 amzn2-core 85 k libedit x86_64 3.0-12.20121213cvs.amzn2.0.2 amzn2-core 93 k libfdisk x86_64 2.30.2-2.amzn2.0.11 amzn2-core 238 k libgomp x86_64 7.3.1-17.amzn2 amzn2-core 205 k libitm x86_64 7.3.1-17.amzn2 amzn2-core 85 k libmpc x86_64 1.0.1-3.amzn2.0.2 amzn2-core 52 k libmpx x86_64 7.3.1-17.amzn2 amzn2-core 52 k libpwquality x86_64 1.2.3-5.amzn2 amzn2-core 84 k libquadmath x86_64 7.3.1-17.amzn2 amzn2-core 189 k libsanitizer x86_64 7.3.1-17.amzn2 amzn2-core 642 k libsemanage x86_64 2.5-11.amzn2 amzn2-core 152 k libsmartcols x86_64 2.30.2-2.amzn2.0.11 amzn2-core 155 k libtirpc x86_64 0.2.4-0.16.amzn2 amzn2-core 88 k libutempter x86_64 1.1.6-4.amzn2.0.2 amzn2-core 25 k lz4 x86_64 1.7.5-2.amzn2.0.1 amzn2-core 99 k lzo x86_64 2.06-8.amzn2.0.4 amzn2-core 60 k mpfr x86_64 3.1.1-4.amzn2.0.2 amzn2-core 208 k openssh x86_64 7.4p1-22.amzn2.0.5 amzn2-core 508 k openssh-clients x86_64 7.4p1-22.amzn2.0.5 amzn2-core 652 k pam x86_64 1.1.8-23.amzn2.0.1 amzn2-core 715 k pcre2 x86_64 10.23-11.amzn2.0.1 amzn2-core 207 k perl x86_64 4:5.16.3-299.amzn2.0.2 amzn2-core 8.0 M perl-Carp noarch 1.26-244.amzn2 amzn2-core 19 k perl-Encode x86_64 2.51-7.amzn2.0.2 amzn2-core 1.5 M perl-Error noarch 1:0.17020-2.amzn2 amzn2-core 32 k perl-Exporter noarch 5.68-3.amzn2 amzn2-core 29 k perl-File-Path noarch 2.09-2.amzn2 amzn2-core 27 k perl-File-Temp noarch 0.23.01-3.amzn2 amzn2-core 56 k perl-Filter x86_64 1.49-3.amzn2.0.2 amzn2-core 76 k perl-Getopt-Long noarch 2.40-3.amzn2 amzn2-core 56 k perl-Git noarch 2.40.1-1.amzn2.0.1 amzn2-core 41 k perl-HTTP-Tiny noarch 0.033-3.amzn2.0.1 amzn2-core 39 k perl-PathTools x86_64 3.40-5.amzn2.0.2 amzn2-core 83 k perl-Pod-Escapes noarch 1:1.04-299.amzn2.0.2 amzn2-core 52 k perl-Pod-Perldoc noarch 3.20-4.amzn2.0.1 amzn2-core 87 k perl-Pod-Simple noarch 1:3.28-4.amzn2 amzn2-core 216 k perl-Pod-Usage noarch 1.63-3.amzn2 amzn2-core 27 k perl-Scalar-List-Utils x86_64 1.27-248.amzn2.0.2 amzn2-core 36 k perl-Socket x86_64 2.010-4.amzn2.0.2 amzn2-core 49 k perl-Storable x86_64 2.45-3.amzn2.0.2 amzn2-core 78 k perl-TermReadKey x86_64 2.30-20.amzn2.0.2 amzn2-core 31 k perl-Text-ParseWords noarch 3.29-4.amzn2 amzn2-core 14 k perl-Time-HiRes x86_64 4:1.9725-3.amzn2.0.2 amzn2-core 45 k perl-Time-Local noarch 1.2300-2.amzn2 amzn2-core 24 k perl-constant noarch 1.27-2.amzn2.0.1 amzn2-core 19 k perl-libs x86_64 4:5.16.3-299.amzn2.0.2 amzn2-core 685 k perl-macros x86_64 4:5.16.3-299.amzn2.0.2 amzn2-core 45 k perl-parent noarch 1:0.225-244.amzn2.0.1 amzn2-core 12 k perl-podlators noarch 2.5.1-3.amzn2.0.1 amzn2-core 112 k perl-threads x86_64 1.87-4.amzn2.0.2 amzn2-core 50 k perl-threads-shared x86_64 1.43-6.amzn2.0.2 amzn2-core 39 k python3-libs x86_64 3.7.16-1.amzn2.0.4 amzn2-core 9.8 M python3-pip noarch 20.2.2-1.amzn2.0.4 amzn2-core 2.0 M python3-setuptools noarch 49.1.3-1.amzn2.0.3 amzn2-core 1.1 M qrencode-libs x86_64 3.4.1-3.amzn2.0.2 amzn2-core 50 k shadow-utils x86_64 2:4.1.5.1-24.amzn2.0.3 amzn2-core 1.1 M systemd x86_64 219-78.amzn2.0.22 amzn2-core 5.0 M systemd-libs x86_64 219-78.amzn2.0.22 amzn2-core 409 k ustr x86_64 1.0.4-16.amzn2.0.3 amzn2-core 96 k util-linux x86_64 2.30.2-2.amzn2.0.11 amzn2-core 2.3 M Transaction Summary ================================================================================ Install 5 Packages (+89 Dependent packages) Total download size: 118 M Installed size: 387 M Downloading packages: -------------------------------------------------------------------------------- Total 33 MB/s | 118 MB 00:03 Running transaction check Running transaction test Transaction test succeeded Running transaction Installing : mpfr-3.1.1-4.amzn2.0.2.x86_64 1/94 Installing : libmpc-1.0.1-3.amzn2.0.2.x86_64 2/94 Installing : libcap-ng-0.7.5-4.amzn2.0.4.x86_64 3/94 Installing : audit-libs-2.8.1-3.amzn2.1.x86_64 4/94 Installing : groff-base-1.22.2-8.amzn2.0.2.x86_64 5/94 Installing : lz4-1.7.5-2.amzn2.0.1.x86_64 6/94 Installing : 1:perl-parent-0.225-244.amzn2.0.1.noarch 7/94 Installing : perl-HTTP-Tiny-0.033-3.amzn2.0.1.noarch 8/94 Installing : perl-Pod-Perldoc-3.20-4.amzn2.0.1.noarch 9/94 Installing : perl-podlators-2.5.1-3.amzn2.0.1.noarch 10/94 Installing : perl-Text-ParseWords-3.29-4.amzn2.noarch 11/94 Installing : perl-Encode-2.51-7.amzn2.0.2.x86_64 12/94 Installing : perl-Pod-Usage-1.63-3.amzn2.noarch 13/94 Installing : 1:perl-Pod-Escapes-1.04-299.amzn2.0.2.noarch 14/94 Installing : 4:perl-libs-5.16.3-299.amzn2.0.2.x86_64 15/94 Installing : perl-Filter-1.49-3.amzn2.0.2.x86_64 16/94 Installing : perl-Storable-2.45-3.amzn2.0.2.x86_64 17/94 Installing : perl-Carp-1.26-244.amzn2.noarch 18/94 Installing : perl-File-Path-2.09-2.amzn2.noarch 19/94 Installing : perl-PathTools-3.40-5.amzn2.0.2.x86_64 20/94 Installing : perl-Scalar-List-Utils-1.27-248.amzn2.0.2.x86_64 21/94 Installing : perl-Exporter-5.68-3.amzn2.noarch 22/94 Installing : perl-Time-Local-1.2300-2.amzn2.noarch 23/94 Installing : perl-File-Temp-0.23.01-3.amzn2.noarch 24/94 Installing : perl-constant-1.27-2.amzn2.0.1.noarch 25/94 Installing : perl-threads-shared-1.43-6.amzn2.0.2.x86_64 26/94 Installing : perl-threads-1.87-4.amzn2.0.2.x86_64 27/94 Installing : 4:perl-Time-HiRes-1.9725-3.amzn2.0.2.x86_64 28/94 Installing : perl-Socket-2.010-4.amzn2.0.2.x86_64 29/94 Installing : 4:perl-macros-5.16.3-299.amzn2.0.2.x86_64 30/94 Installing : perl-Getopt-Long-2.40-3.amzn2.noarch 31/94 Installing : 1:perl-Pod-Simple-3.28-4.amzn2.noarch 32/94 Installing : 4:perl-5.16.3-299.amzn2.0.2.x86_64 33/94 Installing : perl-TermReadKey-2.30-20.amzn2.0.2.x86_64 34/94 Installing : 1:perl-Error-0.17020-2.amzn2.noarch 35/94 Installing : less-458-9.amzn2.0.2.x86_64 36/94 Installing : cpp-7.3.1-17.amzn2.x86_64 37/94 Installing : fipscheck-lib-1.4.1-6.amzn2.0.2.x86_64 38/94 Installing : fipscheck-1.4.1-6.amzn2.0.2.x86_64 39/94 Installing : libatomic-7.3.1-17.amzn2.x86_64 40/94 Installing : libgomp-7.3.1-17.amzn2.x86_64 41/94 Installing : kmod-libs-25-3.amzn2.0.2.x86_64 42/94 Installing : libsanitizer-7.3.1-17.amzn2.x86_64 43/94 Installing : gzip-1.5-10.amzn2.0.1.x86_64 44/94 Installing : cracklib-2.9.0-11.amzn2.0.2.x86_64 45/94 Installing : cracklib-dicts-2.9.0-11.amzn2.0.2.x86_64 46/94 Installing : libpwquality-1.2.3-5.amzn2.x86_64 47/94 Installing : pam-1.1.8-23.amzn2.0.1.x86_64 48/94 Installing : libmpx-7.3.1-17.amzn2.x86_64 49/94 Installing : ustr-1.0.4-16.amzn2.0.3.x86_64 50/94 Installing : libsemanage-2.5-11.amzn2.x86_64 51/94 Installing : 2:shadow-utils-4.1.5.1-24.amzn2.0.3.x86_64 52/94 Installing : libutempter-1.1.6-4.amzn2.0.2.x86_64 53/94 Installing : lzo-2.06-8.amzn2.0.4.x86_64 54/94 Installing : libarchive-3.1.2-14.amzn2.0.1.x86_64 55/94 Installing : libcilkrts-7.3.1-17.amzn2.x86_64 56/94 Installing : acl-2.2.51-14.amzn2.x86_64 57/94 Installing : pcre2-10.23-11.amzn2.0.1.x86_64 58/94 Installing : libsmartcols-2.30.2-2.amzn2.0.11.x86_64 59/94 Installing : binutils-2.29.1-31.amzn2.x86_64 60/94 Installing : kernel-headers-4.14.327-246.539.amzn2.x86_64 61/94 Installing : glibc-headers-2.26-63.amzn2.0.1.x86_64 62/94 Installing : glibc-devel-2.26-63.amzn2.0.1.x86_64 63/94 Installing : kmod-25-3.amzn2.0.2.x86_64 64/94 Installing : libfdisk-2.30.2-2.amzn2.0.11.x86_64 65/94 Installing : libtirpc-0.2.4-0.16.amzn2.x86_64 66/94 Installing : python3-setuptools-49.1.3-1.amzn2.0.3.noarch 67/94 Installing : python3-libs-3.7.16-1.amzn2.0.4.x86_64 68/94 Installing : python3-3.7.16-1.amzn2.0.4.x86_64 69/94 Installing : python3-pip-20.2.2-1.amzn2.0.4.noarch 70/94 Installing : qrencode-libs-3.4.1-3.amzn2.0.2.x86_64 71/94 Installing : util-linux-2.30.2-2.amzn2.0.11.x86_64 72/94 Installing : 7:device-mapper-1.02.170-6.amzn2.5.x86_64 73/94 Installing : 7:device-mapper-libs-1.02.170-6.amzn2.5.x86_64 74/94 Installing : cryptsetup-libs-1.7.4-4.amzn2.x86_64 75/94 Installing : elfutils-libs-0.176-2.amzn2.0.2.x86_64 76/94 Installing : systemd-libs-219-78.amzn2.0.22.x86_64 77/94 Installing : 1:dbus-libs-1.10.24-7.amzn2.0.3.x86_64 78/94 Installing : systemd-219-78.amzn2.0.22.x86_64 79/94 Failed to get D-Bus connection: Operation not permitted Installing : 1:dbus-1.10.24-7.amzn2.0.3.x86_64 80/94 Installing : elfutils-default-yama-scope-0.176-2.amzn2.0.2.noarch 81/94 Installing : openssh-7.4p1-22.amzn2.0.5.x86_64 82/94 Installing : libquadmath-7.3.1-17.amzn2.x86_64 83/94 Installing : libedit-3.0-12.20121213cvs.amzn2.0.2.x86_64 84/94 Installing : openssh-clients-7.4p1-22.amzn2.0.5.x86_64 85/94 Installing : git-core-2.40.1-1.amzn2.0.1.x86_64 86/94 Installing : git-core-doc-2.40.1-1.amzn2.0.1.noarch 87/94 Installing : git-2.40.1-1.amzn2.0.1.x86_64 88/94 Installing : perl-Git-2.40.1-1.amzn2.0.1.noarch 89/94 Installing : libitm-7.3.1-17.amzn2.x86_64 90/94 Installing : gcc-7.3.1-17.amzn2.x86_64 91/94 Installing : gcc-c++-7.3.1-17.amzn2.x86_64 92/94 Installing : cmake-2.8.12.2-2.amzn2.0.2.x86_64 93/94 Installing : 2:tar-1.26-35.amzn2.0.2.x86_64 94/94 Verifying : python3-pip-20.2.2-1.amzn2.0.4.noarch 1/94 Verifying : libitm-7.3.1-17.amzn2.x86_64 2/94 Verifying : 1:perl-Pod-Escapes-1.04-299.amzn2.0.2.noarch 3/94 Verifying : git-core-2.40.1-1.amzn2.0.1.x86_64 4/94 Verifying : python3-setuptools-49.1.3-1.amzn2.0.3.noarch 5/94 Verifying : libmpc-1.0.1-3.amzn2.0.2.x86_64 6/94 Verifying : git-2.40.1-1.amzn2.0.1.x86_64 7/94 Verifying : cryptsetup-libs-1.7.4-4.amzn2.x86_64 8/94 Verifying : libedit-3.0-12.20121213cvs.amzn2.0.2.x86_64 9/94 Verifying : libutempter-1.1.6-4.amzn2.0.2.x86_64 10/94 Verifying : lz4-1.7.5-2.amzn2.0.1.x86_64 11/94 Verifying : libquadmath-7.3.1-17.amzn2.x86_64 12/94 Verifying : qrencode-libs-3.4.1-3.amzn2.0.2.x86_64 13/94 Verifying : perl-Filter-1.49-3.amzn2.0.2.x86_64 14/94 Verifying : 1:perl-Pod-Simple-3.28-4.amzn2.noarch 15/94 Verifying : libtirpc-0.2.4-0.16.amzn2.x86_64 16/94 Verifying : libfdisk-2.30.2-2.amzn2.0.11.x86_64 17/94 Verifying : perl-PathTools-3.40-5.amzn2.0.2.x86_64 18/94 Verifying : libcap-ng-0.7.5-4.amzn2.0.4.x86_64 19/94 Verifying : python3-libs-3.7.16-1.amzn2.0.4.x86_64 20/94 Verifying : gcc-c++-7.3.1-17.amzn2.x86_64 21/94 Verifying : perl-Storable-2.45-3.amzn2.0.2.x86_64 22/94 Verifying : python3-3.7.16-1.amzn2.0.4.x86_64 23/94 Verifying : kmod-25-3.amzn2.0.2.x86_64 24/94 Verifying : kernel-headers-4.14.327-246.539.amzn2.x86_64 25/94 Verifying : cmake-2.8.12.2-2.amzn2.0.2.x86_64 26/94 Verifying : 4:perl-libs-5.16.3-299.amzn2.0.2.x86_64 27/94 Verifying : perl-Getopt-Long-2.40-3.amzn2.noarch 28/94 Verifying : perl-Time-Local-1.2300-2.amzn2.noarch 29/94 Verifying : 1:dbus-1.10.24-7.amzn2.0.3.x86_64 30/94 Verifying : 2:shadow-utils-4.1.5.1-24.amzn2.0.3.x86_64 31/94 Verifying : binutils-2.29.1-31.amzn2.x86_64 32/94 Verifying : libsmartcols-2.30.2-2.amzn2.0.11.x86_64 33/94 Verifying : fipscheck-1.4.1-6.amzn2.0.2.x86_64 34/94 Verifying : pcre2-10.23-11.amzn2.0.1.x86_64 35/94 Verifying : libpwquality-1.2.3-5.amzn2.x86_64 36/94 Verifying : 7:device-mapper-libs-1.02.170-6.amzn2.5.x86_64 37/94 Verifying : cracklib-dicts-2.9.0-11.amzn2.0.2.x86_64 38/94 Verifying : perl-TermReadKey-2.30-20.amzn2.0.2.x86_64 39/94 Verifying : audit-libs-2.8.1-3.amzn2.1.x86_64 40/94 Verifying : perl-Pod-Perldoc-3.20-4.amzn2.0.1.noarch 41/94 Verifying : perl-Git-2.40.1-1.amzn2.0.1.noarch 42/94 Verifying : acl-2.2.51-14.amzn2.x86_64 43/94 Verifying : libsemanage-2.5-11.amzn2.x86_64 44/94 Verifying : 2:tar-1.26-35.amzn2.0.2.x86_64 45/94 Verifying : elfutils-libs-0.176-2.amzn2.0.2.x86_64 46/94 Verifying : openssh-7.4p1-22.amzn2.0.5.x86_64 47/94 Verifying : systemd-libs-219-78.amzn2.0.22.x86_64 48/94 Verifying : perl-File-Path-2.09-2.amzn2.noarch 49/94 Verifying : libcilkrts-7.3.1-17.amzn2.x86_64 50/94 Verifying : fipscheck-lib-1.4.1-6.amzn2.0.2.x86_64 51/94 Verifying : systemd-219-78.amzn2.0.22.x86_64 52/94 Verifying : lzo-2.06-8.amzn2.0.4.x86_64 53/94 Verifying : glibc-devel-2.26-63.amzn2.0.1.x86_64 54/94 Verifying : git-core-doc-2.40.1-1.amzn2.0.1.noarch 55/94 Verifying : 4:perl-5.16.3-299.amzn2.0.2.x86_64 56/94 Verifying : 1:dbus-libs-1.10.24-7.amzn2.0.3.x86_64 57/94 Verifying : perl-Carp-1.26-244.amzn2.noarch 58/94 Verifying : elfutils-default-yama-scope-0.176-2.amzn2.0.2.noarch 59/94 Verifying : perl-Scalar-List-Utils-1.27-248.amzn2.0.2.x86_64 60/94 Verifying : cpp-7.3.1-17.amzn2.x86_64 61/94 Verifying : mpfr-3.1.1-4.amzn2.0.2.x86_64 62/94 Verifying : util-linux-2.30.2-2.amzn2.0.11.x86_64 63/94 Verifying : pam-1.1.8-23.amzn2.0.1.x86_64 64/94 Verifying : perl-HTTP-Tiny-0.033-3.amzn2.0.1.noarch 65/94 Verifying : ustr-1.0.4-16.amzn2.0.3.x86_64 66/94 Verifying : less-458-9.amzn2.0.2.x86_64 67/94 Verifying : 1:perl-Error-0.17020-2.amzn2.noarch 68/94 Verifying : perl-Pod-Usage-1.63-3.amzn2.noarch 69/94 Verifying : gcc-7.3.1-17.amzn2.x86_64 70/94 Verifying : 1:perl-parent-0.225-244.amzn2.0.1.noarch 71/94 Verifying : perl-File-Temp-0.23.01-3.amzn2.noarch 72/94 Verifying : libmpx-7.3.1-17.amzn2.x86_64 73/94 Verifying : openssh-clients-7.4p1-22.amzn2.0.5.x86_64 74/94 Verifying : libarchive-3.1.2-14.amzn2.0.1.x86_64 75/94 Verifying : perl-Exporter-5.68-3.amzn2.noarch 76/94 Verifying : cracklib-2.9.0-11.amzn2.0.2.x86_64 77/94 Verifying : perl-Encode-2.51-7.amzn2.0.2.x86_64 78/94 Verifying : 7:device-mapper-1.02.170-6.amzn2.5.x86_64 79/94 Verifying : perl-threads-shared-1.43-6.amzn2.0.2.x86_64 80/94 Verifying : gzip-1.5-10.amzn2.0.1.x86_64 81/94 Verifying : libsanitizer-7.3.1-17.amzn2.x86_64 82/94 Verifying : perl-constant-1.27-2.amzn2.0.1.noarch 83/94 Verifying : kmod-libs-25-3.amzn2.0.2.x86_64 84/94 Verifying : glibc-headers-2.26-63.amzn2.0.1.x86_64 85/94 Verifying : libgomp-7.3.1-17.amzn2.x86_64 86/94 Verifying : perl-threads-1.87-4.amzn2.0.2.x86_64 87/94 Verifying : perl-podlators-2.5.1-3.amzn2.0.1.noarch 88/94 Verifying : libatomic-7.3.1-17.amzn2.x86_64 89/94 Verifying : 4:perl-Time-HiRes-1.9725-3.amzn2.0.2.x86_64 90/94 Verifying : perl-Socket-2.010-4.amzn2.0.2.x86_64 91/94 Verifying : 4:perl-macros-5.16.3-299.amzn2.0.2.x86_64 92/94 Verifying : groff-base-1.22.2-8.amzn2.0.2.x86_64 93/94 Verifying : perl-Text-ParseWords-3.29-4.amzn2.noarch 94/94 Installed: cmake.x86_64 0:2.8.12.2-2.amzn2.0.2 gcc-c++.x86_64 0:7.3.1-17.amzn2 git.x86_64 0:2.40.1-1.amzn2.0.1 python3.x86_64 0:3.7.16-1.amzn2.0.4 tar.x86_64 2:1.26-35.amzn2.0.2 Dependency Installed: acl.x86_64 0:2.2.51-14.amzn2 audit-libs.x86_64 0:2.8.1-3.amzn2.1 binutils.x86_64 0:2.29.1-31.amzn2 cpp.x86_64 0:7.3.1-17.amzn2 cracklib.x86_64 0:2.9.0-11.amzn2.0.2 cracklib-dicts.x86_64 0:2.9.0-11.amzn2.0.2 cryptsetup-libs.x86_64 0:1.7.4-4.amzn2 dbus.x86_64 1:1.10.24-7.amzn2.0.3 dbus-libs.x86_64 1:1.10.24-7.amzn2.0.3 device-mapper.x86_64 7:1.02.170-6.amzn2.5 device-mapper-libs.x86_64 7:1.02.170-6.amzn2.5 elfutils-default-yama-scope.noarch 0:0.176-2.amzn2.0.2 elfutils-libs.x86_64 0:0.176-2.amzn2.0.2 fipscheck.x86_64 0:1.4.1-6.amzn2.0.2 fipscheck-lib.x86_64 0:1.4.1-6.amzn2.0.2 gcc.x86_64 0:7.3.1-17.amzn2 git-core.x86_64 0:2.40.1-1.amzn2.0.1 git-core-doc.noarch 0:2.40.1-1.amzn2.0.1 glibc-devel.x86_64 0:2.26-63.amzn2.0.1 glibc-headers.x86_64 0:2.26-63.amzn2.0.1 groff-base.x86_64 0:1.22.2-8.amzn2.0.2 gzip.x86_64 0:1.5-10.amzn2.0.1 kernel-headers.x86_64 0:4.14.327-246.539.amzn2 kmod.x86_64 0:25-3.amzn2.0.2 kmod-libs.x86_64 0:25-3.amzn2.0.2 less.x86_64 0:458-9.amzn2.0.2 libarchive.x86_64 0:3.1.2-14.amzn2.0.1 libatomic.x86_64 0:7.3.1-17.amzn2 libcap-ng.x86_64 0:0.7.5-4.amzn2.0.4 libcilkrts.x86_64 0:7.3.1-17.amzn2 libedit.x86_64 0:3.0-12.20121213cvs.amzn2.0.2 libfdisk.x86_64 0:2.30.2-2.amzn2.0.11 libgomp.x86_64 0:7.3.1-17.amzn2 libitm.x86_64 0:7.3.1-17.amzn2 libmpc.x86_64 0:1.0.1-3.amzn2.0.2 libmpx.x86_64 0:7.3.1-17.amzn2 libpwquality.x86_64 0:1.2.3-5.amzn2 libquadmath.x86_64 0:7.3.1-17.amzn2 libsanitizer.x86_64 0:7.3.1-17.amzn2 libsemanage.x86_64 0:2.5-11.amzn2 libsmartcols.x86_64 0:2.30.2-2.amzn2.0.11 libtirpc.x86_64 0:0.2.4-0.16.amzn2 libutempter.x86_64 0:1.1.6-4.amzn2.0.2 lz4.x86_64 0:1.7.5-2.amzn2.0.1 lzo.x86_64 0:2.06-8.amzn2.0.4 mpfr.x86_64 0:3.1.1-4.amzn2.0.2 openssh.x86_64 0:7.4p1-22.amzn2.0.5 openssh-clients.x86_64 0:7.4p1-22.amzn2.0.5 pam.x86_64 0:1.1.8-23.amzn2.0.1 pcre2.x86_64 0:10.23-11.amzn2.0.1 perl.x86_64 4:5.16.3-299.amzn2.0.2 perl-Carp.noarch 0:1.26-244.amzn2 perl-Encode.x86_64 0:2.51-7.amzn2.0.2 perl-Error.noarch 1:0.17020-2.amzn2 perl-Exporter.noarch 0:5.68-3.amzn2 perl-File-Path.noarch 0:2.09-2.amzn2 perl-File-Temp.noarch 0:0.23.01-3.amzn2 perl-Filter.x86_64 0:1.49-3.amzn2.0.2 perl-Getopt-Long.noarch 0:2.40-3.amzn2 perl-Git.noarch 0:2.40.1-1.amzn2.0.1 perl-HTTP-Tiny.noarch 0:0.033-3.amzn2.0.1 perl-PathTools.x86_64 0:3.40-5.amzn2.0.2 perl-Pod-Escapes.noarch 1:1.04-299.amzn2.0.2 perl-Pod-Perldoc.noarch 0:3.20-4.amzn2.0.1 perl-Pod-Simple.noarch 1:3.28-4.amzn2 perl-Pod-Usage.noarch 0:1.63-3.amzn2 perl-Scalar-List-Utils.x86_64 0:1.27-248.amzn2.0.2 perl-Socket.x86_64 0:2.010-4.amzn2.0.2 perl-Storable.x86_64 0:2.45-3.amzn2.0.2 perl-TermReadKey.x86_64 0:2.30-20.amzn2.0.2 perl-Text-ParseWords.noarch 0:3.29-4.amzn2 perl-Time-HiRes.x86_64 4:1.9725-3.amzn2.0.2 perl-Time-Local.noarch 0:1.2300-2.amzn2 perl-constant.noarch 0:1.27-2.amzn2.0.1 perl-libs.x86_64 4:5.16.3-299.amzn2.0.2 perl-macros.x86_64 4:5.16.3-299.amzn2.0.2 perl-parent.noarch 1:0.225-244.amzn2.0.1 perl-podlators.noarch 0:2.5.1-3.amzn2.0.1 perl-threads.x86_64 0:1.87-4.amzn2.0.2 perl-threads-shared.x86_64 0:1.43-6.amzn2.0.2 python3-libs.x86_64 0:3.7.16-1.amzn2.0.4 python3-pip.noarch 0:20.2.2-1.amzn2.0.4 python3-setuptools.noarch 0:49.1.3-1.amzn2.0.3 qrencode-libs.x86_64 0:3.4.1-3.amzn2.0.2 shadow-utils.x86_64 2:4.1.5.1-24.amzn2.0.3 systemd.x86_64 0:219-78.amzn2.0.22 systemd-libs.x86_64 0:219-78.amzn2.0.22 ustr.x86_64 0:1.0.4-16.amzn2.0.3 util-linux.x86_64 0:2.30.2-2.amzn2.0.11 Complete! Loaded plugins: ovl Resolving Dependencies --> Running transaction check ---> Package autoconf.noarch 0:2.69-11.amzn2 will be installed --> Processing Dependency: m4 >= 1.4.14 for package: autoconf-2.69-11.amzn2.noarch --> Processing Dependency: perl(Data::Dumper) for package: autoconf-2.69-11.amzn2.noarch ---> Package automake.noarch 0:1.13.4-3.1.amzn2 will be installed --> Processing Dependency: perl(TAP::Parser) for package: automake-1.13.4-3.1.amzn2.noarch --> Processing Dependency: perl(Thread::Queue) for package: automake-1.13.4-3.1.amzn2.noarch ---> Package bison.x86_64 0:3.0.4-6.amzn2.0.2 will be installed ---> Package byacc.x86_64 0:1.9.20130304-3.amzn2.0.2 will be installed ---> Package cscope.x86_64 0:15.8-10.amzn2.0.2 will be installed --> Processing Dependency: emacs-filesystem for package: cscope-15.8-10.amzn2.0.2.x86_64 ---> Package ctags.x86_64 0:5.8-13.amzn2.0.2 will be installed ---> Package diffstat.x86_64 0:1.57-4.amzn2.0.2 will be installed ---> Package doxygen.x86_64 1:1.8.5-4.amzn2 will be installed ---> Package elfutils.x86_64 0:0.176-2.amzn2.0.2 will be installed ---> Package flex.x86_64 0:2.5.37-3.amzn2.0.3 will be installed ---> Package gcc-gfortran.x86_64 0:7.3.1-17.amzn2 will be installed --> Processing Dependency: libgfortran.so.4()(64bit) for package: gcc-gfortran-7.3.1-17.amzn2.x86_64 ---> Package gettext.x86_64 0:0.19.8.1-3.amzn2 will be installed --> Processing Dependency: gettext-libs(x86-64) = 0.19.8.1-3.amzn2 for package: gettext-0.19.8.1-3.amzn2.x86_64 --> Processing Dependency: libcroco-0.6.so.3()(64bit) for package: gettext-0.19.8.1-3.amzn2.x86_64 --> Processing Dependency: libgettextlib-0.19.8.1.so()(64bit) for package: gettext-0.19.8.1-3.amzn2.x86_64 --> Processing Dependency: libgettextsrc-0.19.8.1.so()(64bit) for package: gettext-0.19.8.1-3.amzn2.x86_64 ---> Package indent.x86_64 0:2.2.11-13.amzn2.0.2 will be installed ---> Package intltool.noarch 0:0.50.2-7.amzn2 will be installed --> Processing Dependency: gettext-devel for package: intltool-0.50.2-7.amzn2.noarch --> Processing Dependency: perl(XML::Parser) for package: intltool-0.50.2-7.amzn2.noarch ---> Package libtool.x86_64 0:2.4.2-22.2.amzn2.0.2 will be installed ---> Package make.x86_64 1:3.82-24.amzn2 will be installed ---> Package patch.x86_64 0:2.7.1-12.amzn2.0.2 will be installed ---> Package patchutils.x86_64 0:0.3.3-4.amzn2.0.1 will be installed ---> Package pkgconfig.x86_64 1:0.27.1-4.amzn2.0.2 will be installed ---> Package rcs.x86_64 0:5.9.0-5.amzn2.0.2 will be installed ---> Package rpm-build.x86_64 0:4.11.3-48.amzn2.0.3 will be installed --> Processing Dependency: /usr/bin/gdb-add-index for package: rpm-build-4.11.3-48.amzn2.0.3.x86_64 --> Processing Dependency: bzip2 for package: rpm-build-4.11.3-48.amzn2.0.3.x86_64 --> Processing Dependency: file for package: rpm-build-4.11.3-48.amzn2.0.3.x86_64 --> Processing Dependency: unzip for package: rpm-build-4.11.3-48.amzn2.0.3.x86_64 --> Processing Dependency: xz for package: rpm-build-4.11.3-48.amzn2.0.3.x86_64 ---> Package rpm-sign.x86_64 0:4.11.3-48.amzn2.0.3 will be installed ---> Package subversion.x86_64 0:1.7.14-16.amzn2.0.1 will be installed --> Processing Dependency: subversion-libs(x86-64) = 1.7.14-16.amzn2.0.1 for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: systemd-sysv for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libapr-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libaprutil-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libneon.so.27()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_client-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_delta-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_diff-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_fs-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_fs_base-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_fs_fs-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_fs_util-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_ra-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_ra_local-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_ra_neon-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_ra_svn-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_repos-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_subr-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_wc-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 ---> Package swig.x86_64 0:3.0.12-11.amzn2.0.3 will be installed ---> Package system-rpm-config.noarch 0:9.1.0-76.amzn2.0.14 will be installed --> Processing Dependency: dwz >= 0.4 for package: system-rpm-config-9.1.0-76.amzn2.0.14.noarch --> Processing Dependency: go-srpm-macros for package: system-rpm-config-9.1.0-76.amzn2.0.14.noarch --> Processing Dependency: perl-srpm-macros for package: system-rpm-config-9.1.0-76.amzn2.0.14.noarch --> Processing Dependency: zip for package: system-rpm-config-9.1.0-76.amzn2.0.14.noarch ---> Package systemtap.x86_64 0:4.5-1.amzn2.0.1 will be installed --> Processing Dependency: systemtap-client = 4.5-1.amzn2.0.1 for package: systemtap-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: systemtap-devel = 4.5-1.amzn2.0.1 for package: systemtap-4.5-1.amzn2.0.1.x86_64 --> Running transaction check ---> Package apr.x86_64 0:1.7.2-1.amzn2 will be installed ---> Package apr-util.x86_64 0:1.6.3-1.amzn2.0.1 will be installed --> Processing Dependency: apr-util-bdb(x86-64) = 1.6.3-1.amzn2.0.1 for package: apr-util-1.6.3-1.amzn2.0.1.x86_64 ---> Package bzip2.x86_64 0:1.0.6-13.amzn2.0.3 will be installed ---> Package dwz.x86_64 0:0.11-3.amzn2.0.3 will be installed ---> Package emacs-filesystem.noarch 1:27.2-4.amzn2.0.4 will be installed ---> Package file.x86_64 0:5.11-36.amzn2.0.1 will be installed ---> Package gdb.x86_64 0:8.0.1-36.amzn2.0.1 will be installed ---> Package gettext-devel.x86_64 0:0.19.8.1-3.amzn2 will be installed --> Processing Dependency: gettext-common-devel = 0.19.8.1-3.amzn2 for package: gettext-devel-0.19.8.1-3.amzn2.x86_64 ---> Package gettext-libs.x86_64 0:0.19.8.1-3.amzn2 will be installed ---> Package go-srpm-macros.noarch 0:3.0.15-23.amzn2.0.2 will be installed ---> Package libcroco.x86_64 0:0.6.12-6.amzn2 will be installed ---> Package libgfortran.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package m4.x86_64 0:1.4.16-10.amzn2.0.2 will be installed ---> Package neon.x86_64 0:0.30.0-3.amzn2.0.2 will be installed --> Processing Dependency: libgnutls.so.28(GNUTLS_1_4)(64bit) for package: neon-0.30.0-3.amzn2.0.2.x86_64 --> Processing Dependency: libgnutls.so.28(GNUTLS_2_12)(64bit) for package: neon-0.30.0-3.amzn2.0.2.x86_64 --> Processing Dependency: libgnutls.so.28()(64bit) for package: neon-0.30.0-3.amzn2.0.2.x86_64 --> Processing Dependency: libpakchois.so.0()(64bit) for package: neon-0.30.0-3.amzn2.0.2.x86_64 --> Processing Dependency: libproxy.so.1()(64bit) for package: neon-0.30.0-3.amzn2.0.2.x86_64 ---> Package perl-Data-Dumper.x86_64 0:2.145-3.amzn2.0.2 will be installed ---> Package perl-Test-Harness.noarch 0:3.28-3.amzn2 will be installed ---> Package perl-Thread-Queue.noarch 0:3.02-2.amzn2 will be installed ---> Package perl-XML-Parser.x86_64 0:2.41-10.amzn2.0.2 will be installed ---> Package perl-srpm-macros.noarch 0:1-8.amzn2.0.1 will be installed ---> Package subversion-libs.x86_64 0:1.7.14-16.amzn2.0.1 will be installed ---> Package systemd-sysv.x86_64 0:219-78.amzn2.0.22 will be installed ---> Package systemtap-client.x86_64 0:4.5-1.amzn2.0.1 will be installed --> Processing Dependency: systemtap-runtime = 4.5-1.amzn2.0.1 for package: systemtap-client-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: mokutil for package: systemtap-client-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: libavahi-client.so.3()(64bit) for package: systemtap-client-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: libavahi-common.so.3()(64bit) for package: systemtap-client-4.5-1.amzn2.0.1.x86_64 ---> Package systemtap-devel.x86_64 0:4.5-1.amzn2.0.1 will be installed --> Processing Dependency: kernel-devel-uname-r for package: systemtap-devel-4.5-1.amzn2.0.1.x86_64 ---> Package unzip.x86_64 0:6.0-57.amzn2.0.1 will be installed ---> Package xz.x86_64 0:5.2.2-1.amzn2.0.3 will be installed ---> Package zip.x86_64 0:3.0-11.amzn2.0.2 will be installed --> Running transaction check ---> Package apr-util-bdb.x86_64 0:1.6.3-1.amzn2.0.1 will be installed ---> Package avahi-libs.x86_64 0:0.6.31-20.amzn2.0.2 will be installed ---> Package gettext-common-devel.noarch 0:0.19.8.1-3.amzn2 will be installed ---> Package gnutls.x86_64 0:3.3.29-9.amzn2.0.1 will be installed --> Processing Dependency: trousers >= 0.3.11.2 for package: gnutls-3.3.29-9.amzn2.0.1.x86_64 --> Processing Dependency: libhogweed.so.2()(64bit) for package: gnutls-3.3.29-9.amzn2.0.1.x86_64 --> Processing Dependency: libnettle.so.4()(64bit) for package: gnutls-3.3.29-9.amzn2.0.1.x86_64 ---> Package kernel-devel.x86_64 0:4.14.327-246.539.amzn2 will be installed --> Processing Dependency: /usr/sbin/hardlink for package: kernel-devel-4.14.327-246.539.amzn2.x86_64 --> Processing Dependency: elfutils-libelf-devel for package: kernel-devel-4.14.327-246.539.amzn2.x86_64 ---> Package libproxy.x86_64 0:0.4.11-10.amzn2.0.3 will be installed --> Processing Dependency: libmodman.so.1()(64bit) for package: libproxy-0.4.11-10.amzn2.0.3.x86_64 ---> Package mokutil.x86_64 1:0.3.0-10.amzn2.0.1 will be installed --> Processing Dependency: libefivar.so.1(LIBEFIVAR_0.24)(64bit) for package: 1:mokutil-0.3.0-10.amzn2.0.1.x86_64 --> Processing Dependency: libefivar.so.1(libefivar.so.0)(64bit) for package: 1:mokutil-0.3.0-10.amzn2.0.1.x86_64 --> Processing Dependency: libefivar.so.1()(64bit) for package: 1:mokutil-0.3.0-10.amzn2.0.1.x86_64 ---> Package pakchois.x86_64 0:0.4-10.amzn2.0.2 will be installed ---> Package systemtap-runtime.x86_64 0:4.5-1.amzn2.0.1 will be installed --> Processing Dependency: libboost_system.so.1.53.0()(64bit) for package: systemtap-runtime-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: libdyninstAPI.so.9.3()(64bit) for package: systemtap-runtime-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: libjson-c.so.2()(64bit) for package: systemtap-runtime-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: libsymtabAPI.so.9.3()(64bit) for package: systemtap-runtime-4.5-1.amzn2.0.1.x86_64 --> Running transaction check ---> Package boost-system.x86_64 0:1.53.0-27.amzn2.0.5 will be installed ---> Package dyninst.x86_64 0:9.3.1-3.amzn2 will be installed --> Processing Dependency: libboost_date_time-mt.so.1.53.0()(64bit) for package: dyninst-9.3.1-3.amzn2.x86_64 --> Processing Dependency: libboost_thread-mt.so.1.53.0()(64bit) for package: dyninst-9.3.1-3.amzn2.x86_64 --> Processing Dependency: libdwarf.so.0()(64bit) for package: dyninst-9.3.1-3.amzn2.x86_64 ---> Package efivar-libs.x86_64 0:31-4.amzn2.0.4 will be installed ---> Package elfutils-libelf-devel.x86_64 0:0.176-2.amzn2.0.2 will be installed --> Processing Dependency: pkgconfig(zlib) for package: elfutils-libelf-devel-0.176-2.amzn2.0.2.x86_64 ---> Package hardlink.x86_64 1:1.3-3.amzn2 will be installed ---> Package json-c.x86_64 0:0.11-4.amzn2.0.4 will be installed ---> Package libmodman.x86_64 0:2.0.1-8.amzn2.0.2 will be installed ---> Package nettle.x86_64 0:2.7.1-9.amzn2 will be installed ---> Package trousers.x86_64 0:0.3.14-2.amzn2.0.2 will be installed --> Running transaction check ---> Package boost-date-time.x86_64 0:1.53.0-27.amzn2.0.5 will be installed ---> Package boost-thread.x86_64 0:1.53.0-27.amzn2.0.5 will be installed ---> Package libdwarf.x86_64 0:20130207-4.amzn2.0.2 will be installed ---> Package zlib-devel.x86_64 0:1.2.7-19.amzn2.0.3 will be installed --> Processing Dependency: zlib = 1.2.7-19.amzn2.0.3 for package: zlib-devel-1.2.7-19.amzn2.0.3.x86_64 --> Running transaction check ---> Package zlib.x86_64 0:1.2.7-19.amzn2.0.2 will be updated ---> Package zlib.x86_64 0:1.2.7-19.amzn2.0.3 will be an update --> Finished Dependency Resolution Dependencies Resolved ================================================================================ Package Arch Version Repository Size ================================================================================ Installing for group install "Development Tools": autoconf noarch 2.69-11.amzn2 amzn2-core 701 k automake noarch 1.13.4-3.1.amzn2 amzn2-core 679 k bison x86_64 3.0.4-6.amzn2.0.2 amzn2-core 674 k byacc x86_64 1.9.20130304-3.amzn2.0.2 amzn2-core 66 k cscope x86_64 15.8-10.amzn2.0.2 amzn2-core 204 k ctags x86_64 5.8-13.amzn2.0.2 amzn2-core 157 k diffstat x86_64 1.57-4.amzn2.0.2 amzn2-core 35 k doxygen x86_64 1:1.8.5-4.amzn2 amzn2-core 3.5 M elfutils x86_64 0.176-2.amzn2.0.2 amzn2-core 303 k flex x86_64 2.5.37-3.amzn2.0.3 amzn2-core 291 k gcc-gfortran x86_64 7.3.1-17.amzn2 amzn2-core 11 M gettext x86_64 0.19.8.1-3.amzn2 amzn2-core 1.0 M indent x86_64 2.2.11-13.amzn2.0.2 amzn2-core 150 k intltool noarch 0.50.2-7.amzn2 amzn2-core 59 k libtool x86_64 2.4.2-22.2.amzn2.0.2 amzn2-core 588 k make x86_64 1:3.82-24.amzn2 amzn2-core 420 k patch x86_64 2.7.1-12.amzn2.0.2 amzn2-core 110 k patchutils x86_64 0.3.3-4.amzn2.0.1 amzn2-core 104 k pkgconfig x86_64 1:0.27.1-4.amzn2.0.2 amzn2-core 54 k rcs x86_64 5.9.0-5.amzn2.0.2 amzn2-core 231 k rpm-build x86_64 4.11.3-48.amzn2.0.3 amzn2-core 150 k rpm-sign x86_64 4.11.3-48.amzn2.0.3 amzn2-core 50 k subversion x86_64 1.7.14-16.amzn2.0.1 amzn2-core 1.0 M swig x86_64 3.0.12-11.amzn2.0.3 amzn2-core 1.4 M system-rpm-config noarch 9.1.0-76.amzn2.0.14 amzn2-core 90 k systemtap x86_64 4.5-1.amzn2.0.1 amzn2-core 12 k Installing for dependencies: apr x86_64 1.7.2-1.amzn2 amzn2-core 130 k apr-util x86_64 1.6.3-1.amzn2.0.1 amzn2-core 101 k apr-util-bdb x86_64 1.6.3-1.amzn2.0.1 amzn2-core 22 k avahi-libs x86_64 0.6.31-20.amzn2.0.2 amzn2-core 61 k boost-date-time x86_64 1.53.0-27.amzn2.0.5 amzn2-core 52 k boost-system x86_64 1.53.0-27.amzn2.0.5 amzn2-core 40 k boost-thread x86_64 1.53.0-27.amzn2.0.5 amzn2-core 73 k bzip2 x86_64 1.0.6-13.amzn2.0.3 amzn2-core 52 k dwz x86_64 0.11-3.amzn2.0.3 amzn2-core 98 k dyninst x86_64 9.3.1-3.amzn2 amzn2-core 3.5 M efivar-libs x86_64 31-4.amzn2.0.4 amzn2-core 68 k elfutils-libelf-devel x86_64 0.176-2.amzn2.0.2 amzn2-core 40 k emacs-filesystem noarch 1:27.2-4.amzn2.0.4 amzn2-core 68 k file x86_64 5.11-36.amzn2.0.1 amzn2-core 57 k gdb x86_64 8.0.1-36.amzn2.0.1 amzn2-core 3.1 M gettext-common-devel noarch 0.19.8.1-3.amzn2 amzn2-core 410 k gettext-devel x86_64 0.19.8.1-3.amzn2 amzn2-core 320 k gettext-libs x86_64 0.19.8.1-3.amzn2 amzn2-core 500 k gnutls x86_64 3.3.29-9.amzn2.0.1 amzn2-core 661 k go-srpm-macros noarch 3.0.15-23.amzn2.0.2 amzn2-core 23 k hardlink x86_64 1:1.3-3.amzn2 amzn2-core 23 k json-c x86_64 0.11-4.amzn2.0.4 amzn2-core 30 k kernel-devel x86_64 4.14.327-246.539.amzn2 amzn2-core 13 M libcroco x86_64 0.6.12-6.amzn2 amzn2-core 103 k libdwarf x86_64 20130207-4.amzn2.0.2 amzn2-core 111 k libgfortran x86_64 7.3.1-17.amzn2 amzn2-core 536 k libmodman x86_64 2.0.1-8.amzn2.0.2 amzn2-core 29 k libproxy x86_64 0.4.11-10.amzn2.0.3 amzn2-core 61 k m4 x86_64 1.4.16-10.amzn2.0.2 amzn2-core 256 k mokutil x86_64 1:0.3.0-10.amzn2.0.1 amzn2-core 39 k neon x86_64 0.30.0-3.amzn2.0.2 amzn2-core 166 k nettle x86_64 2.7.1-9.amzn2 amzn2-core 327 k pakchois x86_64 0.4-10.amzn2.0.2 amzn2-core 14 k perl-Data-Dumper x86_64 2.145-3.amzn2.0.2 amzn2-core 48 k perl-Test-Harness noarch 3.28-3.amzn2 amzn2-core 302 k perl-Thread-Queue noarch 3.02-2.amzn2 amzn2-core 17 k perl-XML-Parser x86_64 2.41-10.amzn2.0.2 amzn2-core 223 k perl-srpm-macros noarch 1-8.amzn2.0.1 amzn2-core 4.7 k subversion-libs x86_64 1.7.14-16.amzn2.0.1 amzn2-core 912 k systemd-sysv x86_64 219-78.amzn2.0.22 amzn2-core 98 k systemtap-client x86_64 4.5-1.amzn2.0.1 amzn2-core 3.7 M systemtap-devel x86_64 4.5-1.amzn2.0.1 amzn2-core 2.3 M systemtap-runtime x86_64 4.5-1.amzn2.0.1 amzn2-core 475 k trousers x86_64 0.3.14-2.amzn2.0.2 amzn2-core 294 k unzip x86_64 6.0-57.amzn2.0.1 amzn2-core 182 k xz x86_64 5.2.2-1.amzn2.0.3 amzn2-core 228 k zip x86_64 3.0-11.amzn2.0.2 amzn2-core 263 k zlib-devel x86_64 1.2.7-19.amzn2.0.3 amzn2-core 51 k Updating for dependencies: zlib x86_64 1.2.7-19.amzn2.0.3 amzn2-core 90 k Transaction Summary ================================================================================ Install 26 Packages (+48 Dependent packages) Upgrade ( 1 Dependent package) Total download size: 55 M Downloading packages: Delta RPMs disabled because /usr/bin/applydeltarpm not installed. -------------------------------------------------------------------------------- Total 11 MB/s | 55 MB 00:05 Running transaction check Running transaction test Transaction test succeeded Running transaction Updating : zlib-1.2.7-19.amzn2.0.3.x86_64 1/76 Installing : m4-1.4.16-10.amzn2.0.2.x86_64 2/76 Installing : 1:pkgconfig-0.27.1-4.amzn2.0.2.x86_64 3/76 Installing : boost-system-1.53.0-27.amzn2.0.5.x86_64 4/76 Installing : apr-1.7.2-1.amzn2.x86_64 5/76 Installing : apr-util-bdb-1.6.3-1.amzn2.0.1.x86_64 6/76 Installing : apr-util-1.6.3-1.amzn2.0.1.x86_64 7/76 Installing : zip-3.0-11.amzn2.0.2.x86_64 8/76 Installing : avahi-libs-0.6.31-20.amzn2.0.2.x86_64 9/76 Installing : xz-5.2.2-1.amzn2.0.3.x86_64 10/76 Installing : unzip-6.0-57.amzn2.0.1.x86_64 11/76 Installing : libcroco-0.6.12-6.amzn2.x86_64 12/76 Installing : gettext-libs-0.19.8.1-3.amzn2.x86_64 13/76 Installing : patch-2.7.1-12.amzn2.0.2.x86_64 14/76 Installing : perl-Thread-Queue-3.02-2.amzn2.noarch 15/76 Installing : gettext-0.19.8.1-3.amzn2.x86_64 16/76 Installing : boost-thread-1.53.0-27.amzn2.0.5.x86_64 17/76 Installing : zlib-devel-1.2.7-19.amzn2.0.3.x86_64 18/76 Installing : elfutils-libelf-devel-0.176-2.amzn2.0.2.x86_64 19/76 Installing : gdb-8.0.1-36.amzn2.0.1.x86_64 20/76 Installing : file-5.11-36.amzn2.0.1.x86_64 21/76 Installing : libmodman-2.0.1-8.amzn2.0.2.x86_64 22/76 Installing : libproxy-0.4.11-10.amzn2.0.3.x86_64 23/76 Installing : perl-XML-Parser-2.41-10.amzn2.0.2.x86_64 24/76 Installing : bzip2-1.0.6-13.amzn2.0.3.x86_64 25/76 Installing : gettext-common-devel-0.19.8.1-3.amzn2.noarch 26/76 Installing : gettext-devel-0.19.8.1-3.amzn2.x86_64 27/76 Installing : dwz-0.11-3.amzn2.0.3.x86_64 28/76 Installing : systemd-sysv-219-78.amzn2.0.22.x86_64 29/76 Installing : 1:make-3.82-24.amzn2.x86_64 30/76 Installing : elfutils-0.176-2.amzn2.0.2.x86_64 31/76 Installing : 1:emacs-filesystem-27.2-4.amzn2.0.4.noarch 32/76 Installing : efivar-libs-31-4.amzn2.0.4.x86_64 33/76 Installing : 1:mokutil-0.3.0-10.amzn2.0.1.x86_64 34/76 Installing : perl-srpm-macros-1-8.amzn2.0.1.noarch 35/76 Installing : go-srpm-macros-3.0.15-23.amzn2.0.2.noarch 36/76 Installing : system-rpm-config-9.1.0-76.amzn2.0.14.noarch 37/76 Installing : perl-Data-Dumper-2.145-3.amzn2.0.2.x86_64 38/76 Installing : autoconf-2.69-11.amzn2.noarch 39/76 Installing : trousers-0.3.14-2.amzn2.0.2.x86_64 40/76 Installing : json-c-0.11-4.amzn2.0.4.x86_64 41/76 Installing : perl-Test-Harness-3.28-3.amzn2.noarch 42/76 Installing : automake-1.13.4-3.1.amzn2.noarch 43/76 Installing : libgfortran-7.3.1-17.amzn2.x86_64 44/76 Installing : libdwarf-20130207-4.amzn2.0.2.x86_64 45/76 Installing : pakchois-0.4-10.amzn2.0.2.x86_64 46/76 Installing : nettle-2.7.1-9.amzn2.x86_64 47/76 Installing : gnutls-3.3.29-9.amzn2.0.1.x86_64 48/76 Installing : neon-0.30.0-3.amzn2.0.2.x86_64 49/76 Installing : subversion-libs-1.7.14-16.amzn2.0.1.x86_64 50/76 Installing : 1:hardlink-1.3-3.amzn2.x86_64 51/76 Installing : kernel-devel-4.14.327-246.539.amzn2.x86_64 52/76 Installing : systemtap-devel-4.5-1.amzn2.0.1.x86_64 53/76 Installing : boost-date-time-1.53.0-27.amzn2.0.5.x86_64 54/76 Installing : dyninst-9.3.1-3.amzn2.x86_64 55/76 Installing : systemtap-runtime-4.5-1.amzn2.0.1.x86_64 56/76 Installing : systemtap-client-4.5-1.amzn2.0.1.x86_64 57/76 Installing : systemtap-4.5-1.amzn2.0.1.x86_64 58/76 Installing : subversion-1.7.14-16.amzn2.0.1.x86_64 59/76 Installing : gcc-gfortran-7.3.1-17.amzn2.x86_64 60/76 Installing : intltool-0.50.2-7.amzn2.noarch 61/76 Installing : libtool-2.4.2-22.2.amzn2.0.2.x86_64 62/76 Installing : rpm-build-4.11.3-48.amzn2.0.3.x86_64 63/76 Installing : cscope-15.8-10.amzn2.0.2.x86_64 64/76 Installing : flex-2.5.37-3.amzn2.0.3.x86_64 65/76 Installing : bison-3.0.4-6.amzn2.0.2.x86_64 66/76 Installing : rpm-sign-4.11.3-48.amzn2.0.3.x86_64 67/76 Installing : patchutils-0.3.3-4.amzn2.0.1.x86_64 68/76 Installing : rcs-5.9.0-5.amzn2.0.2.x86_64 69/76 Installing : indent-2.2.11-13.amzn2.0.2.x86_64 70/76 Installing : 1:doxygen-1.8.5-4.amzn2.x86_64 71/76 Installing : diffstat-1.57-4.amzn2.0.2.x86_64 72/76 Installing : byacc-1.9.20130304-3.amzn2.0.2.x86_64 73/76 Installing : swig-3.0.12-11.amzn2.0.3.x86_64 74/76 Installing : ctags-5.8-13.amzn2.0.2.x86_64 75/76 Cleanup : zlib-1.2.7-19.amzn2.0.2.x86_64 76/76 Verifying : zlib-1.2.7-19.amzn2.0.3.x86_64 1/76 Verifying : perl-Thread-Queue-3.02-2.amzn2.noarch 2/76 Verifying : gettext-devel-0.19.8.1-3.amzn2.x86_64 3/76 Verifying : patch-2.7.1-12.amzn2.0.2.x86_64 4/76 Verifying : boost-date-time-1.53.0-27.amzn2.0.5.x86_64 5/76 Verifying : flex-2.5.37-3.amzn2.0.3.x86_64 6/76 Verifying : apr-1.7.2-1.amzn2.x86_64 7/76 Verifying : 1:hardlink-1.3-3.amzn2.x86_64 8/76 Verifying : nettle-2.7.1-9.amzn2.x86_64 9/76 Verifying : gcc-gfortran-7.3.1-17.amzn2.x86_64 10/76 Verifying : ctags-5.8-13.amzn2.0.2.x86_64 11/76 Verifying : swig-3.0.12-11.amzn2.0.3.x86_64 12/76 Verifying : byacc-1.9.20130304-3.amzn2.0.2.x86_64 13/76 Verifying : libcroco-0.6.12-6.amzn2.x86_64 14/76 Verifying : pakchois-0.4-10.amzn2.0.2.x86_64 15/76 Verifying : libdwarf-20130207-4.amzn2.0.2.x86_64 16/76 Verifying : kernel-devel-4.14.327-246.539.amzn2.x86_64 17/76 Verifying : dyninst-9.3.1-3.amzn2.x86_64 18/76 Verifying : gettext-libs-0.19.8.1-3.amzn2.x86_64 19/76 Verifying : cscope-15.8-10.amzn2.0.2.x86_64 20/76 Verifying : unzip-6.0-57.amzn2.0.1.x86_64 21/76 Verifying : diffstat-1.57-4.amzn2.0.2.x86_64 22/76 Verifying : 1:doxygen-1.8.5-4.amzn2.x86_64 23/76 Verifying : 1:mokutil-0.3.0-10.amzn2.0.1.x86_64 24/76 Verifying : system-rpm-config-9.1.0-76.amzn2.0.14.noarch 25/76 Verifying : systemtap-devel-4.5-1.amzn2.0.1.x86_64 26/76 Verifying : libgfortran-7.3.1-17.amzn2.x86_64 27/76 Verifying : gettext-0.19.8.1-3.amzn2.x86_64 28/76 Verifying : perl-Test-Harness-3.28-3.amzn2.noarch 29/76 Verifying : autoconf-2.69-11.amzn2.noarch 30/76 Verifying : intltool-0.50.2-7.amzn2.noarch 31/76 Verifying : zlib-devel-1.2.7-19.amzn2.0.3.x86_64 32/76 Verifying : apr-util-1.6.3-1.amzn2.0.1.x86_64 33/76 Verifying : libproxy-0.4.11-10.amzn2.0.3.x86_64 34/76 Verifying : boost-system-1.53.0-27.amzn2.0.5.x86_64 35/76 Verifying : json-c-0.11-4.amzn2.0.4.x86_64 36/76 Verifying : trousers-0.3.14-2.amzn2.0.2.x86_64 37/76 Verifying : xz-5.2.2-1.amzn2.0.3.x86_64 38/76 Verifying : perl-Data-Dumper-2.145-3.amzn2.0.2.x86_64 39/76 Verifying : perl-srpm-macros-1-8.amzn2.0.1.noarch 40/76 Verifying : gnutls-3.3.29-9.amzn2.0.1.x86_64 41/76 Verifying : subversion-libs-1.7.14-16.amzn2.0.1.x86_64 42/76 Verifying : automake-1.13.4-3.1.amzn2.noarch 43/76 Verifying : rpm-sign-4.11.3-48.amzn2.0.3.x86_64 44/76 Verifying : bison-3.0.4-6.amzn2.0.2.x86_64 45/76 Verifying : efivar-libs-31-4.amzn2.0.4.x86_64 46/76 Verifying : 1:pkgconfig-0.27.1-4.amzn2.0.2.x86_64 47/76 Verifying : 1:emacs-filesystem-27.2-4.amzn2.0.4.noarch 48/76 Verifying : gdb-8.0.1-36.amzn2.0.1.x86_64 49/76 Verifying : elfutils-0.176-2.amzn2.0.2.x86_64 50/76 Verifying : go-srpm-macros-3.0.15-23.amzn2.0.2.noarch 51/76 Verifying : libtool-2.4.2-22.2.amzn2.0.2.x86_64 52/76 Verifying : indent-2.2.11-13.amzn2.0.2.x86_64 53/76 Verifying : subversion-1.7.14-16.amzn2.0.1.x86_64 54/76 Verifying : 1:make-3.82-24.amzn2.x86_64 55/76 Verifying : avahi-libs-0.6.31-20.amzn2.0.2.x86_64 56/76 Verifying : systemd-sysv-219-78.amzn2.0.22.x86_64 57/76 Verifying : apr-util-bdb-1.6.3-1.amzn2.0.1.x86_64 58/76 Verifying : neon-0.30.0-3.amzn2.0.2.x86_64 59/76 Verifying : systemtap-4.5-1.amzn2.0.1.x86_64 60/76 Verifying : dwz-0.11-3.amzn2.0.3.x86_64 61/76 Verifying : gettext-common-devel-0.19.8.1-3.amzn2.noarch 62/76 Verifying : systemtap-client-4.5-1.amzn2.0.1.x86_64 63/76 Verifying : zip-3.0-11.amzn2.0.2.x86_64 64/76 Verifying : bzip2-1.0.6-13.amzn2.0.3.x86_64 65/76 Verifying : rcs-5.9.0-5.amzn2.0.2.x86_64 66/76 Verifying : boost-thread-1.53.0-27.amzn2.0.5.x86_64 67/76 Verifying : file-5.11-36.amzn2.0.1.x86_64 68/76 Verifying : rpm-build-4.11.3-48.amzn2.0.3.x86_64 69/76 Verifying : patchutils-0.3.3-4.amzn2.0.1.x86_64 70/76 Verifying : systemtap-runtime-4.5-1.amzn2.0.1.x86_64 71/76 Verifying : elfutils-libelf-devel-0.176-2.amzn2.0.2.x86_64 72/76 Verifying : m4-1.4.16-10.amzn2.0.2.x86_64 73/76 Verifying : perl-XML-Parser-2.41-10.amzn2.0.2.x86_64 74/76 Verifying : libmodman-2.0.1-8.amzn2.0.2.x86_64 75/76 Verifying : zlib-1.2.7-19.amzn2.0.2.x86_64 76/76 Installed: autoconf.noarch 0:2.69-11.amzn2 automake.noarch 0:1.13.4-3.1.amzn2 bison.x86_64 0:3.0.4-6.amzn2.0.2 byacc.x86_64 0:1.9.20130304-3.amzn2.0.2 cscope.x86_64 0:15.8-10.amzn2.0.2 ctags.x86_64 0:5.8-13.amzn2.0.2 diffstat.x86_64 0:1.57-4.amzn2.0.2 doxygen.x86_64 1:1.8.5-4.amzn2 elfutils.x86_64 0:0.176-2.amzn2.0.2 flex.x86_64 0:2.5.37-3.amzn2.0.3 gcc-gfortran.x86_64 0:7.3.1-17.amzn2 gettext.x86_64 0:0.19.8.1-3.amzn2 indent.x86_64 0:2.2.11-13.amzn2.0.2 intltool.noarch 0:0.50.2-7.amzn2 libtool.x86_64 0:2.4.2-22.2.amzn2.0.2 make.x86_64 1:3.82-24.amzn2 patch.x86_64 0:2.7.1-12.amzn2.0.2 patchutils.x86_64 0:0.3.3-4.amzn2.0.1 pkgconfig.x86_64 1:0.27.1-4.amzn2.0.2 rcs.x86_64 0:5.9.0-5.amzn2.0.2 rpm-build.x86_64 0:4.11.3-48.amzn2.0.3 rpm-sign.x86_64 0:4.11.3-48.amzn2.0.3 subversion.x86_64 0:1.7.14-16.amzn2.0.1 swig.x86_64 0:3.0.12-11.amzn2.0.3 system-rpm-config.noarch 0:9.1.0-76.amzn2.0.14 systemtap.x86_64 0:4.5-1.amzn2.0.1 Dependency Installed: apr.x86_64 0:1.7.2-1.amzn2 apr-util.x86_64 0:1.6.3-1.amzn2.0.1 apr-util-bdb.x86_64 0:1.6.3-1.amzn2.0.1 avahi-libs.x86_64 0:0.6.31-20.amzn2.0.2 boost-date-time.x86_64 0:1.53.0-27.amzn2.0.5 boost-system.x86_64 0:1.53.0-27.amzn2.0.5 boost-thread.x86_64 0:1.53.0-27.amzn2.0.5 bzip2.x86_64 0:1.0.6-13.amzn2.0.3 dwz.x86_64 0:0.11-3.amzn2.0.3 dyninst.x86_64 0:9.3.1-3.amzn2 efivar-libs.x86_64 0:31-4.amzn2.0.4 elfutils-libelf-devel.x86_64 0:0.176-2.amzn2.0.2 emacs-filesystem.noarch 1:27.2-4.amzn2.0.4 file.x86_64 0:5.11-36.amzn2.0.1 gdb.x86_64 0:8.0.1-36.amzn2.0.1 gettext-common-devel.noarch 0:0.19.8.1-3.amzn2 gettext-devel.x86_64 0:0.19.8.1-3.amzn2 gettext-libs.x86_64 0:0.19.8.1-3.amzn2 gnutls.x86_64 0:3.3.29-9.amzn2.0.1 go-srpm-macros.noarch 0:3.0.15-23.amzn2.0.2 hardlink.x86_64 1:1.3-3.amzn2 json-c.x86_64 0:0.11-4.amzn2.0.4 kernel-devel.x86_64 0:4.14.327-246.539.amzn2 libcroco.x86_64 0:0.6.12-6.amzn2 libdwarf.x86_64 0:20130207-4.amzn2.0.2 libgfortran.x86_64 0:7.3.1-17.amzn2 libmodman.x86_64 0:2.0.1-8.amzn2.0.2 libproxy.x86_64 0:0.4.11-10.amzn2.0.3 m4.x86_64 0:1.4.16-10.amzn2.0.2 mokutil.x86_64 1:0.3.0-10.amzn2.0.1 neon.x86_64 0:0.30.0-3.amzn2.0.2 nettle.x86_64 0:2.7.1-9.amzn2 pakchois.x86_64 0:0.4-10.amzn2.0.2 perl-Data-Dumper.x86_64 0:2.145-3.amzn2.0.2 perl-Test-Harness.noarch 0:3.28-3.amzn2 perl-Thread-Queue.noarch 0:3.02-2.amzn2 perl-XML-Parser.x86_64 0:2.41-10.amzn2.0.2 perl-srpm-macros.noarch 0:1-8.amzn2.0.1 subversion-libs.x86_64 0:1.7.14-16.amzn2.0.1 systemd-sysv.x86_64 0:219-78.amzn2.0.22 systemtap-client.x86_64 0:4.5-1.amzn2.0.1 systemtap-devel.x86_64 0:4.5-1.amzn2.0.1 systemtap-runtime.x86_64 0:4.5-1.amzn2.0.1 trousers.x86_64 0:0.3.14-2.amzn2.0.2 unzip.x86_64 0:6.0-57.amzn2.0.1 xz.x86_64 0:5.2.2-1.amzn2.0.3 zip.x86_64 0:3.0-11.amzn2.0.2 zlib-devel.x86_64 0:1.2.7-19.amzn2.0.3 Dependency Updated: zlib.x86_64 0:1.2.7-19.amzn2.0.3 Complete!% ```
ashvardanian commented 1 year ago

@jlarmstrongiv, that's not the same error. You've skipped the very first step of procedure - pulling the GIT submodules. Please try that way, and let's think of a way of controlling this setting without forking 😄

jlarmstrongiv commented 1 year ago

@ashvardanian

I think I’ve jumped too far ahead. My goal is to be able to install usearch on Amazon Linux 2.

Without building for Amazon Linux 2 specifically, I will be unable to run the node c++ bindings.

Some libraries, like sharp, provide prebuilt binaries for AWS Lambda. Others, like hnswlib-node do not provide prebuilt binaries, but will build if using the --build-from-source flag with their required build dependencies (like like gcc-c++, python3, etc.)

To build usearch for AWS Lambda, I am:

Initially, I couldn’t find a way to change the flags without forking, but it appears I can pass them in as npm flags like npm install --USEARCH_USE_SIMSIMD=0 --SIMSIMD_TARGET_X86_AVX512=0 --build-from-source usearch@2.8.6.

I’m not really sure how I would pull the git submodules during the npm install --build-from-source usearch@2.8.6?

Unfortunately, I’m still running into an error though.

Error logs ``` Command failed with exit code 1: docker run --entrypoint /bin/bash -v /var/folders/zf/2l3hc6vn12v7r89t45mhxzhm0000gn/T/018bb1bc-969c-707b-ad77-f3642f0 87671:/var/task --rm public.ecr.aws/lambda/nodejs:18-x86_64 -c npm install -g npm@10.2.3 && yum install tar git python3 cmake gcc-c++ -y && yum groupinstall "Development Tools" -y && npm install --USEARCH_USE_SIMSIMD=0 --SIMSIMD_TARGET_X86_AVX512=0 --build-from-source usearch@2.8.6 There is no installed groups file. Maybe run: yum groups mark convert (see man yum) npm ERR! code 1 npm ERR! path /var/task/node_modules/usearch npm ERR! command failed npm ERR! command sh -c node-gyp rebuild npm ERR! make: Entering directory `/var/task/node_modules/usearch/build' npm ERR! CC(target) Release/obj.target/nothing/../node-addon-api/nothing.o npm ERR! rm -f Release/obj.target/../node-addon-api/nothing.a Release/obj.target/../node-addon-api/nothing.a.ar-file-list; mkdir -p `dirname Release/obj.target/../node-addon-api/nothing.a` npm ERR! ar crs Release/obj.target/../node-addon-api/nothing.a @Release/obj.target/../node-addon-api/nothing.a.ar-file-list npm ERR! COPY Release/nothing.a npm ERR! CXX(target) Release/obj.target/usearch/javascript/lib.o npm ERR! make: Leaving directory `/var/task/node_modules/usearch/build' npm ERR! gyp info it worked if it ends with ok npm ERR! gyp info using node-gyp@10.0.1 npm ERR! gyp info using node@18.18.2 | linux | x64 npm ERR! gyp info find Python using Python version 3.7.16 found at "/usr/bin/python3" npm ERR! gyp http GET https://nodejs.org/download/release/v18.18.2/node-v18.18.2-headers.tar.gz npm ERR! gyp http 200 https://nodejs.org/download/release/v18.18.2/node-v18.18.2-headers.tar.gz npm ERR! gyp http GET https://nodejs.org/download/release/v18.18.2/SHASUMS256.txt npm ERR! gyp http 200 https://nodejs.org/download/release/v18.18.2/SHASUMS256.txt npm ERR! gyp info spawn /usr/bin/python3 npm ERR! gyp info spawn args [ npm ERR! gyp info spawn args '/var/lang/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py', npm ERR! gyp info spawn args 'binding.gyp', npm ERR! gyp info spawn args '-f', npm ERR! gyp info spawn args 'make', npm ERR! gyp info spawn args '-I', npm ERR! gyp info spawn args '/var/task/node_modules/usearch/build/config.gypi', npm ERR! gyp info spawn args '-I', npm ERR! gyp info spawn args '/var/lang/lib/node_modules/npm/node_modules/node-gyp/addon.gypi', npm ERR! gyp info spawn args '-I', npm ERR! gyp info spawn args '/root/.cache/node-gyp/18.18.2/include/node/common.gypi', npm ERR! gyp info spawn args '-Dlibrary=shared_library', npm ERR! gyp info spawn args '-Dvisibility=default', npm ERR! gyp info spawn args '-Dnode_root_dir=/root/.cache/node-gyp/18.18.2', npm ERR! gyp info spawn args '-Dnode_gyp_dir=/var/lang/lib/node_modules/npm/node_modules/node-gyp', npm ERR! gyp info spawn args '-Dnode_lib_file=/root/.cache/node-gyp/18.18.2/<(target_arch)/node.lib', npm ERR! gyp info spawn args '-Dmodule_root_dir=/var/task/node_modules/usearch', npm ERR! gyp info spawn args '-Dnode_engine=v8', npm ERR! gyp info spawn args '--depth=.', npm ERR! gyp info spawn args '--no-parallel', npm ERR! gyp info spawn args '--generator-output', npm ERR! gyp info spawn args 'build', npm ERR! gyp info spawn args '-Goutput_dir=.' npm ERR! gyp info spawn args ] npm ERR! gyp info spawn make npm ERR! gyp info spawn args [ 'BUILDTYPE=Release', '-C', 'build' ] npm ERR! In file included from ../simsimd/include/simsimd/simsimd.h:15:0, npm ERR! from ../include/usearch/index_plugins.hpp:51, npm ERR! from ../include/usearch/index_dense.hpp:10, npm ERR! from ../javascript/lib.cpp:18: npm ERR! ../simsimd/include/simsimd/binary.h: In function ‘simsimd_f32_t simsimd_avx512_b8_hamming(const simsimd_b8_t*, const simsimd_b8_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/binary.h:149:17: error: ‘_mm512_loadu_epi8’ was not declared in this scope npm ERR! a_vec = _mm512_loadu_epi8(a); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/binary.h:149:17: note: suggested alternative: ‘_mm512_add_epi8’ npm ERR! a_vec = _mm512_loadu_epi8(a); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! _mm512_add_epi8 npm ERR! ../simsimd/include/simsimd/binary.h: In function ‘simsimd_f32_t simsimd_avx512_b8_jaccard(const simsimd_b8_t*, const simsimd_b8_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/binary.h:175:17: error: ‘_mm512_loadu_epi8’ was not declared in this scope npm ERR! a_vec = _mm512_loadu_epi8(a); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/binary.h:175:17: note: suggested alternative: ‘_mm512_add_epi8’ npm ERR! a_vec = _mm512_loadu_epi8(a); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! _mm512_add_epi8 npm ERR! In file included from ../simsimd/include/simsimd/simsimd.h:16:0, npm ERR! from ../include/usearch/index_plugins.hpp:51, npm ERR! from ../include/usearch/index_dense.hpp:10, npm ERR! from ../javascript/lib.cpp:18: npm ERR! ../simsimd/include/simsimd/probability.h: In function ‘simsimd_f32_t simsimd_avx512_f32_js(const simsimd_f32_t*, const simsimd_f32_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/probability.h:427:12: warning: unused variable ‘m_recip_approx’ [-Wunused-variable] npm ERR! __m512 m_recip_approx = _mm512_rcp14_ps(m_vec); npm ERR! ^~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h: At global scope: npm ERR! ../simsimd/include/simsimd/probability.h:453:8: error: ‘__m512h’ does not name a type; did you mean ‘__m512d’? npm ERR! inline __m512h npm ERR! ^~~~~~~ npm ERR! __m512d npm ERR! ../simsimd/include/simsimd/probability.h:473:87: error: attribute(target("avx512fp16")) is unknown npm ERR! simsimd_avx512_f16_kl(simsimd_f16_t const* a, simsimd_f16_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! ../simsimd/include/simsimd/probability.h: In function ‘simsimd_f32_t simsimd_avx512_f16_kl(const simsimd_f16_t*, const simsimd_f16_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/probability.h:474:5: error: ‘__m512h’ was not declared in this scope npm ERR! __m512h sum_vec = _mm512_set1_ph((_Float16)0); npm ERR! ^~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:474:5: note: suggested alternative: ‘__m512d’ npm ERR! __m512h sum_vec = _mm512_set1_ph((_Float16)0); npm ERR! ^~~~~~~ npm ERR! __m512d npm ERR! ../simsimd/include/simsimd/probability.h:475:13: error: expected ‘;’ before ‘epsilon_vec’ npm ERR! __m512h epsilon_vec = _mm512_set1_ph((_Float16)SIMSIMD_F16_DIVISION_EPSILON); npm ERR! ^~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:476:13: error: expected ‘;’ before ‘a_vec’ npm ERR! __m512h a_vec, b_vec; npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:481:9: error: ‘a_vec’ was not declared in this scope npm ERR! a_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)), epsilon_vec); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:481:9: note: suggested alternative: ‘iovec’ npm ERR! a_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)), epsilon_vec); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:481:43: error: ‘_mm512_castsi512_ph’ was not declared in this scope npm ERR! a_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:481:43: note: suggested alternative: ‘_mm512_castsi512_pd’ npm ERR! a_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_castsi512_pd npm ERR! ../simsimd/include/simsimd/probability.h:481:99: error: ‘epsilon_vec’ was not declared in this scope npm ERR! a_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)), epsilon_vec); npm ERR! ^~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:481:17: error: ‘_mm512_maskz_add_ph’ was not declared in this scope npm ERR! a_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:481:17: note: suggested alternative: ‘_mm512_maskz_add_ps’ npm ERR! a_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_maskz_add_ps npm ERR! ../simsimd/include/simsimd/probability.h:482:9: error: ‘b_vec’ was not declared in this scope npm ERR! b_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, b)), epsilon_vec); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:482:9: note: suggested alternative: ‘iovec’ npm ERR! b_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, b)), epsilon_vec); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:485:9: error: ‘a_vec’ was not declared in this scope npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:485:9: note: suggested alternative: ‘iovec’ npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:485:51: error: ‘_mm512_loadu_epi16’ was not declared in this scope npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:485:51: note: suggested alternative: ‘_mm512_madd_epi16’ npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! _mm512_madd_epi16 npm ERR! ../simsimd/include/simsimd/probability.h:485:31: error: ‘_mm512_castsi512_ph’ was not declared in this scope npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:485:31: note: suggested alternative: ‘_mm512_castsi512_pd’ npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_castsi512_pd npm ERR! ../simsimd/include/simsimd/probability.h:485:75: error: ‘epsilon_vec’ was not declared in this scope npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:485:17: error: ‘_mm512_add_ph’ was not declared in this scope npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:485:17: note: suggested alternative: ‘_mm512_add_ps’ npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~ npm ERR! _mm512_add_ps npm ERR! ../simsimd/include/simsimd/probability.h:486:9: error: ‘b_vec’ was not declared in this scope npm ERR! b_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(b)), epsilon_vec); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:486:9: note: suggested alternative: ‘iovec’ npm ERR! b_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(b)), epsilon_vec); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:489:13: error: expected ‘;’ before ‘ratio_vec’ npm ERR! __m512h ratio_vec = _mm512_div_ph(a_vec, b_vec); npm ERR! ^~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:490:13: error: expected ‘;’ before ‘log_ratio_vec’ npm ERR! __m512h log_ratio_vec = simsimd_avx512_f16_log2(ratio_vec); npm ERR! ^~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:491:13: error: expected ‘;’ before ‘prod_vec’ npm ERR! __m512h prod_vec = _mm512_mul_ph(a_vec, log_ratio_vec); npm ERR! ^~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:492:5: error: ‘sum_vec’ was not declared in this scope npm ERR! sum_vec = _mm512_add_ph(sum_vec, prod_vec); npm ERR! ^~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:492:5: note: suggested alternative: ‘shm_open’ npm ERR! sum_vec = _mm512_add_ph(sum_vec, prod_vec); npm ERR! ^~~~~~~ npm ERR! shm_open npm ERR! ../simsimd/include/simsimd/probability.h:492:38: error: ‘prod_vec’ was not declared in this scope npm ERR! sum_vec = _mm512_add_ph(sum_vec, prod_vec); npm ERR! ^~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:492:38: note: suggested alternative: ‘iovec’ npm ERR! sum_vec = _mm512_add_ph(sum_vec, prod_vec); npm ERR! ^~~~~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:492:15: error: ‘_mm512_add_ph’ was not declared in this scope npm ERR! sum_vec = _mm512_add_ph(sum_vec, prod_vec); npm ERR! ^~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:492:15: note: suggested alternative: ‘_mm512_add_ps’ npm ERR! sum_vec = _mm512_add_ph(sum_vec, prod_vec); npm ERR! ^~~~~~~~~~~~~ npm ERR! _mm512_add_ps npm ERR! ../simsimd/include/simsimd/probability.h:497:12: error: ‘_mm512_reduce_add_ph’ was not declared in this scope npm ERR! return _mm512_reduce_add_ph(sum_vec) * log2_normalizer; npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:497:12: note: suggested alternative: ‘_mm512_reduce_add_pd’ npm ERR! return _mm512_reduce_add_ph(sum_vec) * log2_normalizer; npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_reduce_add_pd npm ERR! ../simsimd/include/simsimd/probability.h: At global scope: npm ERR! ../simsimd/include/simsimd/probability.h:502:87: error: attribute(target("avx512fp16")) is unknown npm ERR! simsimd_avx512_f16_js(simsimd_f16_t const* a, simsimd_f16_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! ../simsimd/include/simsimd/probability.h: In function ‘simsimd_f32_t simsimd_avx512_f16_js(const simsimd_f16_t*, const simsimd_f16_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/probability.h:503:5: error: ‘__m512h’ was not declared in this scope npm ERR! __m512h sum_a_vec = _mm512_set1_ph((_Float16)0); npm ERR! ^~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:503:5: note: suggested alternative: ‘__m512d’ npm ERR! __m512h sum_a_vec = _mm512_set1_ph((_Float16)0); npm ERR! ^~~~~~~ npm ERR! __m512d npm ERR! ../simsimd/include/simsimd/probability.h:504:13: error: expected ‘;’ before ‘sum_b_vec’ npm ERR! __m512h sum_b_vec = _mm512_set1_ph((_Float16)0); npm ERR! ^~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:505:13: error: expected ‘;’ before ‘epsilon_vec’ npm ERR! __m512h epsilon_vec = _mm512_set1_ph((_Float16)SIMSIMD_F16_DIVISION_EPSILON); npm ERR! ^~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:506:13: error: expected ‘;’ before ‘a_vec’ npm ERR! __m512h a_vec, b_vec; npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:511:9: error: ‘a_vec’ was not declared in this scope npm ERR! a_vec = _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:511:9: note: suggested alternative: ‘iovec’ npm ERR! a_vec = _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:511:17: error: ‘_mm512_castsi512_ph’ was not declared in this scope npm ERR! a_vec = _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:511:17: note: suggested alternative: ‘_mm512_castsi512_pd’ npm ERR! a_vec = _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_castsi512_pd npm ERR! ../simsimd/include/simsimd/probability.h:512:9: error: ‘b_vec’ was not declared in this scope npm ERR! b_vec = _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, b)); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:512:9: note: suggested alternative: ‘iovec’ npm ERR! b_vec = _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, b)); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:515:9: error: ‘a_vec’ was not declared in this scope npm ERR! a_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(a)); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:515:9: note: suggested alternative: ‘iovec’ npm ERR! a_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(a)); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:515:37: error: ‘_mm512_loadu_epi16’ was not declared in this scope npm ERR! a_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(a)); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:515:37: note: suggested alternative: ‘_mm512_madd_epi16’ npm ERR! a_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(a)); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! _mm512_madd_epi16 npm ERR! ../simsimd/include/simsimd/probability.h:515:17: error: ‘_mm512_castsi512_ph’ was not declared in this scope npm ERR! a_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(a)); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:515:17: note: suggested alternative: ‘_mm512_castsi512_pd’ npm ERR! a_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(a)); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_castsi512_pd npm ERR! ../simsimd/include/simsimd/probability.h:516:9: error: ‘b_vec’ was not declared in this scope npm ERR! b_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(b)); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:516:9: note: suggested alternative: ‘iovec’ npm ERR! b_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(b)); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:519:13: error: expected ‘;’ before ‘m_vec’ npm ERR! __m512h m_vec = _mm512_mul_ph(_mm512_add_ph(a_vec, b_vec), _mm512_set1_ph((_Float16)0.5f)); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:520:51: error: ‘a_vec’ was not declared in this scope npm ERR! __mmask32 nonzero_mask_a = _mm512_cmp_ph_mask(a_vec, epsilon_vec, _CMP_GE_OQ); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:520:51: note: suggested alternative: ‘iovec’ npm ERR! __mmask32 nonzero_mask_a = _mm512_cmp_ph_mask(a_vec, epsilon_vec, _CMP_GE_OQ); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:520:58: error: ‘epsilon_vec’ was not declared in this scope npm ERR! __mmask32 nonzero_mask_a = _mm512_cmp_ph_mask(a_vec, epsilon_vec, _CMP_GE_OQ); npm ERR! ^~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:520:32: error: ‘_mm512_cmp_ph_mask’ was not declared in this scope npm ERR! __mmask32 nonzero_mask_a = _mm512_cmp_ph_mask(a_vec, epsilon_vec, _CMP_GE_OQ); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:520:32: note: suggested alternative: ‘_mm512_cmp_ps_mask’ npm ERR! __mmask32 nonzero_mask_a = _mm512_cmp_ph_mask(a_vec, epsilon_vec, _CMP_GE_OQ); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! _mm512_cmp_ps_mask npm ERR! ../simsimd/include/simsimd/probability.h:521:51: error: ‘b_vec’ was not declared in this scope npm ERR! __mmask32 nonzero_mask_b = _mm512_cmp_ph_mask(b_vec, epsilon_vec, _CMP_GE_OQ); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:521:51: note: suggested alternative: ‘iovec’ npm ERR! __mmask32 nonzero_mask_b = _mm512_cmp_ph_mask(b_vec, epsilon_vec, _CMP_GE_OQ); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:523:13: error: expected ‘;’ before ‘m_recip_approx’ npm ERR! __m512h m_recip_approx = _mm512_rcp_ph(m_vec); npm ERR! ^~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:524:13: error: expected ‘;’ before ‘ratio_a_vec’ npm ERR! __m512h ratio_a_vec = _mm512_mul_ph(a_vec, m_recip_approx); npm ERR! ^~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:525:13: error: expected ‘;’ before ‘ratio_b_vec’ npm ERR! __m512h ratio_b_vec = _mm512_mul_ph(b_vec, m_recip_approx); npm ERR! ^~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:526:13: error: expected ‘;’ before ‘log_ratio_a_vec’ npm ERR! __m512h log_ratio_a_vec = simsimd_avx512_f16_log2(ratio_a_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:527:13: error: expected ‘;’ before ‘log_ratio_b_vec’ npm ERR! __m512h log_ratio_b_vec = simsimd_avx512_f16_log2(ratio_b_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:528:5: error: ‘sum_a_vec’ was not declared in this scope npm ERR! sum_a_vec = _mm512_maskz_fmadd_ph(nonzero_mask, a_vec, log_ratio_a_vec, sum_a_vec); npm ERR! ^~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:528:60: error: ‘log_ratio_a_vec’ was not declared in this scope npm ERR! sum_a_vec = _mm512_maskz_fmadd_ph(nonzero_mask, a_vec, log_ratio_a_vec, sum_a_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:528:17: error: ‘_mm512_maskz_fmadd_ph’ was not declared in this scope npm ERR! sum_a_vec = _mm512_maskz_fmadd_ph(nonzero_mask, a_vec, log_ratio_a_vec, sum_a_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:528:17: note: suggested alternative: ‘_mm512_maskz_fmadd_ps’ npm ERR! sum_a_vec = _mm512_maskz_fmadd_ph(nonzero_mask, a_vec, log_ratio_a_vec, sum_a_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_maskz_fmadd_ps npm ERR! ../simsimd/include/simsimd/probability.h:529:5: error: ‘sum_b_vec’ was not declared in this scope npm ERR! sum_b_vec = _mm512_maskz_fmadd_ph(nonzero_mask, b_vec, log_ratio_b_vec, sum_b_vec); npm ERR! ^~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:529:60: error: ‘log_ratio_b_vec’ was not declared in this scope npm ERR! sum_b_vec = _mm512_maskz_fmadd_ph(nonzero_mask, b_vec, log_ratio_b_vec, sum_b_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:534:33: error: ‘_mm512_add_ph’ was not declared in this scope npm ERR! return _mm512_reduce_add_ph(_mm512_add_ph(sum_a_vec, sum_b_vec)) * 0.5f * log2_normalizer; npm ERR! ^~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:534:33: note: suggested alternative: ‘_mm512_add_ps’ npm ERR! return _mm512_reduce_add_ph(_mm512_add_ph(sum_a_vec, sum_b_vec)) * 0.5f * log2_normalizer; npm ERR! ^~~~~~~~~~~~~ npm ERR! _mm512_add_ps npm ERR! ../simsimd/include/simsimd/probability.h:534:12: error: ‘_mm512_reduce_add_ph’ was not declared in this scope npm ERR! return _mm512_reduce_add_ph(_mm512_add_ph(sum_a_vec, sum_b_vec)) * 0.5f * log2_normalizer; npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:534:12: note: suggested alternative: ‘_mm512_reduce_add_pd’ npm ERR! return _mm512_reduce_add_ph(_mm512_add_ph(sum_a_vec, sum_b_vec)) * 0.5f * log2_normalizer; npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_reduce_add_pd npm ERR! In file included from ../simsimd/include/simsimd/simsimd.h:17:0, npm ERR! from ../include/usearch/index_plugins.hpp:51, npm ERR! from ../include/usearch/index_dense.hpp:10, npm ERR! from ../javascript/lib.cpp:18: npm ERR! ../simsimd/include/simsimd/spatial.h: At global scope: npm ERR! ../simsimd/include/simsimd/spatial.h:836:89: error: attribute(target("avx512fp16")) is unknown npm ERR! simsimd_avx512_f16_l2sq(simsimd_f16_t const* a, simsimd_f16_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! ../simsimd/include/simsimd/spatial.h: In function ‘simsimd_f32_t simsimd_avx512_f16_l2sq(const simsimd_f16_t*, const simsimd_f16_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/spatial.h:837:5: error: ‘__m512h’ was not declared in this scope npm ERR! __m512h d2_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:837:5: note: suggested alternative: ‘__m512d’ npm ERR! __m512h d2_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~~ npm ERR! __m512d npm ERR! ../simsimd/include/simsimd/spatial.h:847:21: error: ‘_mm512_loadu_epi16’ was not declared in this scope npm ERR! a_i16_vec = _mm512_loadu_epi16(a); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:847:21: note: suggested alternative: ‘_mm512_madd_epi16’ npm ERR! a_i16_vec = _mm512_loadu_epi16(a); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! _mm512_madd_epi16 npm ERR! ../simsimd/include/simsimd/spatial.h:851:13: error: expected ‘;’ before ‘d_vec’ npm ERR! __m512h d_vec = _mm512_sub_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec)); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:852:5: error: ‘d2_vec’ was not declared in this scope npm ERR! d2_vec = _mm512_fmadd_ph(d_vec, d_vec, d2_vec); npm ERR! ^~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:852:5: note: suggested alternative: ‘iovec’ npm ERR! d2_vec = _mm512_fmadd_ph(d_vec, d_vec, d2_vec); npm ERR! ^~~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/spatial.h:852:30: error: ‘d_vec’ was not declared in this scope npm ERR! d2_vec = _mm512_fmadd_ph(d_vec, d_vec, d2_vec); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:852:30: note: suggested alternative: ‘iovec’ npm ERR! d2_vec = _mm512_fmadd_ph(d_vec, d_vec, d2_vec); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/spatial.h:852:14: error: ‘_mm512_fmadd_ph’ was not declared in this scope npm ERR! d2_vec = _mm512_fmadd_ph(d_vec, d_vec, d2_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:852:14: note: suggested alternative: ‘_mm512_fmadd_ps’ npm ERR! d2_vec = _mm512_fmadd_ph(d_vec, d_vec, d2_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! _mm512_fmadd_ps npm ERR! ../simsimd/include/simsimd/spatial.h:856:12: error: ‘_mm512_reduce_add_ph’ was not declared in this scope npm ERR! return _mm512_reduce_add_ph(d2_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:856:12: note: suggested alternative: ‘_mm512_reduce_add_pd’ npm ERR! return _mm512_reduce_add_ph(d2_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_reduce_add_pd npm ERR! ../simsimd/include/simsimd/spatial.h: At global scope: npm ERR! ../simsimd/include/simsimd/spatial.h:861:87: error: attribute(target("avx512fp16")) is unknown npm ERR! simsimd_avx512_f16_ip(simsimd_f16_t const* a, simsimd_f16_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! ../simsimd/include/simsimd/spatial.h: In function ‘simsimd_f32_t simsimd_avx512_f16_ip(const simsimd_f16_t*, const simsimd_f16_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/spatial.h:862:5: error: ‘__m512h’ was not declared in this scope npm ERR! __m512h ab_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:862:5: note: suggested alternative: ‘__m512d’ npm ERR! __m512h ab_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~~ npm ERR! __m512d npm ERR! ../simsimd/include/simsimd/spatial.h:872:21: error: ‘_mm512_loadu_epi16’ was not declared in this scope npm ERR! a_i16_vec = _mm512_loadu_epi16(a); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:872:21: note: suggested alternative: ‘_mm512_madd_epi16’ npm ERR! a_i16_vec = _mm512_loadu_epi16(a); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! _mm512_madd_epi16 npm ERR! ../simsimd/include/simsimd/spatial.h:876:5: error: ‘ab_vec’ was not declared in this scope npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:876:5: note: suggested alternative: ‘iovec’ npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/spatial.h:876:30: error: ‘_mm512_castsi512_ph’ was not declared in this scope npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:876:30: note: suggested alternative: ‘_mm512_castsi512_pd’ npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_castsi512_pd npm ERR! ../simsimd/include/simsimd/spatial.h:876:14: error: ‘_mm512_fmadd_ph’ was not declared in this scope npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:876:14: note: suggested alternative: ‘_mm512_fmadd_ps’ npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! _mm512_fmadd_ps npm ERR! ../simsimd/include/simsimd/spatial.h:880:16: error: ‘_mm512_reduce_add_ph’ was not declared in this scope npm ERR! return 1 - _mm512_reduce_add_ph(ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:880:16: note: suggested alternative: ‘_mm512_reduce_add_pd’ npm ERR! return 1 - _mm512_reduce_add_ph(ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_reduce_add_pd npm ERR! ../simsimd/include/simsimd/spatial.h: At global scope: npm ERR! ../simsimd/include/simsimd/spatial.h:885:88: error: attribute(target("avx512fp16")) is unknown npm ERR! simsimd_avx512_f16_cos(simsimd_f16_t const* a, simsimd_f16_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! ../simsimd/include/simsimd/spatial.h: In function ‘simsimd_f32_t simsimd_avx512_f16_cos(const simsimd_f16_t*, const simsimd_f16_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/spatial.h:886:5: error: ‘__m512h’ was not declared in this scope npm ERR! __m512h ab_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:886:5: note: suggested alternative: ‘__m512d’ npm ERR! __m512h ab_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~~ npm ERR! __m512d npm ERR! ../simsimd/include/simsimd/spatial.h:887:13: error: expected ‘;’ before ‘a2_vec’ npm ERR! __m512h a2_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:888:13: error: expected ‘;’ before ‘b2_vec’ npm ERR! __m512h b2_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:898:21: error: ‘_mm512_loadu_epi16’ was not declared in this scope npm ERR! a_i16_vec = _mm512_loadu_epi16(a); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:898:21: note: suggested alternative: ‘_mm512_madd_epi16’ npm ERR! a_i16_vec = _mm512_loadu_epi16(a); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! _mm512_madd_epi16 npm ERR! ../simsimd/include/simsimd/spatial.h:902:5: error: ‘ab_vec’ was not declared in this scope npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:902:5: note: suggested alternative: ‘iovec’ npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/spatial.h:902:30: error: ‘_mm512_castsi512_ph’ was not declared in this scope npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:902:30: note: suggested alternative: ‘_mm512_castsi512_pd’ npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_castsi512_pd npm ERR! ../simsimd/include/simsimd/spatial.h:902:14: error: ‘_mm512_fmadd_ph’ was not declared in this scope npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:902:14: note: suggested alternative: ‘_mm512_fmadd_ps’ npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! _mm512_fmadd_ps npm ERR! ../simsimd/include/simsimd/spatial.h:903:5: error: ‘a2_vec’ was not declared in this scope npm ERR! a2_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(a_i16_vec), a2_vec); npm ERR! ^~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:903:5: note: suggested alternative: ‘iovec’ npm ERR! a2_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(a_i16_vec), a2_vec); npm ERR! ^~~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/spatial.h:904:5: error: ‘b2_vec’ was not declared in this scope npm ERR! b2_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(b_i16_vec), _mm512_castsi512_ph(b_i16_vec), b2_vec); npm ERR! ^~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:904:5: note: suggested alternative: ‘iovec’ npm ERR! b2_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(b_i16_vec), _mm512_castsi512_ph(b_i16_vec), b2_vec); npm ERR! ^~~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/spatial.h:908:24: error: ‘_mm512_reduce_add_ph’ was not declared in this scope npm ERR! simsimd_f32_t ab = _mm512_reduce_add_ph(ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:908:24: note: suggested alternative: ‘_mm512_reduce_add_pd’ npm ERR! simsimd_f32_t ab = _mm512_reduce_add_ph(ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_reduce_add_pd npm ERR! ../simsimd/include/simsimd/spatial.h: At global scope: npm ERR! ../simsimd/include/simsimd/spatial.h:933:86: error: attribute(target("avx512vnni")) is unknown npm ERR! simsimd_avx512_i8_l2sq(simsimd_i8_t const* a, simsimd_i8_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! ../simsimd/include/simsimd/spatial.h: In function ‘simsimd_f32_t simsimd_avx512_i8_l2sq(const simsimd_i8_t*, const simsimd_i8_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/spatial.h:944:38: error: ‘_mm256_loadu_epi8’ was not declared in this scope npm ERR! a_vec = _mm512_cvtepi8_epi16(_mm256_loadu_epi8(a)); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:944:38: note: suggested alternative: ‘_mm256_add_epi8’ npm ERR! a_vec = _mm512_cvtepi8_epi16(_mm256_loadu_epi8(a)); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! _mm256_add_epi8 npm ERR! ../simsimd/include/simsimd/spatial.h:949:19: error: ‘_mm512_dpwssd_epi32’ was not declared in this scope npm ERR! d2_i32s_vec = _mm512_dpwssd_epi32(d2_i32s_vec, d_i16s_vec, d_i16s_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:949:19: note: suggested alternative: ‘_mm512_4dpwssd_epi32’ npm ERR! d2_i32s_vec = _mm512_dpwssd_epi32(d2_i32s_vec, d_i16s_vec, d_i16s_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_4dpwssd_epi32 npm ERR! ../simsimd/include/simsimd/spatial.h: At global scope: npm ERR! ../simsimd/include/simsimd/spatial.h:958:85: error: attribute(target("avx512vnni")) is unknown npm ERR! simsimd_avx512_i8_cos(simsimd_i8_t const* a, simsimd_i8_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! ../simsimd/include/simsimd/spatial.h: In function ‘simsimd_f32_t simsimd_avx512_i8_cos(const simsimd_i8_t*, const simsimd_i8_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/spatial.h:971:17: error: ‘_mm512_loadu_epi8’ was not declared in this scope npm ERR! a_vec = _mm512_loadu_epi8(a); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:971:17: note: suggested alternative: ‘_mm512_add_epi8’ npm ERR! a_vec = _mm512_loadu_epi8(a); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! _mm512_add_epi8 npm ERR! ../simsimd/include/simsimd/spatial.h:975:19: error: ‘_mm512_dpbusd_epi32’ was not declared in this scope npm ERR! ab_i32s_vec = _mm512_dpbusd_epi32(ab_i32s_vec, a_vec, b_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:975:19: note: suggested alternative: ‘_mm512_4dpwssd_epi32’ npm ERR! ab_i32s_vec = _mm512_dpbusd_epi32(ab_i32s_vec, a_vec, b_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_4dpwssd_epi32 npm ERR! ../simsimd/include/simsimd/spatial.h: At global scope: npm ERR! ../simsimd/include/simsimd/spatial.h:994:84: error: attribute(target("avx512vnni")) is unknown npm ERR! simsimd_avx512_i8_ip(simsimd_i8_t const* a, simsimd_i8_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! In file included from ../include/usearch/index_plugins.hpp:51:0, npm ERR! from ../include/usearch/index_dense.hpp:10, npm ERR! from ../javascript/lib.cpp:18: npm ERR! ../simsimd/include/simsimd/simsimd.h:189:32: warning: unknown option after ‘#pragma GCC diagnostic’ kind [-Wpragmas] npm ERR! #pragma GCC diagnostic ignored "-Wcast-function-type" npm ERR! ^~~~~~~~~~~~~~~~~~~~~~ npm ERR! In file included from ../simsimd/include/simsimd/simsimd.h:17:0, npm ERR! from ../include/usearch/index_plugins.hpp:51, npm ERR! from ../include/usearch/index_dense.hpp:10, npm ERR! from ../javascript/lib.cpp:18: npm ERR! ../simsimd/include/simsimd/spatial.h: In function ‘simsimd_f32_t simsimd_avx512_i8_l2sq(const simsimd_i8_t*, const simsimd_i8_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/spatial.h:934:48: warning: AVX512F vector return without AVX512F enabled changes the ABI [-Wpsabi] npm ERR! __m512i d2_i32s_vec = _mm512_setzero_si512(); npm ERR! ^ npm ERR! ../simsimd/include/simsimd/spatial.h:940:37: warning: AVX vector return without AVX enabled changes the ABI [-Wpsabi] npm ERR! a_vec = _mm512_cvtepi8_epi16(_mm256_maskz_loadu_epi8(mask, a)); npm ERR! ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ npm ERR! make: *** [Release/obj.target/usearch/javascript/lib.o] Error 1 npm ERR! gyp ERR! build error npm ERR! gyp ERR! stack Error: `make` failed with exit code: 2 npm ERR! gyp ERR! stack at ChildProcess. (/var/lang/lib/node_modules/npm/node_modules/node-gyp/lib/build.js:209:23) npm ERR! gyp ERR! System Linux 6.4.16-linuxkit npm ERR! gyp ERR! command "/var/lang/bin/node" "/var/lang/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild" npm ERR! gyp ERR! cwd /var/task/node_modules/usearch npm ERR! gyp ERR! node -v v18.18.2 npm ERR! gyp ERR! node-gyp -v v10.0.1 npm ERR! gyp ERR! not ok npm ERR! A complete log of this run can be found in: /root/.npm/_logs/2023-11-09T01_41_14_480Z-debug-0.log removed 31 packages, and changed 65 packages in 5s 26 packages are looking for funding run `npm fund` for details Loaded plugins: ovl Resolving Dependencies --> Running transaction check ---> Package cmake.x86_64 0:2.8.12.2-2.amzn2.0.2 will be installed --> Processing Dependency: libarchive.so.13()(64bit) for package: cmake-2.8.12.2-2.amzn2.0.2.x86_64 ---> Package gcc-c++.x86_64 0:7.3.1-17.amzn2 will be installed --> Processing Dependency: gcc(x86-64) = 7.3.1-17.amzn2 for package: gcc-c++-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libmpc.so.3()(64bit) for package: gcc-c++-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libmpfr.so.4()(64bit) for package: gcc-c++-7.3.1-17.amzn2.x86_64 ---> Package git.x86_64 0:2.40.1-1.amzn2.0.1 will be installed --> Processing Dependency: git-core = 2.40.1-1.amzn2.0.1 for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: git-core-doc = 2.40.1-1.amzn2.0.1 for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl-Git = 2.40.1-1.amzn2.0.1 for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl >= 5.008 for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: /usr/bin/perl for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(File::Basename) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(File::Find) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(File::Spec) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(Getopt::Long) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(Git) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(IPC::Open2) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(Term::ReadKey) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(lib) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(strict) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(warnings) for package: git-2.40.1-1.amzn2.0.1.x86_64 ---> Package python3.x86_64 0:3.7.16-1.amzn2.0.4 will be installed --> Processing Dependency: python3-libs(x86-64) = 3.7.16-1.amzn2.0.4 for package: python3-3.7.16-1.amzn2.0.4.x86_64 --> Processing Dependency: python3-pip for package: python3-3.7.16-1.amzn2.0.4.x86_64 --> Processing Dependency: python3-setuptools for package: python3-3.7.16-1.amzn2.0.4.x86_64 --> Processing Dependency: libpython3.7m.so.1.0()(64bit) for package: python3-3.7.16-1.amzn2.0.4.x86_64 ---> Package tar.x86_64 2:1.26-35.amzn2.0.2 will be installed --> Running transaction check ---> Package gcc.x86_64 0:7.3.1-17.amzn2 will be installed --> Processing Dependency: cpp = 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libgomp = 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: binutils >= 2.24 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: glibc-devel >= 2.2.90-12 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libatomic >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libcilkrts >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libitm >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libmpx >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libquadmath >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libsanitizer >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libgomp.so.1()(64bit) for package: gcc-7.3.1-17.amzn2.x86_64 ---> Package git-core.x86_64 0:2.40.1-1.amzn2.0.1 will be installed --> Processing Dependency: less for package: git-core-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: openssh-clients for package: git-core-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: libpcre2-8.so.0()(64bit) for package: git-core-2.40.1-1.amzn2.0.1.x86_64 ---> Package git-core-doc.noarch 0:2.40.1-1.amzn2.0.1 will be installed ---> Package libarchive.x86_64 0:3.1.2-14.amzn2.0.1 will be installed --> Processing Dependency: liblzo2.so.2()(64bit) for package: libarchive-3.1.2-14.amzn2.0.1.x86_64 ---> Package libmpc.x86_64 0:1.0.1-3.amzn2.0.2 will be installed ---> Package mpfr.x86_64 0:3.1.1-4.amzn2.0.2 will be installed ---> Package perl.x86_64 4:5.16.3-299.amzn2.0.2 will be installed --> Processing Dependency: perl-libs = 4:5.16.3-299.amzn2.0.2 for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Scalar::Util) >= 1.10 for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Socket) >= 1.3 for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Carp) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Exporter) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(File::Path) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(File::Temp) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Filter::Util::Call) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Pod::Simple::Search) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Pod::Simple::XHTML) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Scalar::Util) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Socket) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Storable) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Time::HiRes) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Time::Local) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(constant) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(threads) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(threads::shared) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl-libs for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl-macros for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: libperl.so()(64bit) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 ---> Package perl-Getopt-Long.noarch 0:2.40-3.amzn2 will be installed --> Processing Dependency: perl(Pod::Usage) >= 1.14 for package: perl-Getopt-Long-2.40-3.amzn2.noarch --> Processing Dependency: perl(Text::ParseWords) for package: perl-Getopt-Long-2.40-3.amzn2.noarch ---> Package perl-Git.noarch 0:2.40.1-1.amzn2.0.1 will be installed --> Processing Dependency: perl(Error) for package: perl-Git-2.40.1-1.amzn2.0.1.noarch ---> Package perl-PathTools.x86_64 0:3.40-5.amzn2.0.2 will be installed ---> Package perl-TermReadKey.x86_64 0:2.30-20.amzn2.0.2 will be installed ---> Package python3-libs.x86_64 0:3.7.16-1.amzn2.0.4 will be installed --> Processing Dependency: libtirpc.so.1()(64bit) for package: python3-libs-3.7.16-1.amzn2.0.4.x86_64 ---> Package python3-pip.noarch 0:20.2.2-1.amzn2.0.4 will be installed ---> Package python3-setuptools.noarch 0:49.1.3-1.amzn2.0.3 will be installed --> Running transaction check ---> Package binutils.x86_64 0:2.29.1-31.amzn2 will be installed ---> Package cpp.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package glibc-devel.x86_64 0:2.26-63.amzn2.0.1 will be installed --> Processing Dependency: glibc-headers = 2.26-63.amzn2.0.1 for package: glibc-devel-2.26-63.amzn2.0.1.x86_64 --> Processing Dependency: glibc-headers for package: glibc-devel-2.26-63.amzn2.0.1.x86_64 ---> Package less.x86_64 0:458-9.amzn2.0.2 will be installed --> Processing Dependency: groff-base for package: less-458-9.amzn2.0.2.x86_64 ---> Package libatomic.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libcilkrts.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libgomp.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libitm.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libmpx.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libquadmath.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libsanitizer.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libtirpc.x86_64 0:0.2.4-0.16.amzn2 will be installed ---> Package lzo.x86_64 0:2.06-8.amzn2.0.4 will be installed ---> Package openssh-clients.x86_64 0:7.4p1-22.amzn2.0.5 will be installed --> Processing Dependency: openssh = 7.4p1-22.amzn2.0.5 for package: openssh-clients-7.4p1-22.amzn2.0.5.x86_64 --> Processing Dependency: fipscheck-lib(x86-64) >= 1.3.0 for package: openssh-clients-7.4p1-22.amzn2.0.5.x86_64 --> Processing Dependency: libedit.so.0()(64bit) for package: openssh-clients-7.4p1-22.amzn2.0.5.x86_64 --> Processing Dependency: libfipscheck.so.1()(64bit) for package: openssh-clients-7.4p1-22.amzn2.0.5.x86_64 ---> Package pcre2.x86_64 0:10.23-11.amzn2.0.1 will be installed ---> Package perl-Carp.noarch 0:1.26-244.amzn2 will be installed ---> Package perl-Error.noarch 1:0.17020-2.amzn2 will be installed ---> Package perl-Exporter.noarch 0:5.68-3.amzn2 will be installed ---> Package perl-File-Path.noarch 0:2.09-2.amzn2 will be installed ---> Package perl-File-Temp.noarch 0:0.23.01-3.amzn2 will be installed ---> Package perl-Filter.x86_64 0:1.49-3.amzn2.0.2 will be installed ---> Package perl-Pod-Simple.noarch 1:3.28-4.amzn2 will be installed --> Processing Dependency: perl(Pod::Escapes) >= 1.04 for package: 1:perl-Pod-Simple-3.28-4.amzn2.noarch --> Processing Dependency: perl(Encode) for package: 1:perl-Pod-Simple-3.28-4.amzn2.noarch ---> Package perl-Pod-Usage.noarch 0:1.63-3.amzn2 will be installed --> Processing Dependency: perl(Pod::Text) >= 3.15 for package: perl-Pod-Usage-1.63-3.amzn2.noarch --> Processing Dependency: perl-Pod-Perldoc for package: perl-Pod-Usage-1.63-3.amzn2.noarch ---> Package perl-Scalar-List-Utils.x86_64 0:1.27-248.amzn2.0.2 will be installed ---> Package perl-Socket.x86_64 0:2.010-4.amzn2.0.2 will be installed ---> Package perl-Storable.x86_64 0:2.45-3.amzn2.0.2 will be installed ---> Package perl-Text-ParseWords.noarch 0:3.29-4.amzn2 will be installed ---> Package perl-Time-HiRes.x86_64 4:1.9725-3.amzn2.0.2 will be installed ---> Package perl-Time-Local.noarch 0:1.2300-2.amzn2 will be installed ---> Package perl-constant.noarch 0:1.27-2.amzn2.0.1 will be installed ---> Package perl-libs.x86_64 4:5.16.3-299.amzn2.0.2 will be installed ---> Package perl-macros.x86_64 4:5.16.3-299.amzn2.0.2 will be installed ---> Package perl-threads.x86_64 0:1.87-4.amzn2.0.2 will be installed ---> Package perl-threads-shared.x86_64 0:1.43-6.amzn2.0.2 will be installed --> Running transaction check ---> Package fipscheck-lib.x86_64 0:1.4.1-6.amzn2.0.2 will be installed --> Processing Dependency: /usr/bin/fipscheck for package: fipscheck-lib-1.4.1-6.amzn2.0.2.x86_64 ---> Package glibc-headers.x86_64 0:2.26-63.amzn2.0.1 will be installed --> Processing Dependency: kernel-headers >= 2.2.1 for package: glibc-headers-2.26-63.amzn2.0.1.x86_64 --> Processing Dependency: kernel-headers for package: glibc-headers-2.26-63.amzn2.0.1.x86_64 ---> Package groff-base.x86_64 0:1.22.2-8.amzn2.0.2 will be installed ---> Package libedit.x86_64 0:3.0-12.20121213cvs.amzn2.0.2 will be installed ---> Package openssh.x86_64 0:7.4p1-22.amzn2.0.5 will be installed --> Processing Dependency: audit-libs >= 1.0.8 for package: openssh-7.4p1-22.amzn2.0.5.x86_64 --> Processing Dependency: /sbin/nologin for package: openssh-7.4p1-22.amzn2.0.5.x86_64 ---> Package perl-Encode.x86_64 0:2.51-7.amzn2.0.2 will be installed ---> Package perl-Pod-Escapes.noarch 1:1.04-299.amzn2.0.2 will be installed ---> Package perl-Pod-Perldoc.noarch 0:3.20-4.amzn2.0.1 will be installed --> Processing Dependency: perl(HTTP::Tiny) for package: perl-Pod-Perldoc-3.20-4.amzn2.0.1.noarch --> Processing Dependency: perl(parent) for package: perl-Pod-Perldoc-3.20-4.amzn2.0.1.noarch ---> Package perl-podlators.noarch 0:2.5.1-3.amzn2.0.1 will be installed --> Running transaction check ---> Package audit-libs.x86_64 0:2.8.1-3.amzn2.1 will be installed --> Processing Dependency: libcap-ng.so.0()(64bit) for package: audit-libs-2.8.1-3.amzn2.1.x86_64 ---> Package fipscheck.x86_64 0:1.4.1-6.amzn2.0.2 will be installed ---> Package kernel-headers.x86_64 0:4.14.327-246.539.amzn2 will be installed ---> Package perl-HTTP-Tiny.noarch 0:0.033-3.amzn2.0.1 will be installed ---> Package perl-parent.noarch 1:0.225-244.amzn2.0.1 will be installed ---> Package util-linux.x86_64 0:2.30.2-2.amzn2.0.11 will be installed --> Processing Dependency: libfdisk = 2.30.2-2.amzn2.0.11 for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols = 2.30.2-2.amzn2.0.11 for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: pam >= 1.1.3-7 for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: /etc/pam.d/system-auth for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1(FDISK_2.26)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1(FDISK_2.27)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1(FDISK_2.28)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1(FDISK_2.29)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1(FDISK_2.30)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libpam.so.0(LIBPAM_1.0)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libpam_misc.so.0(LIBPAM_MISC_1.0)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1(SMARTCOLS_2.25)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1(SMARTCOLS_2.27)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1(SMARTCOLS_2.28)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1(SMARTCOLS_2.29)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1(SMARTCOLS_2.30)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsystemd.so.0(LIBSYSTEMD_209)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libudev.so.1(LIBUDEV_183)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libutempter.so.0(UTEMPTER_1.1)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libpam.so.0()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libpam_misc.so.0()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsystemd.so.0()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libudev.so.1()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libutempter.so.0()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Running transaction check ---> Package libcap-ng.x86_64 0:0.7.5-4.amzn2.0.4 will be installed ---> Package libfdisk.x86_64 0:2.30.2-2.amzn2.0.11 will be installed ---> Package libsmartcols.x86_64 0:2.30.2-2.amzn2.0.11 will be installed ---> Package libutempter.x86_64 0:1.1.6-4.amzn2.0.2 will be installed --> Processing Dependency: shadow-utils for package: libutempter-1.1.6-4.amzn2.0.2.x86_64 ---> Package pam.x86_64 0:1.1.8-23.amzn2.0.1 will be installed --> Processing Dependency: cracklib-dicts >= 2.8 for package: pam-1.1.8-23.amzn2.0.1.x86_64 --> Processing Dependency: libpwquality >= 0.9.9 for package: pam-1.1.8-23.amzn2.0.1.x86_64 --> Processing Dependency: libcrack.so.2()(64bit) for package: pam-1.1.8-23.amzn2.0.1.x86_64 ---> Package systemd-libs.x86_64 0:219-78.amzn2.0.22 will be installed --> Processing Dependency: libdw.so.1()(64bit) for package: systemd-libs-219-78.amzn2.0.22.x86_64 --> Processing Dependency: liblz4.so.1()(64bit) for package: systemd-libs-219-78.amzn2.0.22.x86_64 --> Running transaction check ---> Package cracklib.x86_64 0:2.9.0-11.amzn2.0.2 will be installed --> Processing Dependency: gzip for package: cracklib-2.9.0-11.amzn2.0.2.x86_64 ---> Package cracklib-dicts.x86_64 0:2.9.0-11.amzn2.0.2 will be installed ---> Package elfutils-libs.x86_64 0:0.176-2.amzn2.0.2 will be installed --> Processing Dependency: default-yama-scope for package: elfutils-libs-0.176-2.amzn2.0.2.x86_64 ---> Package libpwquality.x86_64 0:1.2.3-5.amzn2 will be installed ---> Package lz4.x86_64 0:1.7.5-2.amzn2.0.1 will be installed ---> Package shadow-utils.x86_64 2:4.1.5.1-24.amzn2.0.3 will be installed --> Processing Dependency: libsemanage.so.1(LIBSEMANAGE_1.0)(64bit) for package: 2:shadow-utils-4.1.5.1-24.amzn2.0.3.x86_64 --> Processing Dependency: libsemanage.so.1()(64bit) for package: 2:shadow-utils-4.1.5.1-24.amzn2.0.3.x86_64 --> Running transaction check ---> Package elfutils-default-yama-scope.noarch 0:0.176-2.amzn2.0.2 will be installed --> Processing Dependency: systemd for package: elfutils-default-yama-scope-0.176-2.amzn2.0.2.noarch --> Processing Dependency: systemd for package: elfutils-default-yama-scope-0.176-2.amzn2.0.2.noarch ---> Package gzip.x86_64 0:1.5-10.amzn2.0.1 will be installed ---> Package libsemanage.x86_64 0:2.5-11.amzn2 will be installed --> Processing Dependency: libustr-1.0.so.1(USTR_1.0)(64bit) for package: libsemanage-2.5-11.amzn2.x86_64 --> Processing Dependency: libustr-1.0.so.1(USTR_1.0.1)(64bit) for package: libsemanage-2.5-11.amzn2.x86_64 --> Processing Dependency: libustr-1.0.so.1()(64bit) for package: libsemanage-2.5-11.amzn2.x86_64 --> Running transaction check ---> Package systemd.x86_64 0:219-78.amzn2.0.22 will be installed --> Processing Dependency: kmod >= 18-4 for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: acl for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: dbus for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: libcryptsetup.so.4(CRYPTSETUP_1.0)(64bit) for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: libkmod.so.2(LIBKMOD_5)(64bit) for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: libcryptsetup.so.4()(64bit) for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: libkmod.so.2()(64bit) for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: libqrencode.so.3()(64bit) for package: systemd-219-78.amzn2.0.22.x86_64 ---> Package ustr.x86_64 0:1.0.4-16.amzn2.0.3 will be installed --> Running transaction check ---> Package acl.x86_64 0:2.2.51-14.amzn2 will be installed ---> Package cryptsetup-libs.x86_64 0:1.7.4-4.amzn2 will be installed --> Processing Dependency: libdevmapper.so.1.02(Base)(64bit) for package: cryptsetup-libs-1.7.4-4.amzn2.x86_64 --> Processing Dependency: libdevmapper.so.1.02(DM_1_02_97)(64bit) for package: cryptsetup-libs-1.7.4-4.amzn2.x86_64 --> Processing Dependency: libdevmapper.so.1.02()(64bit) for package: cryptsetup-libs-1.7.4-4.amzn2.x86_64 ---> Package dbus.x86_64 1:1.10.24-7.amzn2.0.3 will be installed --> Processing Dependency: dbus-libs(x86-64) = 1:1.10.24-7.amzn2.0.3 for package: 1:dbus-1.10.24-7.amzn2.0.3.x86_64 --> Processing Dependency: libdbus-1.so.3(LIBDBUS_1_3)(64bit) for package: 1:dbus-1.10.24-7.amzn2.0.3.x86_64 --> Processing Dependency: libdbus-1.so.3(LIBDBUS_PRIVATE_1.10.24)(64bit) for package: 1:dbus-1.10.24-7.amzn2.0.3.x86_64 --> Processing Dependency: libdbus-1.so.3()(64bit) for package: 1:dbus-1.10.24-7.amzn2.0.3.x86_64 ---> Package kmod.x86_64 0:25-3.amzn2.0.2 will be installed ---> Package kmod-libs.x86_64 0:25-3.amzn2.0.2 will be installed ---> Package qrencode-libs.x86_64 0:3.4.1-3.amzn2.0.2 will be installed --> Running transaction check ---> Package dbus-libs.x86_64 1:1.10.24-7.amzn2.0.3 will be installed ---> Package device-mapper-libs.x86_64 7:1.02.170-6.amzn2.5 will be installed --> Processing Dependency: device-mapper = 7:1.02.170-6.amzn2.5 for package: 7:device-mapper-libs-1.02.170-6.amzn2.5.x86_64 --> Running transaction check ---> Package device-mapper.x86_64 7:1.02.170-6.amzn2.5 will be installed --> Finished Dependency Resolution Dependencies Resolved ================================================================================ Package Arch Version Repository Size ================================================================================ Installing: cmake x86_64 2.8.12.2-2.amzn2.0.2 amzn2-core 6.9 M gcc-c++ x86_64 7.3.1-17.amzn2 amzn2-core 13 M git x86_64 2.40.1-1.amzn2.0.1 amzn2-core 54 k python3 x86_64 3.7.16-1.amzn2.0.4 amzn2-core 72 k tar x86_64 2:1.26-35.amzn2.0.2 amzn2-core 845 k Installing for dependencies: acl x86_64 2.2.51-14.amzn2 amzn2-core 82 k audit-libs x86_64 2.8.1-3.amzn2.1 amzn2-core 99 k binutils x86_64 2.29.1-31.amzn2 amzn2-core 5.8 M cpp x86_64 7.3.1-17.amzn2 amzn2-core 9.2 M cracklib x86_64 2.9.0-11.amzn2.0.2 amzn2-core 80 k cracklib-dicts x86_64 2.9.0-11.amzn2.0.2 amzn2-core 3.6 M cryptsetup-libs x86_64 1.7.4-4.amzn2 amzn2-core 224 k dbus x86_64 1:1.10.24-7.amzn2.0.3 amzn2-core 245 k dbus-libs x86_64 1:1.10.24-7.amzn2.0.3 amzn2-core 167 k device-mapper x86_64 7:1.02.170-6.amzn2.5 amzn2-core 297 k device-mapper-libs x86_64 7:1.02.170-6.amzn2.5 amzn2-core 326 k elfutils-default-yama-scope noarch 0.176-2.amzn2.0.2 amzn2-core 33 k elfutils-libs x86_64 0.176-2.amzn2.0.2 amzn2-core 289 k fipscheck x86_64 1.4.1-6.amzn2.0.2 amzn2-core 21 k fipscheck-lib x86_64 1.4.1-6.amzn2.0.2 amzn2-core 11 k gcc x86_64 7.3.1-17.amzn2 amzn2-core 22 M git-core x86_64 2.40.1-1.amzn2.0.1 amzn2-core 10 M git-core-doc noarch 2.40.1-1.amzn2.0.1 amzn2-core 3.0 M glibc-devel x86_64 2.26-63.amzn2.0.1 amzn2-core 995 k glibc-headers x86_64 2.26-63.amzn2.0.1 amzn2-core 516 k groff-base x86_64 1.22.2-8.amzn2.0.2 amzn2-core 948 k gzip x86_64 1.5-10.amzn2.0.1 amzn2-core 129 k kernel-headers x86_64 4.14.327-246.539.amzn2 amzn2-core 1.2 M kmod x86_64 25-3.amzn2.0.2 amzn2-core 111 k kmod-libs x86_64 25-3.amzn2.0.2 amzn2-core 59 k less x86_64 458-9.amzn2.0.2 amzn2-core 121 k libarchive x86_64 3.1.2-14.amzn2.0.1 amzn2-core 312 k libatomic x86_64 7.3.1-17.amzn2 amzn2-core 46 k libcap-ng x86_64 0.7.5-4.amzn2.0.4 amzn2-core 25 k libcilkrts x86_64 7.3.1-17.amzn2 amzn2-core 85 k libedit x86_64 3.0-12.20121213cvs.amzn2.0.2 amzn2-core 93 k libfdisk x86_64 2.30.2-2.amzn2.0.11 amzn2-core 238 k libgomp x86_64 7.3.1-17.amzn2 amzn2-core 205 k libitm x86_64 7.3.1-17.amzn2 amzn2-core 85 k libmpc x86_64 1.0.1-3.amzn2.0.2 amzn2-core 52 k libmpx x86_64 7.3.1-17.amzn2 amzn2-core 52 k libpwquality x86_64 1.2.3-5.amzn2 amzn2-core 84 k libquadmath x86_64 7.3.1-17.amzn2 amzn2-core 189 k libsanitizer x86_64 7.3.1-17.amzn2 amzn2-core 642 k libsemanage x86_64 2.5-11.amzn2 amzn2-core 152 k libsmartcols x86_64 2.30.2-2.amzn2.0.11 amzn2-core 155 k libtirpc x86_64 0.2.4-0.16.amzn2 amzn2-core 88 k libutempter x86_64 1.1.6-4.amzn2.0.2 amzn2-core 25 k lz4 x86_64 1.7.5-2.amzn2.0.1 amzn2-core 99 k lzo x86_64 2.06-8.amzn2.0.4 amzn2-core 60 k mpfr x86_64 3.1.1-4.amzn2.0.2 amzn2-core 208 k openssh x86_64 7.4p1-22.amzn2.0.5 amzn2-core 508 k openssh-clients x86_64 7.4p1-22.amzn2.0.5 amzn2-core 652 k pam x86_64 1.1.8-23.amzn2.0.1 amzn2-core 715 k pcre2 x86_64 10.23-11.amzn2.0.1 amzn2-core 207 k perl x86_64 4:5.16.3-299.amzn2.0.2 amzn2-core 8.0 M perl-Carp noarch 1.26-244.amzn2 amzn2-core 19 k perl-Encode x86_64 2.51-7.amzn2.0.2 amzn2-core 1.5 M perl-Error noarch 1:0.17020-2.amzn2 amzn2-core 32 k perl-Exporter noarch 5.68-3.amzn2 amzn2-core 29 k perl-File-Path noarch 2.09-2.amzn2 amzn2-core 27 k perl-File-Temp noarch 0.23.01-3.amzn2 amzn2-core 56 k perl-Filter x86_64 1.49-3.amzn2.0.2 amzn2-core 76 k perl-Getopt-Long noarch 2.40-3.amzn2 amzn2-core 56 k perl-Git noarch 2.40.1-1.amzn2.0.1 amzn2-core 41 k perl-HTTP-Tiny noarch 0.033-3.amzn2.0.1 amzn2-core 39 k perl-PathTools x86_64 3.40-5.amzn2.0.2 amzn2-core 83 k perl-Pod-Escapes noarch 1:1.04-299.amzn2.0.2 amzn2-core 52 k perl-Pod-Perldoc noarch 3.20-4.amzn2.0.1 amzn2-core 87 k perl-Pod-Simple noarch 1:3.28-4.amzn2 amzn2-core 216 k perl-Pod-Usage noarch 1.63-3.amzn2 amzn2-core 27 k perl-Scalar-List-Utils x86_64 1.27-248.amzn2.0.2 amzn2-core 36 k perl-Socket x86_64 2.010-4.amzn2.0.2 amzn2-core 49 k perl-Storable x86_64 2.45-3.amzn2.0.2 amzn2-core 78 k perl-TermReadKey x86_64 2.30-20.amzn2.0.2 amzn2-core 31 k perl-Text-ParseWords noarch 3.29-4.amzn2 amzn2-core 14 k perl-Time-HiRes x86_64 4:1.9725-3.amzn2.0.2 amzn2-core 45 k perl-Time-Local noarch 1.2300-2.amzn2 amzn2-core 24 k perl-constant noarch 1.27-2.amzn2.0.1 amzn2-core 19 k perl-libs x86_64 4:5.16.3-299.amzn2.0.2 amzn2-core 685 k perl-macros x86_64 4:5.16.3-299.amzn2.0.2 amzn2-core 45 k perl-parent noarch 1:0.225-244.amzn2.0.1 amzn2-core 12 k perl-podlators noarch 2.5.1-3.amzn2.0.1 amzn2-core 112 k perl-threads x86_64 1.87-4.amzn2.0.2 amzn2-core 50 k perl-threads-shared x86_64 1.43-6.amzn2.0.2 amzn2-core 39 k python3-libs x86_64 3.7.16-1.amzn2.0.4 amzn2-core 9.8 M python3-pip noarch 20.2.2-1.amzn2.0.4 amzn2-core 2.0 M python3-setuptools noarch 49.1.3-1.amzn2.0.3 amzn2-core 1.1 M qrencode-libs x86_64 3.4.1-3.amzn2.0.2 amzn2-core 50 k shadow-utils x86_64 2:4.1.5.1-24.amzn2.0.3 amzn2-core 1.1 M systemd x86_64 219-78.amzn2.0.22 amzn2-core 5.0 M systemd-libs x86_64 219-78.amzn2.0.22 amzn2-core 409 k ustr x86_64 1.0.4-16.amzn2.0.3 amzn2-core 96 k util-linux x86_64 2.30.2-2.amzn2.0.11 amzn2-core 2.3 M Transaction Summary ================================================================================ Install 5 Packages (+89 Dependent packages) Total download size: 118 M Installed size: 387 M Downloading packages: -------------------------------------------------------------------------------- Total 14 MB/s | 118 MB 00:08 Running transaction check Running transaction test Transaction test succeeded Running transaction Installing : mpfr-3.1.1-4.amzn2.0.2.x86_64 1/94 Installing : libmpc-1.0.1-3.amzn2.0.2.x86_64 2/94 Installing : libcap-ng-0.7.5-4.amzn2.0.4.x86_64 3/94 Installing : audit-libs-2.8.1-3.amzn2.1.x86_64 4/94 Installing : groff-base-1.22.2-8.amzn2.0.2.x86_64 5/94 Installing : lz4-1.7.5-2.amzn2.0.1.x86_64 6/94 Installing : 1:perl-parent-0.225-244.amzn2.0.1.noarch 7/94 Installing : perl-HTTP-Tiny-0.033-3.amzn2.0.1.noarch 8/94 Installing : perl-Pod-Perldoc-3.20-4.amzn2.0.1.noarch 9/94 Installing : perl-podlators-2.5.1-3.amzn2.0.1.noarch 10/94 Installing : perl-Text-ParseWords-3.29-4.amzn2.noarch 11/94 Installing : perl-Encode-2.51-7.amzn2.0.2.x86_64 12/94 Installing : perl-Pod-Usage-1.63-3.amzn2.noarch 13/94 Installing : 1:perl-Pod-Escapes-1.04-299.amzn2.0.2.noarch 14/94 Installing : 4:perl-libs-5.16.3-299.amzn2.0.2.x86_64 15/94 Installing : perl-Filter-1.49-3.amzn2.0.2.x86_64 16/94 Installing : perl-Storable-2.45-3.amzn2.0.2.x86_64 17/94 Installing : perl-Carp-1.26-244.amzn2.noarch 18/94 Installing : perl-File-Path-2.09-2.amzn2.noarch 19/94 Installing : perl-PathTools-3.40-5.amzn2.0.2.x86_64 20/94 Installing : perl-Scalar-List-Utils-1.27-248.amzn2.0.2.x86_64 21/94 Installing : perl-Exporter-5.68-3.amzn2.noarch 22/94 Installing : perl-Time-Local-1.2300-2.amzn2.noarch 23/94 Installing : perl-File-Temp-0.23.01-3.amzn2.noarch 24/94 Installing : perl-constant-1.27-2.amzn2.0.1.noarch 25/94 Installing : perl-threads-shared-1.43-6.amzn2.0.2.x86_64 26/94 Installing : perl-threads-1.87-4.amzn2.0.2.x86_64 27/94 Installing : 4:perl-Time-HiRes-1.9725-3.amzn2.0.2.x86_64 28/94 Installing : perl-Socket-2.010-4.amzn2.0.2.x86_64 29/94 Installing : 4:perl-macros-5.16.3-299.amzn2.0.2.x86_64 30/94 Installing : perl-Getopt-Long-2.40-3.amzn2.noarch 31/94 Installing : 1:perl-Pod-Simple-3.28-4.amzn2.noarch 32/94 Installing : 4:perl-5.16.3-299.amzn2.0.2.x86_64 33/94 Installing : perl-TermReadKey-2.30-20.amzn2.0.2.x86_64 34/94 Installing : 1:perl-Error-0.17020-2.amzn2.noarch 35/94 Installing : less-458-9.amzn2.0.2.x86_64 36/94 Installing : cpp-7.3.1-17.amzn2.x86_64 37/94 Installing : fipscheck-lib-1.4.1-6.amzn2.0.2.x86_64 38/94 Installing : fipscheck-1.4.1-6.amzn2.0.2.x86_64 39/94 Installing : libatomic-7.3.1-17.amzn2.x86_64 40/94 Installing : libgomp-7.3.1-17.amzn2.x86_64 41/94 Installing : kmod-libs-25-3.amzn2.0.2.x86_64 42/94 Installing : libsanitizer-7.3.1-17.amzn2.x86_64 43/94 Installing : gzip-1.5-10.amzn2.0.1.x86_64 44/94 Installing : cracklib-2.9.0-11.amzn2.0.2.x86_64 45/94 Installing : cracklib-dicts-2.9.0-11.amzn2.0.2.x86_64 46/94 Installing : libpwquality-1.2.3-5.amzn2.x86_64 47/94 Installing : pam-1.1.8-23.amzn2.0.1.x86_64 48/94 Installing : libmpx-7.3.1-17.amzn2.x86_64 49/94 Installing : ustr-1.0.4-16.amzn2.0.3.x86_64 50/94 Installing : libsemanage-2.5-11.amzn2.x86_64 51/94 Installing : 2:shadow-utils-4.1.5.1-24.amzn2.0.3.x86_64 52/94 Installing : libutempter-1.1.6-4.amzn2.0.2.x86_64 53/94 Installing : lzo-2.06-8.amzn2.0.4.x86_64 54/94 Installing : libarchive-3.1.2-14.amzn2.0.1.x86_64 55/94 Installing : libcilkrts-7.3.1-17.amzn2.x86_64 56/94 Installing : acl-2.2.51-14.amzn2.x86_64 57/94 Installing : pcre2-10.23-11.amzn2.0.1.x86_64 58/94 Installing : libsmartcols-2.30.2-2.amzn2.0.11.x86_64 59/94 Installing : binutils-2.29.1-31.amzn2.x86_64 60/94 Installing : kernel-headers-4.14.327-246.539.amzn2.x86_64 61/94 Installing : glibc-headers-2.26-63.amzn2.0.1.x86_64 62/94 Installing : glibc-devel-2.26-63.amzn2.0.1.x86_64 63/94 Installing : kmod-25-3.amzn2.0.2.x86_64 64/94 Installing : libfdisk-2.30.2-2.amzn2.0.11.x86_64 65/94 Installing : libtirpc-0.2.4-0.16.amzn2.x86_64 66/94 Installing : python3-setuptools-49.1.3-1.amzn2.0.3.noarch 67/94 Installing : python3-libs-3.7.16-1.amzn2.0.4.x86_64 68/94 Installing : python3-3.7.16-1.amzn2.0.4.x86_64 69/94 Installing : python3-pip-20.2.2-1.amzn2.0.4.noarch 70/94 Installing : qrencode-libs-3.4.1-3.amzn2.0.2.x86_64 71/94 Installing : util-linux-2.30.2-2.amzn2.0.11.x86_64 72/94 Installing : 7:device-mapper-1.02.170-6.amzn2.5.x86_64 73/94 Installing : 7:device-mapper-libs-1.02.170-6.amzn2.5.x86_64 74/94 Installing : cryptsetup-libs-1.7.4-4.amzn2.x86_64 75/94 Installing : elfutils-libs-0.176-2.amzn2.0.2.x86_64 76/94 Installing : systemd-libs-219-78.amzn2.0.22.x86_64 77/94 Installing : 1:dbus-libs-1.10.24-7.amzn2.0.3.x86_64 78/94 Installing : systemd-219-78.amzn2.0.22.x86_64 79/94 Failed to get D-Bus connection: Operation not permitted Installing : 1:dbus-1.10.24-7.amzn2.0.3.x86_64 80/94 Installing : elfutils-default-yama-scope-0.176-2.amzn2.0.2.noarch 81/94 Installing : openssh-7.4p1-22.amzn2.0.5.x86_64 82/94 Installing : libquadmath-7.3.1-17.amzn2.x86_64 83/94 Installing : libedit-3.0-12.20121213cvs.amzn2.0.2.x86_64 84/94 Installing : openssh-clients-7.4p1-22.amzn2.0.5.x86_64 85/94 Installing : git-core-2.40.1-1.amzn2.0.1.x86_64 86/94 Installing : git-core-doc-2.40.1-1.amzn2.0.1.noarch 87/94 Installing : git-2.40.1-1.amzn2.0.1.x86_64 88/94 Installing : perl-Git-2.40.1-1.amzn2.0.1.noarch 89/94 Installing : libitm-7.3.1-17.amzn2.x86_64 90/94 Installing : gcc-7.3.1-17.amzn2.x86_64 91/94 Installing : gcc-c++-7.3.1-17.amzn2.x86_64 92/94 Installing : cmake-2.8.12.2-2.amzn2.0.2.x86_64 93/94 Installing : 2:tar-1.26-35.amzn2.0.2.x86_64 94/94 Verifying : python3-pip-20.2.2-1.amzn2.0.4.noarch 1/94 Verifying : libitm-7.3.1-17.amzn2.x86_64 2/94 Verifying : 1:perl-Pod-Escapes-1.04-299.amzn2.0.2.noarch 3/94 Verifying : git-core-2.40.1-1.amzn2.0.1.x86_64 4/94 Verifying : python3-setuptools-49.1.3-1.amzn2.0.3.noarch 5/94 Verifying : libmpc-1.0.1-3.amzn2.0.2.x86_64 6/94 Verifying : git-2.40.1-1.amzn2.0.1.x86_64 7/94 Verifying : cryptsetup-libs-1.7.4-4.amzn2.x86_64 8/94 Verifying : libedit-3.0-12.20121213cvs.amzn2.0.2.x86_64 9/94 Verifying : libutempter-1.1.6-4.amzn2.0.2.x86_64 10/94 Verifying : lz4-1.7.5-2.amzn2.0.1.x86_64 11/94 Verifying : libquadmath-7.3.1-17.amzn2.x86_64 12/94 Verifying : qrencode-libs-3.4.1-3.amzn2.0.2.x86_64 13/94 Verifying : perl-Filter-1.49-3.amzn2.0.2.x86_64 14/94 Verifying : 1:perl-Pod-Simple-3.28-4.amzn2.noarch 15/94 Verifying : libtirpc-0.2.4-0.16.amzn2.x86_64 16/94 Verifying : libfdisk-2.30.2-2.amzn2.0.11.x86_64 17/94 Verifying : perl-PathTools-3.40-5.amzn2.0.2.x86_64 18/94 Verifying : libcap-ng-0.7.5-4.amzn2.0.4.x86_64 19/94 Verifying : python3-libs-3.7.16-1.amzn2.0.4.x86_64 20/94 Verifying : gcc-c++-7.3.1-17.amzn2.x86_64 21/94 Verifying : perl-Storable-2.45-3.amzn2.0.2.x86_64 22/94 Verifying : python3-3.7.16-1.amzn2.0.4.x86_64 23/94 Verifying : kmod-25-3.amzn2.0.2.x86_64 24/94 Verifying : kernel-headers-4.14.327-246.539.amzn2.x86_64 25/94 Verifying : cmake-2.8.12.2-2.amzn2.0.2.x86_64 26/94 Verifying : 4:perl-libs-5.16.3-299.amzn2.0.2.x86_64 27/94 Verifying : perl-Getopt-Long-2.40-3.amzn2.noarch 28/94 Verifying : perl-Time-Local-1.2300-2.amzn2.noarch 29/94 Verifying : 1:dbus-1.10.24-7.amzn2.0.3.x86_64 30/94 Verifying : 2:shadow-utils-4.1.5.1-24.amzn2.0.3.x86_64 31/94 Verifying : binutils-2.29.1-31.amzn2.x86_64 32/94 Verifying : libsmartcols-2.30.2-2.amzn2.0.11.x86_64 33/94 Verifying : fipscheck-1.4.1-6.amzn2.0.2.x86_64 34/94 Verifying : pcre2-10.23-11.amzn2.0.1.x86_64 35/94 Verifying : libpwquality-1.2.3-5.amzn2.x86_64 36/94 Verifying : 7:device-mapper-libs-1.02.170-6.amzn2.5.x86_64 37/94 Verifying : cracklib-dicts-2.9.0-11.amzn2.0.2.x86_64 38/94 Verifying : perl-TermReadKey-2.30-20.amzn2.0.2.x86_64 39/94 Verifying : audit-libs-2.8.1-3.amzn2.1.x86_64 40/94 Verifying : perl-Pod-Perldoc-3.20-4.amzn2.0.1.noarch 41/94 Verifying : perl-Git-2.40.1-1.amzn2.0.1.noarch 42/94 Verifying : acl-2.2.51-14.amzn2.x86_64 43/94 Verifying : libsemanage-2.5-11.amzn2.x86_64 44/94 Verifying : 2:tar-1.26-35.amzn2.0.2.x86_64 45/94 Verifying : elfutils-libs-0.176-2.amzn2.0.2.x86_64 46/94 Verifying : openssh-7.4p1-22.amzn2.0.5.x86_64 47/94 Verifying : systemd-libs-219-78.amzn2.0.22.x86_64 48/94 Verifying : perl-File-Path-2.09-2.amzn2.noarch 49/94 Verifying : libcilkrts-7.3.1-17.amzn2.x86_64 50/94 Verifying : fipscheck-lib-1.4.1-6.amzn2.0.2.x86_64 51/94 Verifying : systemd-219-78.amzn2.0.22.x86_64 52/94 Verifying : lzo-2.06-8.amzn2.0.4.x86_64 53/94 Verifying : glibc-devel-2.26-63.amzn2.0.1.x86_64 54/94 Verifying : git-core-doc-2.40.1-1.amzn2.0.1.noarch 55/94 Verifying : 4:perl-5.16.3-299.amzn2.0.2.x86_64 56/94 Verifying : 1:dbus-libs-1.10.24-7.amzn2.0.3.x86_64 57/94 Verifying : perl-Carp-1.26-244.amzn2.noarch 58/94 Verifying : elfutils-default-yama-scope-0.176-2.amzn2.0.2.noarch 59/94 Verifying : perl-Scalar-List-Utils-1.27-248.amzn2.0.2.x86_64 60/94 Verifying : cpp-7.3.1-17.amzn2.x86_64 61/94 Verifying : mpfr-3.1.1-4.amzn2.0.2.x86_64 62/94 Verifying : util-linux-2.30.2-2.amzn2.0.11.x86_64 63/94 Verifying : pam-1.1.8-23.amzn2.0.1.x86_64 64/94 Verifying : perl-HTTP-Tiny-0.033-3.amzn2.0.1.noarch 65/94 Verifying : ustr-1.0.4-16.amzn2.0.3.x86_64 66/94 Verifying : less-458-9.amzn2.0.2.x86_64 67/94 Verifying : 1:perl-Error-0.17020-2.amzn2.noarch 68/94 Verifying : perl-Pod-Usage-1.63-3.amzn2.noarch 69/94 Verifying : gcc-7.3.1-17.amzn2.x86_64 70/94 Verifying : 1:perl-parent-0.225-244.amzn2.0.1.noarch 71/94 Verifying : perl-File-Temp-0.23.01-3.amzn2.noarch 72/94 Verifying : libmpx-7.3.1-17.amzn2.x86_64 73/94 Verifying : openssh-clients-7.4p1-22.amzn2.0.5.x86_64 74/94 Verifying : libarchive-3.1.2-14.amzn2.0.1.x86_64 75/94 Verifying : perl-Exporter-5.68-3.amzn2.noarch 76/94 Verifying : cracklib-2.9.0-11.amzn2.0.2.x86_64 77/94 Verifying : perl-Encode-2.51-7.amzn2.0.2.x86_64 78/94 Verifying : 7:device-mapper-1.02.170-6.amzn2.5.x86_64 79/94 Verifying : perl-threads-shared-1.43-6.amzn2.0.2.x86_64 80/94 Verifying : gzip-1.5-10.amzn2.0.1.x86_64 81/94 Verifying : libsanitizer-7.3.1-17.amzn2.x86_64 82/94 Verifying : perl-constant-1.27-2.amzn2.0.1.noarch 83/94 Verifying : kmod-libs-25-3.amzn2.0.2.x86_64 84/94 Verifying : glibc-headers-2.26-63.amzn2.0.1.x86_64 85/94 Verifying : libgomp-7.3.1-17.amzn2.x86_64 86/94 Verifying : perl-threads-1.87-4.amzn2.0.2.x86_64 87/94 Verifying : perl-podlators-2.5.1-3.amzn2.0.1.noarch 88/94 Verifying : libatomic-7.3.1-17.amzn2.x86_64 89/94 Verifying : 4:perl-Time-HiRes-1.9725-3.amzn2.0.2.x86_64 90/94 Verifying : perl-Socket-2.010-4.amzn2.0.2.x86_64 91/94 Verifying : 4:perl-macros-5.16.3-299.amzn2.0.2.x86_64 92/94 Verifying : groff-base-1.22.2-8.amzn2.0.2.x86_64 93/94 Verifying : perl-Text-ParseWords-3.29-4.amzn2.noarch 94/94 Installed: cmake.x86_64 0:2.8.12.2-2.amzn2.0.2 gcc-c++.x86_64 0:7.3.1-17.amzn2 git.x86_64 0:2.40.1-1.amzn2.0.1 python3.x86_64 0:3.7.16-1.amzn2.0.4 tar.x86_64 2:1.26-35.amzn2.0.2 Dependency Installed: acl.x86_64 0:2.2.51-14.amzn2 audit-libs.x86_64 0:2.8.1-3.amzn2.1 binutils.x86_64 0:2.29.1-31.amzn2 cpp.x86_64 0:7.3.1-17.amzn2 cracklib.x86_64 0:2.9.0-11.amzn2.0.2 cracklib-dicts.x86_64 0:2.9.0-11.amzn2.0.2 cryptsetup-libs.x86_64 0:1.7.4-4.amzn2 dbus.x86_64 1:1.10.24-7.amzn2.0.3 dbus-libs.x86_64 1:1.10.24-7.amzn2.0.3 device-mapper.x86_64 7:1.02.170-6.amzn2.5 device-mapper-libs.x86_64 7:1.02.170-6.amzn2.5 elfutils-default-yama-scope.noarch 0:0.176-2.amzn2.0.2 elfutils-libs.x86_64 0:0.176-2.amzn2.0.2 fipscheck.x86_64 0:1.4.1-6.amzn2.0.2 fipscheck-lib.x86_64 0:1.4.1-6.amzn2.0.2 gcc.x86_64 0:7.3.1-17.amzn2 git-core.x86_64 0:2.40.1-1.amzn2.0.1 git-core-doc.noarch 0:2.40.1-1.amzn2.0.1 glibc-devel.x86_64 0:2.26-63.amzn2.0.1 glibc-headers.x86_64 0:2.26-63.amzn2.0.1 groff-base.x86_64 0:1.22.2-8.amzn2.0.2 gzip.x86_64 0:1.5-10.amzn2.0.1 kernel-headers.x86_64 0:4.14.327-246.539.amzn2 kmod.x86_64 0:25-3.amzn2.0.2 kmod-libs.x86_64 0:25-3.amzn2.0.2 less.x86_64 0:458-9.amzn2.0.2 libarchive.x86_64 0:3.1.2-14.amzn2.0.1 libatomic.x86_64 0:7.3.1-17.amzn2 libcap-ng.x86_64 0:0.7.5-4.amzn2.0.4 libcilkrts.x86_64 0:7.3.1-17.amzn2 libedit.x86_64 0:3.0-12.20121213cvs.amzn2.0.2 libfdisk.x86_64 0:2.30.2-2.amzn2.0.11 libgomp.x86_64 0:7.3.1-17.amzn2 libitm.x86_64 0:7.3.1-17.amzn2 libmpc.x86_64 0:1.0.1-3.amzn2.0.2 libmpx.x86_64 0:7.3.1-17.amzn2 libpwquality.x86_64 0:1.2.3-5.amzn2 libquadmath.x86_64 0:7.3.1-17.amzn2 libsanitizer.x86_64 0:7.3.1-17.amzn2 libsemanage.x86_64 0:2.5-11.amzn2 libsmartcols.x86_64 0:2.30.2-2.amzn2.0.11 libtirpc.x86_64 0:0.2.4-0.16.amzn2 libutempter.x86_64 0:1.1.6-4.amzn2.0.2 lz4.x86_64 0:1.7.5-2.amzn2.0.1 lzo.x86_64 0:2.06-8.amzn2.0.4 mpfr.x86_64 0:3.1.1-4.amzn2.0.2 openssh.x86_64 0:7.4p1-22.amzn2.0.5 openssh-clients.x86_64 0:7.4p1-22.amzn2.0.5 pam.x86_64 0:1.1.8-23.amzn2.0.1 pcre2.x86_64 0:10.23-11.amzn2.0.1 perl.x86_64 4:5.16.3-299.amzn2.0.2 perl-Carp.noarch 0:1.26-244.amzn2 perl-Encode.x86_64 0:2.51-7.amzn2.0.2 perl-Error.noarch 1:0.17020-2.amzn2 perl-Exporter.noarch 0:5.68-3.amzn2 perl-File-Path.noarch 0:2.09-2.amzn2 perl-File-Temp.noarch 0:0.23.01-3.amzn2 perl-Filter.x86_64 0:1.49-3.amzn2.0.2 perl-Getopt-Long.noarch 0:2.40-3.amzn2 perl-Git.noarch 0:2.40.1-1.amzn2.0.1 perl-HTTP-Tiny.noarch 0:0.033-3.amzn2.0.1 perl-PathTools.x86_64 0:3.40-5.amzn2.0.2 perl-Pod-Escapes.noarch 1:1.04-299.amzn2.0.2 perl-Pod-Perldoc.noarch 0:3.20-4.amzn2.0.1 perl-Pod-Simple.noarch 1:3.28-4.amzn2 perl-Pod-Usage.noarch 0:1.63-3.amzn2 perl-Scalar-List-Utils.x86_64 0:1.27-248.amzn2.0.2 perl-Socket.x86_64 0:2.010-4.amzn2.0.2 perl-Storable.x86_64 0:2.45-3.amzn2.0.2 perl-TermReadKey.x86_64 0:2.30-20.amzn2.0.2 perl-Text-ParseWords.noarch 0:3.29-4.amzn2 perl-Time-HiRes.x86_64 4:1.9725-3.amzn2.0.2 perl-Time-Local.noarch 0:1.2300-2.amzn2 perl-constant.noarch 0:1.27-2.amzn2.0.1 perl-libs.x86_64 4:5.16.3-299.amzn2.0.2 perl-macros.x86_64 4:5.16.3-299.amzn2.0.2 perl-parent.noarch 1:0.225-244.amzn2.0.1 perl-podlators.noarch 0:2.5.1-3.amzn2.0.1 perl-threads.x86_64 0:1.87-4.amzn2.0.2 perl-threads-shared.x86_64 0:1.43-6.amzn2.0.2 python3-libs.x86_64 0:3.7.16-1.amzn2.0.4 python3-pip.noarch 0:20.2.2-1.amzn2.0.4 python3-setuptools.noarch 0:49.1.3-1.amzn2.0.3 qrencode-libs.x86_64 0:3.4.1-3.amzn2.0.2 shadow-utils.x86_64 2:4.1.5.1-24.amzn2.0.3 systemd.x86_64 0:219-78.amzn2.0.22 systemd-libs.x86_64 0:219-78.amzn2.0.22 ustr.x86_64 0:1.0.4-16.amzn2.0.3 util-linux.x86_64 0:2.30.2-2.amzn2.0.11 Complete! Loaded plugins: ovl Resolving Dependencies --> Running transaction check ---> Package autoconf.noarch 0:2.69-11.amzn2 will be installed --> Processing Dependency: m4 >= 1.4.14 for package: autoconf-2.69-11.amzn2.noarch --> Processing Dependency: perl(Data::Dumper) for package: autoconf-2.69-11.amzn2.noarch ---> Package automake.noarch 0:1.13.4-3.1.amzn2 will be installed --> Processing Dependency: perl(TAP::Parser) for package: automake-1.13.4-3.1.amzn2.noarch --> Processing Dependency: perl(Thread::Queue) for package: automake-1.13.4-3.1.amzn2.noarch ---> Package bison.x86_64 0:3.0.4-6.amzn2.0.2 will be installed ---> Package byacc.x86_64 0:1.9.20130304-3.amzn2.0.2 will be installed ---> Package cscope.x86_64 0:15.8-10.amzn2.0.2 will be installed --> Processing Dependency: emacs-filesystem for package: cscope-15.8-10.amzn2.0.2.x86_64 ---> Package ctags.x86_64 0:5.8-13.amzn2.0.2 will be installed ---> Package diffstat.x86_64 0:1.57-4.amzn2.0.2 will be installed ---> Package doxygen.x86_64 1:1.8.5-4.amzn2 will be installed ---> Package elfutils.x86_64 0:0.176-2.amzn2.0.2 will be installed ---> Package flex.x86_64 0:2.5.37-3.amzn2.0.3 will be installed ---> Package gcc-gfortran.x86_64 0:7.3.1-17.amzn2 will be installed --> Processing Dependency: libgfortran.so.4()(64bit) for package: gcc-gfortran-7.3.1-17.amzn2.x86_64 ---> Package gettext.x86_64 0:0.19.8.1-3.amzn2 will be installed --> Processing Dependency: gettext-libs(x86-64) = 0.19.8.1-3.amzn2 for package: gettext-0.19.8.1-3.amzn2.x86_64 --> Processing Dependency: libcroco-0.6.so.3()(64bit) for package: gettext-0.19.8.1-3.amzn2.x86_64 --> Processing Dependency: libgettextlib-0.19.8.1.so()(64bit) for package: gettext-0.19.8.1-3.amzn2.x86_64 --> Processing Dependency: libgettextsrc-0.19.8.1.so()(64bit) for package: gettext-0.19.8.1-3.amzn2.x86_64 ---> Package indent.x86_64 0:2.2.11-13.amzn2.0.2 will be installed ---> Package intltool.noarch 0:0.50.2-7.amzn2 will be installed --> Processing Dependency: gettext-devel for package: intltool-0.50.2-7.amzn2.noarch --> Processing Dependency: perl(XML::Parser) for package: intltool-0.50.2-7.amzn2.noarch ---> Package libtool.x86_64 0:2.4.2-22.2.amzn2.0.2 will be installed ---> Package make.x86_64 1:3.82-24.amzn2 will be installed ---> Package patch.x86_64 0:2.7.1-12.amzn2.0.2 will be installed ---> Package patchutils.x86_64 0:0.3.3-4.amzn2.0.1 will be installed ---> Package pkgconfig.x86_64 1:0.27.1-4.amzn2.0.2 will be installed ---> Package rcs.x86_64 0:5.9.0-5.amzn2.0.2 will be installed ---> Package rpm-build.x86_64 0:4.11.3-48.amzn2.0.3 will be installed --> Processing Dependency: /usr/bin/gdb-add-index for package: rpm-build-4.11.3-48.amzn2.0.3.x86_64 --> Processing Dependency: bzip2 for package: rpm-build-4.11.3-48.amzn2.0.3.x86_64 --> Processing Dependency: file for package: rpm-build-4.11.3-48.amzn2.0.3.x86_64 --> Processing Dependency: unzip for package: rpm-build-4.11.3-48.amzn2.0.3.x86_64 --> Processing Dependency: xz for package: rpm-build-4.11.3-48.amzn2.0.3.x86_64 ---> Package rpm-sign.x86_64 0:4.11.3-48.amzn2.0.3 will be installed ---> Package subversion.x86_64 0:1.7.14-16.amzn2.0.1 will be installed --> Processing Dependency: subversion-libs(x86-64) = 1.7.14-16.amzn2.0.1 for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: systemd-sysv for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libapr-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libaprutil-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libneon.so.27()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_client-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_delta-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_diff-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_fs-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_fs_base-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_fs_fs-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_fs_util-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_ra-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_ra_local-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_ra_neon-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_ra_svn-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_repos-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_subr-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_wc-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 ---> Package swig.x86_64 0:3.0.12-11.amzn2.0.3 will be installed ---> Package system-rpm-config.noarch 0:9.1.0-76.amzn2.0.14 will be installed --> Processing Dependency: dwz >= 0.4 for package: system-rpm-config-9.1.0-76.amzn2.0.14.noarch --> Processing Dependency: go-srpm-macros for package: system-rpm-config-9.1.0-76.amzn2.0.14.noarch --> Processing Dependency: perl-srpm-macros for package: system-rpm-config-9.1.0-76.amzn2.0.14.noarch --> Processing Dependency: zip for package: system-rpm-config-9.1.0-76.amzn2.0.14.noarch ---> Package systemtap.x86_64 0:4.5-1.amzn2.0.1 will be installed --> Processing Dependency: systemtap-client = 4.5-1.amzn2.0.1 for package: systemtap-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: systemtap-devel = 4.5-1.amzn2.0.1 for package: systemtap-4.5-1.amzn2.0.1.x86_64 --> Running transaction check ---> Package apr.x86_64 0:1.7.2-1.amzn2 will be installed ---> Package apr-util.x86_64 0:1.6.3-1.amzn2.0.1 will be installed --> Processing Dependency: apr-util-bdb(x86-64) = 1.6.3-1.amzn2.0.1 for package: apr-util-1.6.3-1.amzn2.0.1.x86_64 ---> Package bzip2.x86_64 0:1.0.6-13.amzn2.0.3 will be installed ---> Package dwz.x86_64 0:0.11-3.amzn2.0.3 will be installed ---> Package emacs-filesystem.noarch 1:27.2-4.amzn2.0.4 will be installed ---> Package file.x86_64 0:5.11-36.amzn2.0.1 will be installed ---> Package gdb.x86_64 0:8.0.1-36.amzn2.0.1 will be installed ---> Package gettext-devel.x86_64 0:0.19.8.1-3.amzn2 will be installed --> Processing Dependency: gettext-common-devel = 0.19.8.1-3.amzn2 for package: gettext-devel-0.19.8.1-3.amzn2.x86_64 ---> Package gettext-libs.x86_64 0:0.19.8.1-3.amzn2 will be installed ---> Package go-srpm-macros.noarch 0:3.0.15-23.amzn2.0.2 will be installed ---> Package libcroco.x86_64 0:0.6.12-6.amzn2 will be installed ---> Package libgfortran.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package m4.x86_64 0:1.4.16-10.amzn2.0.2 will be installed ---> Package neon.x86_64 0:0.30.0-3.amzn2.0.2 will be installed --> Processing Dependency: libgnutls.so.28(GNUTLS_1_4)(64bit) for package: neon-0.30.0-3.amzn2.0.2.x86_64 --> Processing Dependency: libgnutls.so.28(GNUTLS_2_12)(64bit) for package: neon-0.30.0-3.amzn2.0.2.x86_64 --> Processing Dependency: libgnutls.so.28()(64bit) for package: neon-0.30.0-3.amzn2.0.2.x86_64 --> Processing Dependency: libpakchois.so.0()(64bit) for package: neon-0.30.0-3.amzn2.0.2.x86_64 --> Processing Dependency: libproxy.so.1()(64bit) for package: neon-0.30.0-3.amzn2.0.2.x86_64 ---> Package perl-Data-Dumper.x86_64 0:2.145-3.amzn2.0.2 will be installed ---> Package perl-Test-Harness.noarch 0:3.28-3.amzn2 will be installed ---> Package perl-Thread-Queue.noarch 0:3.02-2.amzn2 will be installed ---> Package perl-XML-Parser.x86_64 0:2.41-10.amzn2.0.2 will be installed ---> Package perl-srpm-macros.noarch 0:1-8.amzn2.0.1 will be installed ---> Package subversion-libs.x86_64 0:1.7.14-16.amzn2.0.1 will be installed ---> Package systemd-sysv.x86_64 0:219-78.amzn2.0.22 will be installed ---> Package systemtap-client.x86_64 0:4.5-1.amzn2.0.1 will be installed --> Processing Dependency: systemtap-runtime = 4.5-1.amzn2.0.1 for package: systemtap-client-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: mokutil for package: systemtap-client-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: libavahi-client.so.3()(64bit) for package: systemtap-client-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: libavahi-common.so.3()(64bit) for package: systemtap-client-4.5-1.amzn2.0.1.x86_64 ---> Package systemtap-devel.x86_64 0:4.5-1.amzn2.0.1 will be installed --> Processing Dependency: kernel-devel-uname-r for package: systemtap-devel-4.5-1.amzn2.0.1.x86_64 ---> Package unzip.x86_64 0:6.0-57.amzn2.0.1 will be installed ---> Package xz.x86_64 0:5.2.2-1.amzn2.0.3 will be installed ---> Package zip.x86_64 0:3.0-11.amzn2.0.2 will be installed --> Running transaction check ---> Package apr-util-bdb.x86_64 0:1.6.3-1.amzn2.0.1 will be installed ---> Package avahi-libs.x86_64 0:0.6.31-20.amzn2.0.2 will be installed ---> Package gettext-common-devel.noarch 0:0.19.8.1-3.amzn2 will be installed ---> Package gnutls.x86_64 0:3.3.29-9.amzn2.0.1 will be installed --> Processing Dependency: trousers >= 0.3.11.2 for package: gnutls-3.3.29-9.amzn2.0.1.x86_64 --> Processing Dependency: libhogweed.so.2()(64bit) for package: gnutls-3.3.29-9.amzn2.0.1.x86_64 --> Processing Dependency: libnettle.so.4()(64bit) for package: gnutls-3.3.29-9.amzn2.0.1.x86_64 ---> Package kernel-devel.x86_64 0:4.14.327-246.539.amzn2 will be installed --> Processing Dependency: /usr/sbin/hardlink for package: kernel-devel-4.14.327-246.539.amzn2.x86_64 --> Processing Dependency: elfutils-libelf-devel for package: kernel-devel-4.14.327-246.539.amzn2.x86_64 ---> Package libproxy.x86_64 0:0.4.11-10.amzn2.0.3 will be installed --> Processing Dependency: libmodman.so.1()(64bit) for package: libproxy-0.4.11-10.amzn2.0.3.x86_64 ---> Package mokutil.x86_64 1:0.3.0-10.amzn2.0.1 will be installed --> Processing Dependency: libefivar.so.1(LIBEFIVAR_0.24)(64bit) for package: 1:mokutil-0.3.0-10.amzn2.0.1.x86_64 --> Processing Dependency: libefivar.so.1(libefivar.so.0)(64bit) for package: 1:mokutil-0.3.0-10.amzn2.0.1.x86_64 --> Processing Dependency: libefivar.so.1()(64bit) for package: 1:mokutil-0.3.0-10.amzn2.0.1.x86_64 ---> Package pakchois.x86_64 0:0.4-10.amzn2.0.2 will be installed ---> Package systemtap-runtime.x86_64 0:4.5-1.amzn2.0.1 will be installed --> Processing Dependency: libboost_system.so.1.53.0()(64bit) for package: systemtap-runtime-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: libdyninstAPI.so.9.3()(64bit) for package: systemtap-runtime-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: libjson-c.so.2()(64bit) for package: systemtap-runtime-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: libsymtabAPI.so.9.3()(64bit) for package: systemtap-runtime-4.5-1.amzn2.0.1.x86_64 --> Running transaction check ---> Package boost-system.x86_64 0:1.53.0-27.amzn2.0.5 will be installed ---> Package dyninst.x86_64 0:9.3.1-3.amzn2 will be installed --> Processing Dependency: libboost_date_time-mt.so.1.53.0()(64bit) for package: dyninst-9.3.1-3.amzn2.x86_64 --> Processing Dependency: libboost_thread-mt.so.1.53.0()(64bit) for package: dyninst-9.3.1-3.amzn2.x86_64 --> Processing Dependency: libdwarf.so.0()(64bit) for package: dyninst-9.3.1-3.amzn2.x86_64 ---> Package efivar-libs.x86_64 0:31-4.amzn2.0.4 will be installed ---> Package elfutils-libelf-devel.x86_64 0:0.176-2.amzn2.0.2 will be installed --> Processing Dependency: pkgconfig(zlib) for package: elfutils-libelf-devel-0.176-2.amzn2.0.2.x86_64 ---> Package hardlink.x86_64 1:1.3-3.amzn2 will be installed ---> Package json-c.x86_64 0:0.11-4.amzn2.0.4 will be installed ---> Package libmodman.x86_64 0:2.0.1-8.amzn2.0.2 will be installed ---> Package nettle.x86_64 0:2.7.1-9.amzn2 will be installed ---> Package trousers.x86_64 0:0.3.14-2.amzn2.0.2 will be installed --> Running transaction check ---> Package boost-date-time.x86_64 0:1.53.0-27.amzn2.0.5 will be installed ---> Package boost-thread.x86_64 0:1.53.0-27.amzn2.0.5 will be installed ---> Package libdwarf.x86_64 0:20130207-4.amzn2.0.2 will be installed ---> Package zlib-devel.x86_64 0:1.2.7-19.amzn2.0.3 will be installed --> Processing Dependency: zlib = 1.2.7-19.amzn2.0.3 for package: zlib-devel-1.2.7-19.amzn2.0.3.x86_64 --> Running transaction check ---> Package zlib.x86_64 0:1.2.7-19.amzn2.0.2 will be updated ---> Package zlib.x86_64 0:1.2.7-19.amzn2.0.3 will be an update --> Finished Dependency Resolution Dependencies Resolved ================================================================================ Package Arch Version Repository Size ================================================================================ Installing for group install "Development Tools": autoconf noarch 2.69-11.amzn2 amzn2-core 701 k automake noarch 1.13.4-3.1.amzn2 amzn2-core 679 k bison x86_64 3.0.4-6.amzn2.0.2 amzn2-core 674 k byacc x86_64 1.9.20130304-3.amzn2.0.2 amzn2-core 66 k cscope x86_64 15.8-10.amzn2.0.2 amzn2-core 204 k ctags x86_64 5.8-13.amzn2.0.2 amzn2-core 157 k diffstat x86_64 1.57-4.amzn2.0.2 amzn2-core 35 k doxygen x86_64 1:1.8.5-4.amzn2 amzn2-core 3.5 M elfutils x86_64 0.176-2.amzn2.0.2 amzn2-core 303 k flex x86_64 2.5.37-3.amzn2.0.3 amzn2-core 291 k gcc-gfortran x86_64 7.3.1-17.amzn2 amzn2-core 11 M gettext x86_64 0.19.8.1-3.amzn2 amzn2-core 1.0 M indent x86_64 2.2.11-13.amzn2.0.2 amzn2-core 150 k intltool noarch 0.50.2-7.amzn2 amzn2-core 59 k libtool x86_64 2.4.2-22.2.amzn2.0.2 amzn2-core 588 k make x86_64 1:3.82-24.amzn2 amzn2-core 420 k patch x86_64 2.7.1-12.amzn2.0.2 amzn2-core 110 k patchutils x86_64 0.3.3-4.amzn2.0.1 amzn2-core 104 k pkgconfig x86_64 1:0.27.1-4.amzn2.0.2 amzn2-core 54 k rcs x86_64 5.9.0-5.amzn2.0.2 amzn2-core 231 k rpm-build x86_64 4.11.3-48.amzn2.0.3 amzn2-core 150 k rpm-sign x86_64 4.11.3-48.amzn2.0.3 amzn2-core 50 k subversion x86_64 1.7.14-16.amzn2.0.1 amzn2-core 1.0 M swig x86_64 3.0.12-11.amzn2.0.3 amzn2-core 1.4 M system-rpm-config noarch 9.1.0-76.amzn2.0.14 amzn2-core 90 k systemtap x86_64 4.5-1.amzn2.0.1 amzn2-core 12 k Installing for dependencies: apr x86_64 1.7.2-1.amzn2 amzn2-core 130 k apr-util x86_64 1.6.3-1.amzn2.0.1 amzn2-core 101 k apr-util-bdb x86_64 1.6.3-1.amzn2.0.1 amzn2-core 22 k avahi-libs x86_64 0.6.31-20.amzn2.0.2 amzn2-core 61 k boost-date-time x86_64 1.53.0-27.amzn2.0.5 amzn2-core 52 k boost-system x86_64 1.53.0-27.amzn2.0.5 amzn2-core 40 k boost-thread x86_64 1.53.0-27.amzn2.0.5 amzn2-core 73 k bzip2 x86_64 1.0.6-13.amzn2.0.3 amzn2-core 52 k dwz x86_64 0.11-3.amzn2.0.3 amzn2-core 98 k dyninst x86_64 9.3.1-3.amzn2 amzn2-core 3.5 M efivar-libs x86_64 31-4.amzn2.0.4 amzn2-core 68 k elfutils-libelf-devel x86_64 0.176-2.amzn2.0.2 amzn2-core 40 k emacs-filesystem noarch 1:27.2-4.amzn2.0.4 amzn2-core 68 k file x86_64 5.11-36.amzn2.0.1 amzn2-core 57 k gdb x86_64 8.0.1-36.amzn2.0.1 amzn2-core 3.1 M gettext-common-devel noarch 0.19.8.1-3.amzn2 amzn2-core 410 k gettext-devel x86_64 0.19.8.1-3.amzn2 amzn2-core 320 k gettext-libs x86_64 0.19.8.1-3.amzn2 amzn2-core 500 k gnutls x86_64 3.3.29-9.amzn2.0.1 amzn2-core 661 k go-srpm-macros noarch 3.0.15-23.amzn2.0.2 amzn2-core 23 k hardlink x86_64 1:1.3-3.amzn2 amzn2-core 23 k json-c x86_64 0.11-4.amzn2.0.4 amzn2-core 30 k kernel-devel x86_64 4.14.327-246.539.amzn2 amzn2-core 13 M libcroco x86_64 0.6.12-6.amzn2 amzn2-core 103 k libdwarf x86_64 20130207-4.amzn2.0.2 amzn2-core 111 k libgfortran x86_64 7.3.1-17.amzn2 amzn2-core 536 k libmodman x86_64 2.0.1-8.amzn2.0.2 amzn2-core 29 k libproxy x86_64 0.4.11-10.amzn2.0.3 amzn2-core 61 k m4 x86_64 1.4.16-10.amzn2.0.2 amzn2-core 256 k mokutil x86_64 1:0.3.0-10.amzn2.0.1 amzn2-core 39 k neon x86_64 0.30.0-3.amzn2.0.2 amzn2-core 166 k nettle x86_64 2.7.1-9.amzn2 amzn2-core 327 k pakchois x86_64 0.4-10.amzn2.0.2 amzn2-core 14 k perl-Data-Dumper x86_64 2.145-3.amzn2.0.2 amzn2-core 48 k perl-Test-Harness noarch 3.28-3.amzn2 amzn2-core 302 k perl-Thread-Queue noarch 3.02-2.amzn2 amzn2-core 17 k perl-XML-Parser x86_64 2.41-10.amzn2.0.2 amzn2-core 223 k perl-srpm-macros noarch 1-8.amzn2.0.1 amzn2-core 4.7 k subversion-libs x86_64 1.7.14-16.amzn2.0.1 amzn2-core 912 k systemd-sysv x86_64 219-78.amzn2.0.22 amzn2-core 98 k systemtap-client x86_64 4.5-1.amzn2.0.1 amzn2-core 3.7 M systemtap-devel x86_64 4.5-1.amzn2.0.1 amzn2-core 2.3 M systemtap-runtime x86_64 4.5-1.amzn2.0.1 amzn2-core 475 k trousers x86_64 0.3.14-2.amzn2.0.2 amzn2-core 294 k unzip x86_64 6.0-57.amzn2.0.1 amzn2-core 182 k xz x86_64 5.2.2-1.amzn2.0.3 amzn2-core 228 k zip x86_64 3.0-11.amzn2.0.2 amzn2-core 263 k zlib-devel x86_64 1.2.7-19.amzn2.0.3 amzn2-core 51 k Updating for dependencies: zlib x86_64 1.2.7-19.amzn2.0.3 amzn2-core 90 k Transaction Summary ================================================================================ Install 26 Packages (+48 Dependent packages) Upgrade ( 1 Dependent package) Total download size: 55 M Downloading packages: Delta RPMs disabled because /usr/bin/applydeltarpm not installed. -------------------------------------------------------------------------------- Total 9.3 MB/s | 55 MB 00:05 Running transaction check Running transaction test Transaction test succeeded Running transaction Updating : zlib-1.2.7-19.amzn2.0.3.x86_64 1/76 Installing : m4-1.4.16-10.amzn2.0.2.x86_64 2/76 Installing : 1:pkgconfig-0.27.1-4.amzn2.0.2.x86_64 3/76 Installing : boost-system-1.53.0-27.amzn2.0.5.x86_64 4/76 Installing : apr-1.7.2-1.amzn2.x86_64 5/76 Installing : apr-util-bdb-1.6.3-1.amzn2.0.1.x86_64 6/76 Installing : apr-util-1.6.3-1.amzn2.0.1.x86_64 7/76 Installing : zip-3.0-11.amzn2.0.2.x86_64 8/76 Installing : avahi-libs-0.6.31-20.amzn2.0.2.x86_64 9/76 Installing : xz-5.2.2-1.amzn2.0.3.x86_64 10/76 Installing : unzip-6.0-57.amzn2.0.1.x86_64 11/76 Installing : libcroco-0.6.12-6.amzn2.x86_64 12/76 Installing : gettext-libs-0.19.8.1-3.amzn2.x86_64 13/76 Installing : patch-2.7.1-12.amzn2.0.2.x86_64 14/76 Installing : perl-Thread-Queue-3.02-2.amzn2.noarch 15/76 Installing : gettext-0.19.8.1-3.amzn2.x86_64 16/76 Installing : boost-thread-1.53.0-27.amzn2.0.5.x86_64 17/76 Installing : zlib-devel-1.2.7-19.amzn2.0.3.x86_64 18/76 Installing : elfutils-libelf-devel-0.176-2.amzn2.0.2.x86_64 19/76 Installing : gdb-8.0.1-36.amzn2.0.1.x86_64 20/76 Installing : file-5.11-36.amzn2.0.1.x86_64 21/76 Installing : libmodman-2.0.1-8.amzn2.0.2.x86_64 22/76 Installing : libproxy-0.4.11-10.amzn2.0.3.x86_64 23/76 Installing : perl-XML-Parser-2.41-10.amzn2.0.2.x86_64 24/76 Installing : bzip2-1.0.6-13.amzn2.0.3.x86_64 25/76 Installing : gettext-common-devel-0.19.8.1-3.amzn2.noarch 26/76 Installing : gettext-devel-0.19.8.1-3.amzn2.x86_64 27/76 Installing : dwz-0.11-3.amzn2.0.3.x86_64 28/76 Installing : systemd-sysv-219-78.amzn2.0.22.x86_64 29/76 Installing : 1:make-3.82-24.amzn2.x86_64 30/76 Installing : elfutils-0.176-2.amzn2.0.2.x86_64 31/76 Installing : 1:emacs-filesystem-27.2-4.amzn2.0.4.noarch 32/76 Installing : efivar-libs-31-4.amzn2.0.4.x86_64 33/76 Installing : 1:mokutil-0.3.0-10.amzn2.0.1.x86_64 34/76 Installing : perl-srpm-macros-1-8.amzn2.0.1.noarch 35/76 Installing : go-srpm-macros-3.0.15-23.amzn2.0.2.noarch 36/76 Installing : system-rpm-config-9.1.0-76.amzn2.0.14.noarch 37/76 Installing : perl-Data-Dumper-2.145-3.amzn2.0.2.x86_64 38/76 Installing : autoconf-2.69-11.amzn2.noarch 39/76 Installing : trousers-0.3.14-2.amzn2.0.2.x86_64 40/76 Installing : json-c-0.11-4.amzn2.0.4.x86_64 41/76 Installing : perl-Test-Harness-3.28-3.amzn2.noarch 42/76 Installing : automake-1.13.4-3.1.amzn2.noarch 43/76 Installing : libgfortran-7.3.1-17.amzn2.x86_64 44/76 Installing : libdwarf-20130207-4.amzn2.0.2.x86_64 45/76 Installing : pakchois-0.4-10.amzn2.0.2.x86_64 46/76 Installing : nettle-2.7.1-9.amzn2.x86_64 47/76 Installing : gnutls-3.3.29-9.amzn2.0.1.x86_64 48/76 Installing : neon-0.30.0-3.amzn2.0.2.x86_64 49/76 Installing : subversion-libs-1.7.14-16.amzn2.0.1.x86_64 50/76 Installing : 1:hardlink-1.3-3.amzn2.x86_64 51/76 Installing : kernel-devel-4.14.327-246.539.amzn2.x86_64 52/76 Installing : systemtap-devel-4.5-1.amzn2.0.1.x86_64 53/76 Installing : boost-date-time-1.53.0-27.amzn2.0.5.x86_64 54/76 Installing : dyninst-9.3.1-3.amzn2.x86_64 55/76 Installing : systemtap-runtime-4.5-1.amzn2.0.1.x86_64 56/76 Installing : systemtap-client-4.5-1.amzn2.0.1.x86_64 57/76 Installing : systemtap-4.5-1.amzn2.0.1.x86_64 58/76 Installing : subversion-1.7.14-16.amzn2.0.1.x86_64 59/76 Installing : gcc-gfortran-7.3.1-17.amzn2.x86_64 60/76 Installing : intltool-0.50.2-7.amzn2.noarch 61/76 Installing : libtool-2.4.2-22.2.amzn2.0.2.x86_64 62/76 Installing : rpm-build-4.11.3-48.amzn2.0.3.x86_64 63/76 Installing : cscope-15.8-10.amzn2.0.2.x86_64 64/76 Installing : flex-2.5.37-3.amzn2.0.3.x86_64 65/76 Installing : bison-3.0.4-6.amzn2.0.2.x86_64 66/76 Installing : rpm-sign-4.11.3-48.amzn2.0.3.x86_64 67/76 Installing : patchutils-0.3.3-4.amzn2.0.1.x86_64 68/76 Installing : rcs-5.9.0-5.amzn2.0.2.x86_64 69/76 Installing : indent-2.2.11-13.amzn2.0.2.x86_64 70/76 Installing : 1:doxygen-1.8.5-4.amzn2.x86_64 71/76 Installing : diffstat-1.57-4.amzn2.0.2.x86_64 72/76 Installing : byacc-1.9.20130304-3.amzn2.0.2.x86_64 73/76 Installing : swig-3.0.12-11.amzn2.0.3.x86_64 74/76 Installing : ctags-5.8-13.amzn2.0.2.x86_64 75/76 Cleanup : zlib-1.2.7-19.amzn2.0.2.x86_64 76/76 Verifying : zlib-1.2.7-19.amzn2.0.3.x86_64 1/76 Verifying : perl-Thread-Queue-3.02-2.amzn2.noarch 2/76 Verifying : gettext-devel-0.19.8.1-3.amzn2.x86_64 3/76 Verifying : patch-2.7.1-12.amzn2.0.2.x86_64 4/76 Verifying : boost-date-time-1.53.0-27.amzn2.0.5.x86_64 5/76 Verifying : flex-2.5.37-3.amzn2.0.3.x86_64 6/76 Verifying : apr-1.7.2-1.amzn2.x86_64 7/76 Verifying : 1:hardlink-1.3-3.amzn2.x86_64 8/76 Verifying : nettle-2.7.1-9.amzn2.x86_64 9/76 Verifying : gcc-gfortran-7.3.1-17.amzn2.x86_64 10/76 Verifying : ctags-5.8-13.amzn2.0.2.x86_64 11/76 Verifying : swig-3.0.12-11.amzn2.0.3.x86_64 12/76 Verifying : byacc-1.9.20130304-3.amzn2.0.2.x86_64 13/76 Verifying : libcroco-0.6.12-6.amzn2.x86_64 14/76 Verifying : pakchois-0.4-10.amzn2.0.2.x86_64 15/76 Verifying : libdwarf-20130207-4.amzn2.0.2.x86_64 16/76 Verifying : kernel-devel-4.14.327-246.539.amzn2.x86_64 17/76 Verifying : dyninst-9.3.1-3.amzn2.x86_64 18/76 Verifying : gettext-libs-0.19.8.1-3.amzn2.x86_64 19/76 Verifying : cscope-15.8-10.amzn2.0.2.x86_64 20/76 Verifying : unzip-6.0-57.amzn2.0.1.x86_64 21/76 Verifying : diffstat-1.57-4.amzn2.0.2.x86_64 22/76 Verifying : 1:doxygen-1.8.5-4.amzn2.x86_64 23/76 Verifying : 1:mokutil-0.3.0-10.amzn2.0.1.x86_64 24/76 Verifying : system-rpm-config-9.1.0-76.amzn2.0.14.noarch 25/76 Verifying : systemtap-devel-4.5-1.amzn2.0.1.x86_64 26/76 Verifying : libgfortran-7.3.1-17.amzn2.x86_64 27/76 Verifying : gettext-0.19.8.1-3.amzn2.x86_64 28/76 Verifying : perl-Test-Harness-3.28-3.amzn2.noarch 29/76 Verifying : autoconf-2.69-11.amzn2.noarch 30/76 Verifying : intltool-0.50.2-7.amzn2.noarch 31/76 Verifying : zlib-devel-1.2.7-19.amzn2.0.3.x86_64 32/76 Verifying : apr-util-1.6.3-1.amzn2.0.1.x86_64 33/76 Verifying : libproxy-0.4.11-10.amzn2.0.3.x86_64 34/76 Verifying : boost-system-1.53.0-27.amzn2.0.5.x86_64 35/76 Verifying : json-c-0.11-4.amzn2.0.4.x86_64 36/76 Verifying : trousers-0.3.14-2.amzn2.0.2.x86_64 37/76 Verifying : xz-5.2.2-1.amzn2.0.3.x86_64 38/76 Verifying : perl-Data-Dumper-2.145-3.amzn2.0.2.x86_64 39/76 Verifying : perl-srpm-macros-1-8.amzn2.0.1.noarch 40/76 Verifying : gnutls-3.3.29-9.amzn2.0.1.x86_64 41/76 Verifying : subversion-libs-1.7.14-16.amzn2.0.1.x86_64 42/76 Verifying : automake-1.13.4-3.1.amzn2.noarch 43/76 Verifying : rpm-sign-4.11.3-48.amzn2.0.3.x86_64 44/76 Verifying : bison-3.0.4-6.amzn2.0.2.x86_64 45/76 Verifying : efivar-libs-31-4.amzn2.0.4.x86_64 46/76 Verifying : 1:pkgconfig-0.27.1-4.amzn2.0.2.x86_64 47/76 Verifying : 1:emacs-filesystem-27.2-4.amzn2.0.4.noarch 48/76 Verifying : gdb-8.0.1-36.amzn2.0.1.x86_64 49/76 Verifying : elfutils-0.176-2.amzn2.0.2.x86_64 50/76 Verifying : go-srpm-macros-3.0.15-23.amzn2.0.2.noarch 51/76 Verifying : libtool-2.4.2-22.2.amzn2.0.2.x86_64 52/76 Verifying : indent-2.2.11-13.amzn2.0.2.x86_64 53/76 Verifying : subversion-1.7.14-16.amzn2.0.1.x86_64 54/76 Verifying : 1:make-3.82-24.amzn2.x86_64 55/76 Verifying : avahi-libs-0.6.31-20.amzn2.0.2.x86_64 56/76 Verifying : systemd-sysv-219-78.amzn2.0.22.x86_64 57/76 Verifying : apr-util-bdb-1.6.3-1.amzn2.0.1.x86_64 58/76 Verifying : neon-0.30.0-3.amzn2.0.2.x86_64 59/76 Verifying : systemtap-4.5-1.amzn2.0.1.x86_64 60/76 Verifying : dwz-0.11-3.amzn2.0.3.x86_64 61/76 Verifying : gettext-common-devel-0.19.8.1-3.amzn2.noarch 62/76 Verifying : systemtap-client-4.5-1.amzn2.0.1.x86_64 63/76 Verifying : zip-3.0-11.amzn2.0.2.x86_64 64/76 Verifying : bzip2-1.0.6-13.amzn2.0.3.x86_64 65/76 Verifying : rcs-5.9.0-5.amzn2.0.2.x86_64 66/76 Verifying : boost-thread-1.53.0-27.amzn2.0.5.x86_64 67/76 Verifying : file-5.11-36.amzn2.0.1.x86_64 68/76 Verifying : rpm-build-4.11.3-48.amzn2.0.3.x86_64 69/76 Verifying : patchutils-0.3.3-4.amzn2.0.1.x86_64 70/76 Verifying : systemtap-runtime-4.5-1.amzn2.0.1.x86_64 71/76 Verifying : elfutils-libelf-devel-0.176-2.amzn2.0.2.x86_64 72/76 Verifying : m4-1.4.16-10.amzn2.0.2.x86_64 73/76 Verifying : perl-XML-Parser-2.41-10.amzn2.0.2.x86_64 74/76 Verifying : libmodman-2.0.1-8.amzn2.0.2.x86_64 75/76 Verifying : zlib-1.2.7-19.amzn2.0.2.x86_64 76/76 Installed: autoconf.noarch 0:2.69-11.amzn2 automake.noarch 0:1.13.4-3.1.amzn2 bison.x86_64 0:3.0.4-6.amzn2.0.2 byacc.x86_64 0:1.9.20130304-3.amzn2.0.2 cscope.x86_64 0:15.8-10.amzn2.0.2 ctags.x86_64 0:5.8-13.amzn2.0.2 diffstat.x86_64 0:1.57-4.amzn2.0.2 doxygen.x86_64 1:1.8.5-4.amzn2 elfutils.x86_64 0:0.176-2.amzn2.0.2 flex.x86_64 0:2.5.37-3.amzn2.0.3 gcc-gfortran.x86_64 0:7.3.1-17.amzn2 gettext.x86_64 0:0.19.8.1-3.amzn2 indent.x86_64 0:2.2.11-13.amzn2.0.2 intltool.noarch 0:0.50.2-7.amzn2 libtool.x86_64 0:2.4.2-22.2.amzn2.0.2 make.x86_64 1:3.82-24.amzn2 patch.x86_64 0:2.7.1-12.amzn2.0.2 patchutils.x86_64 0:0.3.3-4.amzn2.0.1 pkgconfig.x86_64 1:0.27.1-4.amzn2.0.2 rcs.x86_64 0:5.9.0-5.amzn2.0.2 rpm-build.x86_64 0:4.11.3-48.amzn2.0.3 rpm-sign.x86_64 0:4.11.3-48.amzn2.0.3 subversion.x86_64 0:1.7.14-16.amzn2.0.1 swig.x86_64 0:3.0.12-11.amzn2.0.3 system-rpm-config.noarch 0:9.1.0-76.amzn2.0.14 systemtap.x86_64 0:4.5-1.amzn2.0.1 Dependency Installed: apr.x86_64 0:1.7.2-1.amzn2 apr-util.x86_64 0:1.6.3-1.amzn2.0.1 apr-util-bdb.x86_64 0:1.6.3-1.amzn2.0.1 avahi-libs.x86_64 0:0.6.31-20.amzn2.0.2 boost-date-time.x86_64 0:1.53.0-27.amzn2.0.5 boost-system.x86_64 0:1.53.0-27.amzn2.0.5 boost-thread.x86_64 0:1.53.0-27.amzn2.0.5 bzip2.x86_64 0:1.0.6-13.amzn2.0.3 dwz.x86_64 0:0.11-3.amzn2.0.3 dyninst.x86_64 0:9.3.1-3.amzn2 efivar-libs.x86_64 0:31-4.amzn2.0.4 elfutils-libelf-devel.x86_64 0:0.176-2.amzn2.0.2 emacs-filesystem.noarch 1:27.2-4.amzn2.0.4 file.x86_64 0:5.11-36.amzn2.0.1 gdb.x86_64 0:8.0.1-36.amzn2.0.1 gettext-common-devel.noarch 0:0.19.8.1-3.amzn2 gettext-devel.x86_64 0:0.19.8.1-3.amzn2 gettext-libs.x86_64 0:0.19.8.1-3.amzn2 gnutls.x86_64 0:3.3.29-9.amzn2.0.1 go-srpm-macros.noarch 0:3.0.15-23.amzn2.0.2 hardlink.x86_64 1:1.3-3.amzn2 json-c.x86_64 0:0.11-4.amzn2.0.4 kernel-devel.x86_64 0:4.14.327-246.539.amzn2 libcroco.x86_64 0:0.6.12-6.amzn2 libdwarf.x86_64 0:20130207-4.amzn2.0.2 libgfortran.x86_64 0:7.3.1-17.amzn2 libmodman.x86_64 0:2.0.1-8.amzn2.0.2 libproxy.x86_64 0:0.4.11-10.amzn2.0.3 m4.x86_64 0:1.4.16-10.amzn2.0.2 mokutil.x86_64 1:0.3.0-10.amzn2.0.1 neon.x86_64 0:0.30.0-3.amzn2.0.2 nettle.x86_64 0:2.7.1-9.amzn2 pakchois.x86_64 0:0.4-10.amzn2.0.2 perl-Data-Dumper.x86_64 0:2.145-3.amzn2.0.2 perl-Test-Harness.noarch 0:3.28-3.amzn2 perl-Thread-Queue.noarch 0:3.02-2.amzn2 perl-XML-Parser.x86_64 0:2.41-10.amzn2.0.2 perl-srpm-macros.noarch 0:1-8.amzn2.0.1 subversion-libs.x86_64 0:1.7.14-16.amzn2.0.1 systemd-sysv.x86_64 0:219-78.amzn2.0.22 systemtap-client.x86_64 0:4.5-1.amzn2.0.1 systemtap-devel.x86_64 0:4.5-1.amzn2.0.1 systemtap-runtime.x86_64 0:4.5-1.amzn2.0.1 trousers.x86_64 0:0.3.14-2.amzn2.0.2 unzip.x86_64 0:6.0-57.amzn2.0.1 xz.x86_64 0:5.2.2-1.amzn2.0.3 zip.x86_64 0:3.0-11.amzn2.0.2 zlib-devel.x86_64 0:1.2.7-19.amzn2.0.3 Dependency Updated: zlib.x86_64 0:1.2.7-19.amzn2.0.3 Complete!% ```
jlarmstrongiv commented 1 year ago

Using just SIMSIMD_TARGET_X86_AVX512=0 results in this error

Error logs ``` Command failed with exit code 1: docker run --entrypoint /bin/bash -v /var/folders/zf/2l3hc6vn12v7r89t45mhxzhm0000gn/T/018bb1c1-d688-7eed-ad69-350e46f 9419f:/var/task --rm public.ecr.aws/lambda/nodejs:18-x86_64 -c npm install -g npm@10.2.3 && yum install tar git python3 cmake gcc-c++ -y && yum groupinstall "Development Tools" -y && npm install --SIMSIMD_TARGET_X86_AVX512=0 --build-from-source usearch@2.8.6 There is no installed groups file. Maybe run: yum groups mark convert (see man yum) npm ERR! code 1 npm ERR! path /var/task/node_modules/usearch npm ERR! command failed npm ERR! command sh -c node-gyp rebuild npm ERR! make: Entering directory `/var/task/node_modules/usearch/build' npm ERR! CC(target) Release/obj.target/nothing/../node-addon-api/nothing.o npm ERR! rm -f Release/obj.target/../node-addon-api/nothing.a Release/obj.target/../node-addon-api/nothing.a.ar-file-list; mkdir -p `dirname Release/obj.target/../node-addon-api/nothing.a` npm ERR! ar crs Release/obj.target/../node-addon-api/nothing.a @Release/obj.target/../node-addon-api/nothing.a.ar-file-list npm ERR! COPY Release/nothing.a npm ERR! CXX(target) Release/obj.target/usearch/javascript/lib.o npm ERR! make: Leaving directory `/var/task/node_modules/usearch/build' npm ERR! gyp info it worked if it ends with ok npm ERR! gyp info using node-gyp@10.0.1 npm ERR! gyp info using node@18.18.2 | linux | x64 npm ERR! gyp info find Python using Python version 3.7.16 found at "/usr/bin/python3" npm ERR! gyp http GET https://nodejs.org/download/release/v18.18.2/node-v18.18.2-headers.tar.gz npm ERR! gyp http 200 https://nodejs.org/download/release/v18.18.2/node-v18.18.2-headers.tar.gz npm ERR! gyp http GET https://nodejs.org/download/release/v18.18.2/SHASUMS256.txt npm ERR! gyp http 200 https://nodejs.org/download/release/v18.18.2/SHASUMS256.txt npm ERR! gyp info spawn /usr/bin/python3 npm ERR! gyp info spawn args [ npm ERR! gyp info spawn args '/var/lang/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py', npm ERR! gyp info spawn args 'binding.gyp', npm ERR! gyp info spawn args '-f', npm ERR! gyp info spawn args 'make', npm ERR! gyp info spawn args '-I', npm ERR! gyp info spawn args '/var/task/node_modules/usearch/build/config.gypi', npm ERR! gyp info spawn args '-I', npm ERR! gyp info spawn args '/var/lang/lib/node_modules/npm/node_modules/node-gyp/addon.gypi', npm ERR! gyp info spawn args '-I', npm ERR! gyp info spawn args '/root/.cache/node-gyp/18.18.2/include/node/common.gypi', npm ERR! gyp info spawn args '-Dlibrary=shared_library', npm ERR! gyp info spawn args '-Dvisibility=default', npm ERR! gyp info spawn args '-Dnode_root_dir=/root/.cache/node-gyp/18.18.2', npm ERR! gyp info spawn args '-Dnode_gyp_dir=/var/lang/lib/node_modules/npm/node_modules/node-gyp', npm ERR! gyp info spawn args '-Dnode_lib_file=/root/.cache/node-gyp/18.18.2/<(target_arch)/node.lib', npm ERR! gyp info spawn args '-Dmodule_root_dir=/var/task/node_modules/usearch', npm ERR! gyp info spawn args '-Dnode_engine=v8', npm ERR! gyp info spawn args '--depth=.', npm ERR! gyp info spawn args '--no-parallel', npm ERR! gyp info spawn args '--generator-output', npm ERR! gyp info spawn args 'build', npm ERR! gyp info spawn args '-Goutput_dir=.' npm ERR! gyp info spawn args ] npm ERR! gyp info spawn make npm ERR! gyp info spawn args [ 'BUILDTYPE=Release', '-C', 'build' ] npm ERR! In file included from ../simsimd/include/simsimd/simsimd.h:15:0, npm ERR! from ../include/usearch/index_plugins.hpp:51, npm ERR! from ../include/usearch/index_dense.hpp:10, npm ERR! from ../javascript/lib.cpp:18: npm ERR! ../simsimd/include/simsimd/binary.h: In function ‘simsimd_f32_t simsimd_avx512_b8_hamming(const simsimd_b8_t*, const simsimd_b8_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/binary.h:149:17: error: ‘_mm512_loadu_epi8’ was not declared in this scope npm ERR! a_vec = _mm512_loadu_epi8(a); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/binary.h:149:17: note: suggested alternative: ‘_mm512_add_epi8’ npm ERR! a_vec = _mm512_loadu_epi8(a); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! _mm512_add_epi8 npm ERR! ../simsimd/include/simsimd/binary.h: In function ‘simsimd_f32_t simsimd_avx512_b8_jaccard(const simsimd_b8_t*, const simsimd_b8_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/binary.h:175:17: error: ‘_mm512_loadu_epi8’ was not declared in this scope npm ERR! a_vec = _mm512_loadu_epi8(a); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/binary.h:175:17: note: suggested alternative: ‘_mm512_add_epi8’ npm ERR! a_vec = _mm512_loadu_epi8(a); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! _mm512_add_epi8 npm ERR! In file included from ../simsimd/include/simsimd/simsimd.h:16:0, npm ERR! from ../include/usearch/index_plugins.hpp:51, npm ERR! from ../include/usearch/index_dense.hpp:10, npm ERR! from ../javascript/lib.cpp:18: npm ERR! ../simsimd/include/simsimd/probability.h: In function ‘simsimd_f32_t simsimd_avx512_f32_js(const simsimd_f32_t*, const simsimd_f32_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/probability.h:427:12: warning: unused variable ‘m_recip_approx’ [-Wunused-variable] npm ERR! __m512 m_recip_approx = _mm512_rcp14_ps(m_vec); npm ERR! ^~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h: At global scope: npm ERR! ../simsimd/include/simsimd/probability.h:453:8: error: ‘__m512h’ does not name a type; did you mean ‘__m512d’? npm ERR! inline __m512h npm ERR! ^~~~~~~ npm ERR! __m512d npm ERR! ../simsimd/include/simsimd/probability.h:473:87: error: attribute(target("avx512fp16")) is unknown npm ERR! simsimd_avx512_f16_kl(simsimd_f16_t const* a, simsimd_f16_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! ../simsimd/include/simsimd/probability.h: In function ‘simsimd_f32_t simsimd_avx512_f16_kl(const simsimd_f16_t*, const simsimd_f16_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/probability.h:474:5: error: ‘__m512h’ was not declared in this scope npm ERR! __m512h sum_vec = _mm512_set1_ph((_Float16)0); npm ERR! ^~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:474:5: note: suggested alternative: ‘__m512d’ npm ERR! __m512h sum_vec = _mm512_set1_ph((_Float16)0); npm ERR! ^~~~~~~ npm ERR! __m512d npm ERR! ../simsimd/include/simsimd/probability.h:475:13: error: expected ‘;’ before ‘epsilon_vec’ npm ERR! __m512h epsilon_vec = _mm512_set1_ph((_Float16)SIMSIMD_F16_DIVISION_EPSILON); npm ERR! ^~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:476:13: error: expected ‘;’ before ‘a_vec’ npm ERR! __m512h a_vec, b_vec; npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:481:9: error: ‘a_vec’ was not declared in this scope npm ERR! a_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)), epsilon_vec); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:481:9: note: suggested alternative: ‘iovec’ npm ERR! a_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)), epsilon_vec); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:481:43: error: ‘_mm512_castsi512_ph’ was not declared in this scope npm ERR! a_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:481:43: note: suggested alternative: ‘_mm512_castsi512_pd’ npm ERR! a_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_castsi512_pd npm ERR! ../simsimd/include/simsimd/probability.h:481:99: error: ‘epsilon_vec’ was not declared in this scope npm ERR! a_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)), epsilon_vec); npm ERR! ^~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:481:17: error: ‘_mm512_maskz_add_ph’ was not declared in this scope npm ERR! a_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:481:17: note: suggested alternative: ‘_mm512_maskz_add_ps’ npm ERR! a_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_maskz_add_ps npm ERR! ../simsimd/include/simsimd/probability.h:482:9: error: ‘b_vec’ was not declared in this scope npm ERR! b_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, b)), epsilon_vec); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:482:9: note: suggested alternative: ‘iovec’ npm ERR! b_vec = _mm512_maskz_add_ph(mask, _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, b)), epsilon_vec); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:485:9: error: ‘a_vec’ was not declared in this scope npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:485:9: note: suggested alternative: ‘iovec’ npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:485:51: error: ‘_mm512_loadu_epi16’ was not declared in this scope npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:485:51: note: suggested alternative: ‘_mm512_madd_epi16’ npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! _mm512_madd_epi16 npm ERR! ../simsimd/include/simsimd/probability.h:485:31: error: ‘_mm512_castsi512_ph’ was not declared in this scope npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:485:31: note: suggested alternative: ‘_mm512_castsi512_pd’ npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_castsi512_pd npm ERR! ../simsimd/include/simsimd/probability.h:485:75: error: ‘epsilon_vec’ was not declared in this scope npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:485:17: error: ‘_mm512_add_ph’ was not declared in this scope npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:485:17: note: suggested alternative: ‘_mm512_add_ps’ npm ERR! a_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(a)), epsilon_vec); npm ERR! ^~~~~~~~~~~~~ npm ERR! _mm512_add_ps npm ERR! ../simsimd/include/simsimd/probability.h:486:9: error: ‘b_vec’ was not declared in this scope npm ERR! b_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(b)), epsilon_vec); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:486:9: note: suggested alternative: ‘iovec’ npm ERR! b_vec = _mm512_add_ph(_mm512_castsi512_ph(_mm512_loadu_epi16(b)), epsilon_vec); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:489:13: error: expected ‘;’ before ‘ratio_vec’ npm ERR! __m512h ratio_vec = _mm512_div_ph(a_vec, b_vec); npm ERR! ^~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:490:13: error: expected ‘;’ before ‘log_ratio_vec’ npm ERR! __m512h log_ratio_vec = simsimd_avx512_f16_log2(ratio_vec); npm ERR! ^~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:491:13: error: expected ‘;’ before ‘prod_vec’ npm ERR! __m512h prod_vec = _mm512_mul_ph(a_vec, log_ratio_vec); npm ERR! ^~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:492:5: error: ‘sum_vec’ was not declared in this scope npm ERR! sum_vec = _mm512_add_ph(sum_vec, prod_vec); npm ERR! ^~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:492:5: note: suggested alternative: ‘shm_open’ npm ERR! sum_vec = _mm512_add_ph(sum_vec, prod_vec); npm ERR! ^~~~~~~ npm ERR! shm_open npm ERR! ../simsimd/include/simsimd/probability.h:492:38: error: ‘prod_vec’ was not declared in this scope npm ERR! sum_vec = _mm512_add_ph(sum_vec, prod_vec); npm ERR! ^~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:492:38: note: suggested alternative: ‘iovec’ npm ERR! sum_vec = _mm512_add_ph(sum_vec, prod_vec); npm ERR! ^~~~~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:492:15: error: ‘_mm512_add_ph’ was not declared in this scope npm ERR! sum_vec = _mm512_add_ph(sum_vec, prod_vec); npm ERR! ^~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:492:15: note: suggested alternative: ‘_mm512_add_ps’ npm ERR! sum_vec = _mm512_add_ph(sum_vec, prod_vec); npm ERR! ^~~~~~~~~~~~~ npm ERR! _mm512_add_ps npm ERR! ../simsimd/include/simsimd/probability.h:497:12: error: ‘_mm512_reduce_add_ph’ was not declared in this scope npm ERR! return _mm512_reduce_add_ph(sum_vec) * log2_normalizer; npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:497:12: note: suggested alternative: ‘_mm512_reduce_add_pd’ npm ERR! return _mm512_reduce_add_ph(sum_vec) * log2_normalizer; npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_reduce_add_pd npm ERR! ../simsimd/include/simsimd/probability.h: At global scope: npm ERR! ../simsimd/include/simsimd/probability.h:502:87: error: attribute(target("avx512fp16")) is unknown npm ERR! simsimd_avx512_f16_js(simsimd_f16_t const* a, simsimd_f16_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! ../simsimd/include/simsimd/probability.h: In function ‘simsimd_f32_t simsimd_avx512_f16_js(const simsimd_f16_t*, const simsimd_f16_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/probability.h:503:5: error: ‘__m512h’ was not declared in this scope npm ERR! __m512h sum_a_vec = _mm512_set1_ph((_Float16)0); npm ERR! ^~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:503:5: note: suggested alternative: ‘__m512d’ npm ERR! __m512h sum_a_vec = _mm512_set1_ph((_Float16)0); npm ERR! ^~~~~~~ npm ERR! __m512d npm ERR! ../simsimd/include/simsimd/probability.h:504:13: error: expected ‘;’ before ‘sum_b_vec’ npm ERR! __m512h sum_b_vec = _mm512_set1_ph((_Float16)0); npm ERR! ^~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:505:13: error: expected ‘;’ before ‘epsilon_vec’ npm ERR! __m512h epsilon_vec = _mm512_set1_ph((_Float16)SIMSIMD_F16_DIVISION_EPSILON); npm ERR! ^~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:506:13: error: expected ‘;’ before ‘a_vec’ npm ERR! __m512h a_vec, b_vec; npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:511:9: error: ‘a_vec’ was not declared in this scope npm ERR! a_vec = _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:511:9: note: suggested alternative: ‘iovec’ npm ERR! a_vec = _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:511:17: error: ‘_mm512_castsi512_ph’ was not declared in this scope npm ERR! a_vec = _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:511:17: note: suggested alternative: ‘_mm512_castsi512_pd’ npm ERR! a_vec = _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, a)); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_castsi512_pd npm ERR! ../simsimd/include/simsimd/probability.h:512:9: error: ‘b_vec’ was not declared in this scope npm ERR! b_vec = _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, b)); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:512:9: note: suggested alternative: ‘iovec’ npm ERR! b_vec = _mm512_castsi512_ph(_mm512_maskz_loadu_epi16(mask, b)); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:515:9: error: ‘a_vec’ was not declared in this scope npm ERR! a_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(a)); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:515:9: note: suggested alternative: ‘iovec’ npm ERR! a_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(a)); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:515:37: error: ‘_mm512_loadu_epi16’ was not declared in this scope npm ERR! a_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(a)); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:515:37: note: suggested alternative: ‘_mm512_madd_epi16’ npm ERR! a_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(a)); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! _mm512_madd_epi16 npm ERR! ../simsimd/include/simsimd/probability.h:515:17: error: ‘_mm512_castsi512_ph’ was not declared in this scope npm ERR! a_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(a)); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:515:17: note: suggested alternative: ‘_mm512_castsi512_pd’ npm ERR! a_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(a)); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_castsi512_pd npm ERR! ../simsimd/include/simsimd/probability.h:516:9: error: ‘b_vec’ was not declared in this scope npm ERR! b_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(b)); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:516:9: note: suggested alternative: ‘iovec’ npm ERR! b_vec = _mm512_castsi512_ph(_mm512_loadu_epi16(b)); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:519:13: error: expected ‘;’ before ‘m_vec’ npm ERR! __m512h m_vec = _mm512_mul_ph(_mm512_add_ph(a_vec, b_vec), _mm512_set1_ph((_Float16)0.5f)); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:520:51: error: ‘a_vec’ was not declared in this scope npm ERR! __mmask32 nonzero_mask_a = _mm512_cmp_ph_mask(a_vec, epsilon_vec, _CMP_GE_OQ); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:520:51: note: suggested alternative: ‘iovec’ npm ERR! __mmask32 nonzero_mask_a = _mm512_cmp_ph_mask(a_vec, epsilon_vec, _CMP_GE_OQ); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:520:58: error: ‘epsilon_vec’ was not declared in this scope npm ERR! __mmask32 nonzero_mask_a = _mm512_cmp_ph_mask(a_vec, epsilon_vec, _CMP_GE_OQ); npm ERR! ^~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:520:32: error: ‘_mm512_cmp_ph_mask’ was not declared in this scope npm ERR! __mmask32 nonzero_mask_a = _mm512_cmp_ph_mask(a_vec, epsilon_vec, _CMP_GE_OQ); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:520:32: note: suggested alternative: ‘_mm512_cmp_ps_mask’ npm ERR! __mmask32 nonzero_mask_a = _mm512_cmp_ph_mask(a_vec, epsilon_vec, _CMP_GE_OQ); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! _mm512_cmp_ps_mask npm ERR! ../simsimd/include/simsimd/probability.h:521:51: error: ‘b_vec’ was not declared in this scope npm ERR! __mmask32 nonzero_mask_b = _mm512_cmp_ph_mask(b_vec, epsilon_vec, _CMP_GE_OQ); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:521:51: note: suggested alternative: ‘iovec’ npm ERR! __mmask32 nonzero_mask_b = _mm512_cmp_ph_mask(b_vec, epsilon_vec, _CMP_GE_OQ); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/probability.h:523:13: error: expected ‘;’ before ‘m_recip_approx’ npm ERR! __m512h m_recip_approx = _mm512_rcp_ph(m_vec); npm ERR! ^~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:524:13: error: expected ‘;’ before ‘ratio_a_vec’ npm ERR! __m512h ratio_a_vec = _mm512_mul_ph(a_vec, m_recip_approx); npm ERR! ^~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:525:13: error: expected ‘;’ before ‘ratio_b_vec’ npm ERR! __m512h ratio_b_vec = _mm512_mul_ph(b_vec, m_recip_approx); npm ERR! ^~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:526:13: error: expected ‘;’ before ‘log_ratio_a_vec’ npm ERR! __m512h log_ratio_a_vec = simsimd_avx512_f16_log2(ratio_a_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:527:13: error: expected ‘;’ before ‘log_ratio_b_vec’ npm ERR! __m512h log_ratio_b_vec = simsimd_avx512_f16_log2(ratio_b_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:528:5: error: ‘sum_a_vec’ was not declared in this scope npm ERR! sum_a_vec = _mm512_maskz_fmadd_ph(nonzero_mask, a_vec, log_ratio_a_vec, sum_a_vec); npm ERR! ^~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:528:60: error: ‘log_ratio_a_vec’ was not declared in this scope npm ERR! sum_a_vec = _mm512_maskz_fmadd_ph(nonzero_mask, a_vec, log_ratio_a_vec, sum_a_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:528:17: error: ‘_mm512_maskz_fmadd_ph’ was not declared in this scope npm ERR! sum_a_vec = _mm512_maskz_fmadd_ph(nonzero_mask, a_vec, log_ratio_a_vec, sum_a_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:528:17: note: suggested alternative: ‘_mm512_maskz_fmadd_ps’ npm ERR! sum_a_vec = _mm512_maskz_fmadd_ph(nonzero_mask, a_vec, log_ratio_a_vec, sum_a_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_maskz_fmadd_ps npm ERR! ../simsimd/include/simsimd/probability.h:529:5: error: ‘sum_b_vec’ was not declared in this scope npm ERR! sum_b_vec = _mm512_maskz_fmadd_ph(nonzero_mask, b_vec, log_ratio_b_vec, sum_b_vec); npm ERR! ^~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:529:60: error: ‘log_ratio_b_vec’ was not declared in this scope npm ERR! sum_b_vec = _mm512_maskz_fmadd_ph(nonzero_mask, b_vec, log_ratio_b_vec, sum_b_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:534:33: error: ‘_mm512_add_ph’ was not declared in this scope npm ERR! return _mm512_reduce_add_ph(_mm512_add_ph(sum_a_vec, sum_b_vec)) * 0.5f * log2_normalizer; npm ERR! ^~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:534:33: note: suggested alternative: ‘_mm512_add_ps’ npm ERR! return _mm512_reduce_add_ph(_mm512_add_ph(sum_a_vec, sum_b_vec)) * 0.5f * log2_normalizer; npm ERR! ^~~~~~~~~~~~~ npm ERR! _mm512_add_ps npm ERR! ../simsimd/include/simsimd/probability.h:534:12: error: ‘_mm512_reduce_add_ph’ was not declared in this scope npm ERR! return _mm512_reduce_add_ph(_mm512_add_ph(sum_a_vec, sum_b_vec)) * 0.5f * log2_normalizer; npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/probability.h:534:12: note: suggested alternative: ‘_mm512_reduce_add_pd’ npm ERR! return _mm512_reduce_add_ph(_mm512_add_ph(sum_a_vec, sum_b_vec)) * 0.5f * log2_normalizer; npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_reduce_add_pd npm ERR! In file included from ../simsimd/include/simsimd/simsimd.h:17:0, npm ERR! from ../include/usearch/index_plugins.hpp:51, npm ERR! from ../include/usearch/index_dense.hpp:10, npm ERR! from ../javascript/lib.cpp:18: npm ERR! ../simsimd/include/simsimd/spatial.h: At global scope: npm ERR! ../simsimd/include/simsimd/spatial.h:836:89: error: attribute(target("avx512fp16")) is unknown npm ERR! simsimd_avx512_f16_l2sq(simsimd_f16_t const* a, simsimd_f16_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! ../simsimd/include/simsimd/spatial.h: In function ‘simsimd_f32_t simsimd_avx512_f16_l2sq(const simsimd_f16_t*, const simsimd_f16_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/spatial.h:837:5: error: ‘__m512h’ was not declared in this scope npm ERR! __m512h d2_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:837:5: note: suggested alternative: ‘__m512d’ npm ERR! __m512h d2_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~~ npm ERR! __m512d npm ERR! ../simsimd/include/simsimd/spatial.h:847:21: error: ‘_mm512_loadu_epi16’ was not declared in this scope npm ERR! a_i16_vec = _mm512_loadu_epi16(a); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:847:21: note: suggested alternative: ‘_mm512_madd_epi16’ npm ERR! a_i16_vec = _mm512_loadu_epi16(a); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! _mm512_madd_epi16 npm ERR! ../simsimd/include/simsimd/spatial.h:851:13: error: expected ‘;’ before ‘d_vec’ npm ERR! __m512h d_vec = _mm512_sub_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec)); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:852:5: error: ‘d2_vec’ was not declared in this scope npm ERR! d2_vec = _mm512_fmadd_ph(d_vec, d_vec, d2_vec); npm ERR! ^~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:852:5: note: suggested alternative: ‘iovec’ npm ERR! d2_vec = _mm512_fmadd_ph(d_vec, d_vec, d2_vec); npm ERR! ^~~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/spatial.h:852:30: error: ‘d_vec’ was not declared in this scope npm ERR! d2_vec = _mm512_fmadd_ph(d_vec, d_vec, d2_vec); npm ERR! ^~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:852:30: note: suggested alternative: ‘iovec’ npm ERR! d2_vec = _mm512_fmadd_ph(d_vec, d_vec, d2_vec); npm ERR! ^~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/spatial.h:852:14: error: ‘_mm512_fmadd_ph’ was not declared in this scope npm ERR! d2_vec = _mm512_fmadd_ph(d_vec, d_vec, d2_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:852:14: note: suggested alternative: ‘_mm512_fmadd_ps’ npm ERR! d2_vec = _mm512_fmadd_ph(d_vec, d_vec, d2_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! _mm512_fmadd_ps npm ERR! ../simsimd/include/simsimd/spatial.h:856:12: error: ‘_mm512_reduce_add_ph’ was not declared in this scope npm ERR! return _mm512_reduce_add_ph(d2_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:856:12: note: suggested alternative: ‘_mm512_reduce_add_pd’ npm ERR! return _mm512_reduce_add_ph(d2_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_reduce_add_pd npm ERR! ../simsimd/include/simsimd/spatial.h: At global scope: npm ERR! ../simsimd/include/simsimd/spatial.h:861:87: error: attribute(target("avx512fp16")) is unknown npm ERR! simsimd_avx512_f16_ip(simsimd_f16_t const* a, simsimd_f16_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! ../simsimd/include/simsimd/spatial.h: In function ‘simsimd_f32_t simsimd_avx512_f16_ip(const simsimd_f16_t*, const simsimd_f16_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/spatial.h:862:5: error: ‘__m512h’ was not declared in this scope npm ERR! __m512h ab_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:862:5: note: suggested alternative: ‘__m512d’ npm ERR! __m512h ab_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~~ npm ERR! __m512d npm ERR! ../simsimd/include/simsimd/spatial.h:872:21: error: ‘_mm512_loadu_epi16’ was not declared in this scope npm ERR! a_i16_vec = _mm512_loadu_epi16(a); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:872:21: note: suggested alternative: ‘_mm512_madd_epi16’ npm ERR! a_i16_vec = _mm512_loadu_epi16(a); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! _mm512_madd_epi16 npm ERR! ../simsimd/include/simsimd/spatial.h:876:5: error: ‘ab_vec’ was not declared in this scope npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:876:5: note: suggested alternative: ‘iovec’ npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/spatial.h:876:30: error: ‘_mm512_castsi512_ph’ was not declared in this scope npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:876:30: note: suggested alternative: ‘_mm512_castsi512_pd’ npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_castsi512_pd npm ERR! ../simsimd/include/simsimd/spatial.h:876:14: error: ‘_mm512_fmadd_ph’ was not declared in this scope npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:876:14: note: suggested alternative: ‘_mm512_fmadd_ps’ npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! _mm512_fmadd_ps npm ERR! ../simsimd/include/simsimd/spatial.h:880:16: error: ‘_mm512_reduce_add_ph’ was not declared in this scope npm ERR! return 1 - _mm512_reduce_add_ph(ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:880:16: note: suggested alternative: ‘_mm512_reduce_add_pd’ npm ERR! return 1 - _mm512_reduce_add_ph(ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_reduce_add_pd npm ERR! ../simsimd/include/simsimd/spatial.h: At global scope: npm ERR! ../simsimd/include/simsimd/spatial.h:885:88: error: attribute(target("avx512fp16")) is unknown npm ERR! simsimd_avx512_f16_cos(simsimd_f16_t const* a, simsimd_f16_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! ../simsimd/include/simsimd/spatial.h: In function ‘simsimd_f32_t simsimd_avx512_f16_cos(const simsimd_f16_t*, const simsimd_f16_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/spatial.h:886:5: error: ‘__m512h’ was not declared in this scope npm ERR! __m512h ab_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:886:5: note: suggested alternative: ‘__m512d’ npm ERR! __m512h ab_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~~ npm ERR! __m512d npm ERR! ../simsimd/include/simsimd/spatial.h:887:13: error: expected ‘;’ before ‘a2_vec’ npm ERR! __m512h a2_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:888:13: error: expected ‘;’ before ‘b2_vec’ npm ERR! __m512h b2_vec = _mm512_set1_ph(0); npm ERR! ^~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:898:21: error: ‘_mm512_loadu_epi16’ was not declared in this scope npm ERR! a_i16_vec = _mm512_loadu_epi16(a); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:898:21: note: suggested alternative: ‘_mm512_madd_epi16’ npm ERR! a_i16_vec = _mm512_loadu_epi16(a); npm ERR! ^~~~~~~~~~~~~~~~~~ npm ERR! _mm512_madd_epi16 npm ERR! ../simsimd/include/simsimd/spatial.h:902:5: error: ‘ab_vec’ was not declared in this scope npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:902:5: note: suggested alternative: ‘iovec’ npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/spatial.h:902:30: error: ‘_mm512_castsi512_ph’ was not declared in this scope npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:902:30: note: suggested alternative: ‘_mm512_castsi512_pd’ npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_castsi512_pd npm ERR! ../simsimd/include/simsimd/spatial.h:902:14: error: ‘_mm512_fmadd_ph’ was not declared in this scope npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:902:14: note: suggested alternative: ‘_mm512_fmadd_ps’ npm ERR! ab_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(b_i16_vec), ab_vec); npm ERR! ^~~~~~~~~~~~~~~ npm ERR! _mm512_fmadd_ps npm ERR! ../simsimd/include/simsimd/spatial.h:903:5: error: ‘a2_vec’ was not declared in this scope npm ERR! a2_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(a_i16_vec), a2_vec); npm ERR! ^~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:903:5: note: suggested alternative: ‘iovec’ npm ERR! a2_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(a_i16_vec), _mm512_castsi512_ph(a_i16_vec), a2_vec); npm ERR! ^~~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/spatial.h:904:5: error: ‘b2_vec’ was not declared in this scope npm ERR! b2_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(b_i16_vec), _mm512_castsi512_ph(b_i16_vec), b2_vec); npm ERR! ^~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:904:5: note: suggested alternative: ‘iovec’ npm ERR! b2_vec = _mm512_fmadd_ph(_mm512_castsi512_ph(b_i16_vec), _mm512_castsi512_ph(b_i16_vec), b2_vec); npm ERR! ^~~~~~ npm ERR! iovec npm ERR! ../simsimd/include/simsimd/spatial.h:908:24: error: ‘_mm512_reduce_add_ph’ was not declared in this scope npm ERR! simsimd_f32_t ab = _mm512_reduce_add_ph(ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:908:24: note: suggested alternative: ‘_mm512_reduce_add_pd’ npm ERR! simsimd_f32_t ab = _mm512_reduce_add_ph(ab_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_reduce_add_pd npm ERR! ../simsimd/include/simsimd/spatial.h: At global scope: npm ERR! ../simsimd/include/simsimd/spatial.h:933:86: error: attribute(target("avx512vnni")) is unknown npm ERR! simsimd_avx512_i8_l2sq(simsimd_i8_t const* a, simsimd_i8_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! ../simsimd/include/simsimd/spatial.h: In function ‘simsimd_f32_t simsimd_avx512_i8_l2sq(const simsimd_i8_t*, const simsimd_i8_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/spatial.h:944:38: error: ‘_mm256_loadu_epi8’ was not declared in this scope npm ERR! a_vec = _mm512_cvtepi8_epi16(_mm256_loadu_epi8(a)); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:944:38: note: suggested alternative: ‘_mm256_add_epi8’ npm ERR! a_vec = _mm512_cvtepi8_epi16(_mm256_loadu_epi8(a)); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! _mm256_add_epi8 npm ERR! ../simsimd/include/simsimd/spatial.h:949:19: error: ‘_mm512_dpwssd_epi32’ was not declared in this scope npm ERR! d2_i32s_vec = _mm512_dpwssd_epi32(d2_i32s_vec, d_i16s_vec, d_i16s_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:949:19: note: suggested alternative: ‘_mm512_4dpwssd_epi32’ npm ERR! d2_i32s_vec = _mm512_dpwssd_epi32(d2_i32s_vec, d_i16s_vec, d_i16s_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_4dpwssd_epi32 npm ERR! ../simsimd/include/simsimd/spatial.h: At global scope: npm ERR! ../simsimd/include/simsimd/spatial.h:958:85: error: attribute(target("avx512vnni")) is unknown npm ERR! simsimd_avx512_i8_cos(simsimd_i8_t const* a, simsimd_i8_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! ../simsimd/include/simsimd/spatial.h: In function ‘simsimd_f32_t simsimd_avx512_i8_cos(const simsimd_i8_t*, const simsimd_i8_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/spatial.h:971:17: error: ‘_mm512_loadu_epi8’ was not declared in this scope npm ERR! a_vec = _mm512_loadu_epi8(a); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:971:17: note: suggested alternative: ‘_mm512_add_epi8’ npm ERR! a_vec = _mm512_loadu_epi8(a); npm ERR! ^~~~~~~~~~~~~~~~~ npm ERR! _mm512_add_epi8 npm ERR! ../simsimd/include/simsimd/spatial.h:975:19: error: ‘_mm512_dpbusd_epi32’ was not declared in this scope npm ERR! ab_i32s_vec = _mm512_dpbusd_epi32(ab_i32s_vec, a_vec, b_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! ../simsimd/include/simsimd/spatial.h:975:19: note: suggested alternative: ‘_mm512_4dpwssd_epi32’ npm ERR! ab_i32s_vec = _mm512_dpbusd_epi32(ab_i32s_vec, a_vec, b_vec); npm ERR! ^~~~~~~~~~~~~~~~~~~ npm ERR! _mm512_4dpwssd_epi32 npm ERR! ../simsimd/include/simsimd/spatial.h: At global scope: npm ERR! ../simsimd/include/simsimd/spatial.h:994:84: error: attribute(target("avx512vnni")) is unknown npm ERR! simsimd_avx512_i8_ip(simsimd_i8_t const* a, simsimd_i8_t const* b, simsimd_size_t n) { npm ERR! ^ npm ERR! In file included from ../include/usearch/index_plugins.hpp:51:0, npm ERR! from ../include/usearch/index_dense.hpp:10, npm ERR! from ../javascript/lib.cpp:18: npm ERR! ../simsimd/include/simsimd/simsimd.h:189:32: warning: unknown option after ‘#pragma GCC diagnostic’ kind [-Wpragmas] npm ERR! #pragma GCC diagnostic ignored "-Wcast-function-type" npm ERR! ^~~~~~~~~~~~~~~~~~~~~~ npm ERR! In file included from ../simsimd/include/simsimd/simsimd.h:17:0, npm ERR! from ../include/usearch/index_plugins.hpp:51, npm ERR! from ../include/usearch/index_dense.hpp:10, npm ERR! from ../javascript/lib.cpp:18: npm ERR! ../simsimd/include/simsimd/spatial.h: In function ‘simsimd_f32_t simsimd_avx512_i8_l2sq(const simsimd_i8_t*, const simsimd_i8_t*, simsimd_size_t)’: npm ERR! ../simsimd/include/simsimd/spatial.h:934:48: warning: AVX512F vector return without AVX512F enabled changes the ABI [-Wpsabi] npm ERR! __m512i d2_i32s_vec = _mm512_setzero_si512(); npm ERR! ^ npm ERR! ../simsimd/include/simsimd/spatial.h:940:37: warning: AVX vector return without AVX enabled changes the ABI [-Wpsabi] npm ERR! a_vec = _mm512_cvtepi8_epi16(_mm256_maskz_loadu_epi8(mask, a)); npm ERR! ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ npm ERR! make: *** [Release/obj.target/usearch/javascript/lib.o] Error 1 npm ERR! gyp ERR! build error npm ERR! gyp ERR! stack Error: `make` failed with exit code: 2 npm ERR! gyp ERR! stack at ChildProcess. (/var/lang/lib/node_modules/npm/node_modules/node-gyp/lib/build.js:209:23) npm ERR! gyp ERR! System Linux 6.4.16-linuxkit npm ERR! gyp ERR! command "/var/lang/bin/node" "/var/lang/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild" npm ERR! gyp ERR! cwd /var/task/node_modules/usearch npm ERR! gyp ERR! node -v v18.18.2 npm ERR! gyp ERR! node-gyp -v v10.0.1 npm ERR! gyp ERR! not ok npm ERR! A complete log of this run can be found in: /root/.npm/_logs/2023-11-09T01_47_02_858Z-debug-0.log removed 31 packages, and changed 65 packages in 6s 26 packages are looking for funding run `npm fund` for details Loaded plugins: ovl Resolving Dependencies --> Running transaction check ---> Package cmake.x86_64 0:2.8.12.2-2.amzn2.0.2 will be installed --> Processing Dependency: libarchive.so.13()(64bit) for package: cmake-2.8.12.2-2.amzn2.0.2.x86_64 ---> Package gcc-c++.x86_64 0:7.3.1-17.amzn2 will be installed --> Processing Dependency: gcc(x86-64) = 7.3.1-17.amzn2 for package: gcc-c++-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libmpc.so.3()(64bit) for package: gcc-c++-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libmpfr.so.4()(64bit) for package: gcc-c++-7.3.1-17.amzn2.x86_64 ---> Package git.x86_64 0:2.40.1-1.amzn2.0.1 will be installed --> Processing Dependency: git-core = 2.40.1-1.amzn2.0.1 for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: git-core-doc = 2.40.1-1.amzn2.0.1 for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl-Git = 2.40.1-1.amzn2.0.1 for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl >= 5.008 for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: /usr/bin/perl for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(File::Basename) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(File::Find) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(File::Spec) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(Getopt::Long) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(Git) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(IPC::Open2) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(Term::ReadKey) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(lib) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(strict) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(warnings) for package: git-2.40.1-1.amzn2.0.1.x86_64 ---> Package python3.x86_64 0:3.7.16-1.amzn2.0.4 will be installed --> Processing Dependency: python3-libs(x86-64) = 3.7.16-1.amzn2.0.4 for package: python3-3.7.16-1.amzn2.0.4.x86_64 --> Processing Dependency: python3-pip for package: python3-3.7.16-1.amzn2.0.4.x86_64 --> Processing Dependency: python3-setuptools for package: python3-3.7.16-1.amzn2.0.4.x86_64 --> Processing Dependency: libpython3.7m.so.1.0()(64bit) for package: python3-3.7.16-1.amzn2.0.4.x86_64 ---> Package tar.x86_64 2:1.26-35.amzn2.0.2 will be installed --> Running transaction check ---> Package gcc.x86_64 0:7.3.1-17.amzn2 will be installed --> Processing Dependency: cpp = 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libgomp = 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: binutils >= 2.24 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: glibc-devel >= 2.2.90-12 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libatomic >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libcilkrts >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libitm >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libmpx >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libquadmath >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libsanitizer >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libgomp.so.1()(64bit) for package: gcc-7.3.1-17.amzn2.x86_64 ---> Package git-core.x86_64 0:2.40.1-1.amzn2.0.1 will be installed --> Processing Dependency: less for package: git-core-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: openssh-clients for package: git-core-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: libpcre2-8.so.0()(64bit) for package: git-core-2.40.1-1.amzn2.0.1.x86_64 ---> Package git-core-doc.noarch 0:2.40.1-1.amzn2.0.1 will be installed ---> Package libarchive.x86_64 0:3.1.2-14.amzn2.0.1 will be installed --> Processing Dependency: liblzo2.so.2()(64bit) for package: libarchive-3.1.2-14.amzn2.0.1.x86_64 ---> Package libmpc.x86_64 0:1.0.1-3.amzn2.0.2 will be installed ---> Package mpfr.x86_64 0:3.1.1-4.amzn2.0.2 will be installed ---> Package perl.x86_64 4:5.16.3-299.amzn2.0.2 will be installed --> Processing Dependency: perl-libs = 4:5.16.3-299.amzn2.0.2 for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Scalar::Util) >= 1.10 for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Socket) >= 1.3 for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Carp) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Exporter) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(File::Path) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(File::Temp) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Filter::Util::Call) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Pod::Simple::Search) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Pod::Simple::XHTML) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Scalar::Util) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Socket) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Storable) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Time::HiRes) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Time::Local) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(constant) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(threads) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(threads::shared) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl-libs for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl-macros for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: libperl.so()(64bit) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 ---> Package perl-Getopt-Long.noarch 0:2.40-3.amzn2 will be installed --> Processing Dependency: perl(Pod::Usage) >= 1.14 for package: perl-Getopt-Long-2.40-3.amzn2.noarch --> Processing Dependency: perl(Text::ParseWords) for package: perl-Getopt-Long-2.40-3.amzn2.noarch ---> Package perl-Git.noarch 0:2.40.1-1.amzn2.0.1 will be installed --> Processing Dependency: perl(Error) for package: perl-Git-2.40.1-1.amzn2.0.1.noarch ---> Package perl-PathTools.x86_64 0:3.40-5.amzn2.0.2 will be installed ---> Package perl-TermReadKey.x86_64 0:2.30-20.amzn2.0.2 will be installed ---> Package python3-libs.x86_64 0:3.7.16-1.amzn2.0.4 will be installed --> Processing Dependency: libtirpc.so.1()(64bit) for package: python3-libs-3.7.16-1.amzn2.0.4.x86_64 ---> Package python3-pip.noarch 0:20.2.2-1.amzn2.0.4 will be installed ---> Package python3-setuptools.noarch 0:49.1.3-1.amzn2.0.3 will be installed --> Running transaction check ---> Package binutils.x86_64 0:2.29.1-31.amzn2 will be installed ---> Package cpp.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package glibc-devel.x86_64 0:2.26-63.amzn2.0.1 will be installed --> Processing Dependency: glibc-headers = 2.26-63.amzn2.0.1 for package: glibc-devel-2.26-63.amzn2.0.1.x86_64 --> Processing Dependency: glibc-headers for package: glibc-devel-2.26-63.amzn2.0.1.x86_64 ---> Package less.x86_64 0:458-9.amzn2.0.2 will be installed --> Processing Dependency: groff-base for package: less-458-9.amzn2.0.2.x86_64 ---> Package libatomic.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libcilkrts.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libgomp.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libitm.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libmpx.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libquadmath.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libsanitizer.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libtirpc.x86_64 0:0.2.4-0.16.amzn2 will be installed ---> Package lzo.x86_64 0:2.06-8.amzn2.0.4 will be installed ---> Package openssh-clients.x86_64 0:7.4p1-22.amzn2.0.5 will be installed --> Processing Dependency: openssh = 7.4p1-22.amzn2.0.5 for package: openssh-clients-7.4p1-22.amzn2.0.5.x86_64 --> Processing Dependency: fipscheck-lib(x86-64) >= 1.3.0 for package: openssh-clients-7.4p1-22.amzn2.0.5.x86_64 --> Processing Dependency: libedit.so.0()(64bit) for package: openssh-clients-7.4p1-22.amzn2.0.5.x86_64 --> Processing Dependency: libfipscheck.so.1()(64bit) for package: openssh-clients-7.4p1-22.amzn2.0.5.x86_64 ---> Package pcre2.x86_64 0:10.23-11.amzn2.0.1 will be installed ---> Package perl-Carp.noarch 0:1.26-244.amzn2 will be installed ---> Package perl-Error.noarch 1:0.17020-2.amzn2 will be installed ---> Package perl-Exporter.noarch 0:5.68-3.amzn2 will be installed ---> Package perl-File-Path.noarch 0:2.09-2.amzn2 will be installed ---> Package perl-File-Temp.noarch 0:0.23.01-3.amzn2 will be installed ---> Package perl-Filter.x86_64 0:1.49-3.amzn2.0.2 will be installed ---> Package perl-Pod-Simple.noarch 1:3.28-4.amzn2 will be installed --> Processing Dependency: perl(Pod::Escapes) >= 1.04 for package: 1:perl-Pod-Simple-3.28-4.amzn2.noarch --> Processing Dependency: perl(Encode) for package: 1:perl-Pod-Simple-3.28-4.amzn2.noarch ---> Package perl-Pod-Usage.noarch 0:1.63-3.amzn2 will be installed --> Processing Dependency: perl(Pod::Text) >= 3.15 for package: perl-Pod-Usage-1.63-3.amzn2.noarch --> Processing Dependency: perl-Pod-Perldoc for package: perl-Pod-Usage-1.63-3.amzn2.noarch ---> Package perl-Scalar-List-Utils.x86_64 0:1.27-248.amzn2.0.2 will be installed ---> Package perl-Socket.x86_64 0:2.010-4.amzn2.0.2 will be installed ---> Package perl-Storable.x86_64 0:2.45-3.amzn2.0.2 will be installed ---> Package perl-Text-ParseWords.noarch 0:3.29-4.amzn2 will be installed ---> Package perl-Time-HiRes.x86_64 4:1.9725-3.amzn2.0.2 will be installed ---> Package perl-Time-Local.noarch 0:1.2300-2.amzn2 will be installed ---> Package perl-constant.noarch 0:1.27-2.amzn2.0.1 will be installed ---> Package perl-libs.x86_64 4:5.16.3-299.amzn2.0.2 will be installed ---> Package perl-macros.x86_64 4:5.16.3-299.amzn2.0.2 will be installed ---> Package perl-threads.x86_64 0:1.87-4.amzn2.0.2 will be installed ---> Package perl-threads-shared.x86_64 0:1.43-6.amzn2.0.2 will be installed --> Running transaction check ---> Package fipscheck-lib.x86_64 0:1.4.1-6.amzn2.0.2 will be installed --> Processing Dependency: /usr/bin/fipscheck for package: fipscheck-lib-1.4.1-6.amzn2.0.2.x86_64 ---> Package glibc-headers.x86_64 0:2.26-63.amzn2.0.1 will be installed --> Processing Dependency: kernel-headers >= 2.2.1 for package: glibc-headers-2.26-63.amzn2.0.1.x86_64 --> Processing Dependency: kernel-headers for package: glibc-headers-2.26-63.amzn2.0.1.x86_64 ---> Package groff-base.x86_64 0:1.22.2-8.amzn2.0.2 will be installed ---> Package libedit.x86_64 0:3.0-12.20121213cvs.amzn2.0.2 will be installed ---> Package openssh.x86_64 0:7.4p1-22.amzn2.0.5 will be installed --> Processing Dependency: audit-libs >= 1.0.8 for package: openssh-7.4p1-22.amzn2.0.5.x86_64 --> Processing Dependency: /sbin/nologin for package: openssh-7.4p1-22.amzn2.0.5.x86_64 ---> Package perl-Encode.x86_64 0:2.51-7.amzn2.0.2 will be installed ---> Package perl-Pod-Escapes.noarch 1:1.04-299.amzn2.0.2 will be installed ---> Package perl-Pod-Perldoc.noarch 0:3.20-4.amzn2.0.1 will be installed --> Processing Dependency: perl(HTTP::Tiny) for package: perl-Pod-Perldoc-3.20-4.amzn2.0.1.noarch --> Processing Dependency: perl(parent) for package: perl-Pod-Perldoc-3.20-4.amzn2.0.1.noarch ---> Package perl-podlators.noarch 0:2.5.1-3.amzn2.0.1 will be installed --> Running transaction check ---> Package audit-libs.x86_64 0:2.8.1-3.amzn2.1 will be installed --> Processing Dependency: libcap-ng.so.0()(64bit) for package: audit-libs-2.8.1-3.amzn2.1.x86_64 ---> Package fipscheck.x86_64 0:1.4.1-6.amzn2.0.2 will be installed ---> Package kernel-headers.x86_64 0:4.14.327-246.539.amzn2 will be installed ---> Package perl-HTTP-Tiny.noarch 0:0.033-3.amzn2.0.1 will be installed ---> Package perl-parent.noarch 1:0.225-244.amzn2.0.1 will be installed ---> Package util-linux.x86_64 0:2.30.2-2.amzn2.0.11 will be installed --> Processing Dependency: libfdisk = 2.30.2-2.amzn2.0.11 for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols = 2.30.2-2.amzn2.0.11 for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: pam >= 1.1.3-7 for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: /etc/pam.d/system-auth for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1(FDISK_2.26)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1(FDISK_2.27)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1(FDISK_2.28)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1(FDISK_2.29)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1(FDISK_2.30)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libpam.so.0(LIBPAM_1.0)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libpam_misc.so.0(LIBPAM_MISC_1.0)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1(SMARTCOLS_2.25)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1(SMARTCOLS_2.27)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1(SMARTCOLS_2.28)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1(SMARTCOLS_2.29)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1(SMARTCOLS_2.30)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsystemd.so.0(LIBSYSTEMD_209)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libudev.so.1(LIBUDEV_183)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libutempter.so.0(UTEMPTER_1.1)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libpam.so.0()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libpam_misc.so.0()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsystemd.so.0()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libudev.so.1()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libutempter.so.0()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Running transaction check ---> Package libcap-ng.x86_64 0:0.7.5-4.amzn2.0.4 will be installed ---> Package libfdisk.x86_64 0:2.30.2-2.amzn2.0.11 will be installed ---> Package libsmartcols.x86_64 0:2.30.2-2.amzn2.0.11 will be installed ---> Package libutempter.x86_64 0:1.1.6-4.amzn2.0.2 will be installed --> Processing Dependency: shadow-utils for package: libutempter-1.1.6-4.amzn2.0.2.x86_64 ---> Package pam.x86_64 0:1.1.8-23.amzn2.0.1 will be installed --> Processing Dependency: cracklib-dicts >= 2.8 for package: pam-1.1.8-23.amzn2.0.1.x86_64 --> Processing Dependency: libpwquality >= 0.9.9 for package: pam-1.1.8-23.amzn2.0.1.x86_64 --> Processing Dependency: libcrack.so.2()(64bit) for package: pam-1.1.8-23.amzn2.0.1.x86_64 ---> Package systemd-libs.x86_64 0:219-78.amzn2.0.22 will be installed --> Processing Dependency: libdw.so.1()(64bit) for package: systemd-libs-219-78.amzn2.0.22.x86_64 --> Processing Dependency: liblz4.so.1()(64bit) for package: systemd-libs-219-78.amzn2.0.22.x86_64 --> Running transaction check ---> Package cracklib.x86_64 0:2.9.0-11.amzn2.0.2 will be installed --> Processing Dependency: gzip for package: cracklib-2.9.0-11.amzn2.0.2.x86_64 ---> Package cracklib-dicts.x86_64 0:2.9.0-11.amzn2.0.2 will be installed ---> Package elfutils-libs.x86_64 0:0.176-2.amzn2.0.2 will be installed --> Processing Dependency: default-yama-scope for package: elfutils-libs-0.176-2.amzn2.0.2.x86_64 ---> Package libpwquality.x86_64 0:1.2.3-5.amzn2 will be installed ---> Package lz4.x86_64 0:1.7.5-2.amzn2.0.1 will be installed ---> Package shadow-utils.x86_64 2:4.1.5.1-24.amzn2.0.3 will be installed --> Processing Dependency: libsemanage.so.1(LIBSEMANAGE_1.0)(64bit) for package: 2:shadow-utils-4.1.5.1-24.amzn2.0.3.x86_64 --> Processing Dependency: libsemanage.so.1()(64bit) for package: 2:shadow-utils-4.1.5.1-24.amzn2.0.3.x86_64 --> Running transaction check ---> Package elfutils-default-yama-scope.noarch 0:0.176-2.amzn2.0.2 will be installed --> Processing Dependency: systemd for package: elfutils-default-yama-scope-0.176-2.amzn2.0.2.noarch --> Processing Dependency: systemd for package: elfutils-default-yama-scope-0.176-2.amzn2.0.2.noarch ---> Package gzip.x86_64 0:1.5-10.amzn2.0.1 will be installed ---> Package libsemanage.x86_64 0:2.5-11.amzn2 will be installed --> Processing Dependency: libustr-1.0.so.1(USTR_1.0)(64bit) for package: libsemanage-2.5-11.amzn2.x86_64 --> Processing Dependency: libustr-1.0.so.1(USTR_1.0.1)(64bit) for package: libsemanage-2.5-11.amzn2.x86_64 --> Processing Dependency: libustr-1.0.so.1()(64bit) for package: libsemanage-2.5-11.amzn2.x86_64 --> Running transaction check ---> Package systemd.x86_64 0:219-78.amzn2.0.22 will be installed --> Processing Dependency: kmod >= 18-4 for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: acl for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: dbus for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: libcryptsetup.so.4(CRYPTSETUP_1.0)(64bit) for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: libkmod.so.2(LIBKMOD_5)(64bit) for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: libcryptsetup.so.4()(64bit) for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: libkmod.so.2()(64bit) for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: libqrencode.so.3()(64bit) for package: systemd-219-78.amzn2.0.22.x86_64 ---> Package ustr.x86_64 0:1.0.4-16.amzn2.0.3 will be installed --> Running transaction check ---> Package acl.x86_64 0:2.2.51-14.amzn2 will be installed ---> Package cryptsetup-libs.x86_64 0:1.7.4-4.amzn2 will be installed --> Processing Dependency: libdevmapper.so.1.02(Base)(64bit) for package: cryptsetup-libs-1.7.4-4.amzn2.x86_64 --> Processing Dependency: libdevmapper.so.1.02(DM_1_02_97)(64bit) for package: cryptsetup-libs-1.7.4-4.amzn2.x86_64 --> Processing Dependency: libdevmapper.so.1.02()(64bit) for package: cryptsetup-libs-1.7.4-4.amzn2.x86_64 ---> Package dbus.x86_64 1:1.10.24-7.amzn2.0.3 will be installed --> Processing Dependency: dbus-libs(x86-64) = 1:1.10.24-7.amzn2.0.3 for package: 1:dbus-1.10.24-7.amzn2.0.3.x86_64 --> Processing Dependency: libdbus-1.so.3(LIBDBUS_1_3)(64bit) for package: 1:dbus-1.10.24-7.amzn2.0.3.x86_64 --> Processing Dependency: libdbus-1.so.3(LIBDBUS_PRIVATE_1.10.24)(64bit) for package: 1:dbus-1.10.24-7.amzn2.0.3.x86_64 --> Processing Dependency: libdbus-1.so.3()(64bit) for package: 1:dbus-1.10.24-7.amzn2.0.3.x86_64 ---> Package kmod.x86_64 0:25-3.amzn2.0.2 will be installed ---> Package kmod-libs.x86_64 0:25-3.amzn2.0.2 will be installed ---> Package qrencode-libs.x86_64 0:3.4.1-3.amzn2.0.2 will be installed --> Running transaction check ---> Package dbus-libs.x86_64 1:1.10.24-7.amzn2.0.3 will be installed ---> Package device-mapper-libs.x86_64 7:1.02.170-6.amzn2.5 will be installed --> Processing Dependency: device-mapper = 7:1.02.170-6.amzn2.5 for package: 7:device-mapper-libs-1.02.170-6.amzn2.5.x86_64 --> Running transaction check ---> Package device-mapper.x86_64 7:1.02.170-6.amzn2.5 will be installed --> Finished Dependency Resolution Dependencies Resolved ================================================================================ Package Arch Version Repository Size ================================================================================ Installing: cmake x86_64 2.8.12.2-2.amzn2.0.2 amzn2-core 6.9 M gcc-c++ x86_64 7.3.1-17.amzn2 amzn2-core 13 M git x86_64 2.40.1-1.amzn2.0.1 amzn2-core 54 k python3 x86_64 3.7.16-1.amzn2.0.4 amzn2-core 72 k tar x86_64 2:1.26-35.amzn2.0.2 amzn2-core 845 k Installing for dependencies: acl x86_64 2.2.51-14.amzn2 amzn2-core 82 k audit-libs x86_64 2.8.1-3.amzn2.1 amzn2-core 99 k binutils x86_64 2.29.1-31.amzn2 amzn2-core 5.8 M cpp x86_64 7.3.1-17.amzn2 amzn2-core 9.2 M cracklib x86_64 2.9.0-11.amzn2.0.2 amzn2-core 80 k cracklib-dicts x86_64 2.9.0-11.amzn2.0.2 amzn2-core 3.6 M cryptsetup-libs x86_64 1.7.4-4.amzn2 amzn2-core 224 k dbus x86_64 1:1.10.24-7.amzn2.0.3 amzn2-core 245 k dbus-libs x86_64 1:1.10.24-7.amzn2.0.3 amzn2-core 167 k device-mapper x86_64 7:1.02.170-6.amzn2.5 amzn2-core 297 k device-mapper-libs x86_64 7:1.02.170-6.amzn2.5 amzn2-core 326 k elfutils-default-yama-scope noarch 0.176-2.amzn2.0.2 amzn2-core 33 k elfutils-libs x86_64 0.176-2.amzn2.0.2 amzn2-core 289 k fipscheck x86_64 1.4.1-6.amzn2.0.2 amzn2-core 21 k fipscheck-lib x86_64 1.4.1-6.amzn2.0.2 amzn2-core 11 k gcc x86_64 7.3.1-17.amzn2 amzn2-core 22 M git-core x86_64 2.40.1-1.amzn2.0.1 amzn2-core 10 M git-core-doc noarch 2.40.1-1.amzn2.0.1 amzn2-core 3.0 M glibc-devel x86_64 2.26-63.amzn2.0.1 amzn2-core 995 k glibc-headers x86_64 2.26-63.amzn2.0.1 amzn2-core 516 k groff-base x86_64 1.22.2-8.amzn2.0.2 amzn2-core 948 k gzip x86_64 1.5-10.amzn2.0.1 amzn2-core 129 k kernel-headers x86_64 4.14.327-246.539.amzn2 amzn2-core 1.2 M kmod x86_64 25-3.amzn2.0.2 amzn2-core 111 k kmod-libs x86_64 25-3.amzn2.0.2 amzn2-core 59 k less x86_64 458-9.amzn2.0.2 amzn2-core 121 k libarchive x86_64 3.1.2-14.amzn2.0.1 amzn2-core 312 k libatomic x86_64 7.3.1-17.amzn2 amzn2-core 46 k libcap-ng x86_64 0.7.5-4.amzn2.0.4 amzn2-core 25 k libcilkrts x86_64 7.3.1-17.amzn2 amzn2-core 85 k libedit x86_64 3.0-12.20121213cvs.amzn2.0.2 amzn2-core 93 k libfdisk x86_64 2.30.2-2.amzn2.0.11 amzn2-core 238 k libgomp x86_64 7.3.1-17.amzn2 amzn2-core 205 k libitm x86_64 7.3.1-17.amzn2 amzn2-core 85 k libmpc x86_64 1.0.1-3.amzn2.0.2 amzn2-core 52 k libmpx x86_64 7.3.1-17.amzn2 amzn2-core 52 k libpwquality x86_64 1.2.3-5.amzn2 amzn2-core 84 k libquadmath x86_64 7.3.1-17.amzn2 amzn2-core 189 k libsanitizer x86_64 7.3.1-17.amzn2 amzn2-core 642 k libsemanage x86_64 2.5-11.amzn2 amzn2-core 152 k libsmartcols x86_64 2.30.2-2.amzn2.0.11 amzn2-core 155 k libtirpc x86_64 0.2.4-0.16.amzn2 amzn2-core 88 k libutempter x86_64 1.1.6-4.amzn2.0.2 amzn2-core 25 k lz4 x86_64 1.7.5-2.amzn2.0.1 amzn2-core 99 k lzo x86_64 2.06-8.amzn2.0.4 amzn2-core 60 k mpfr x86_64 3.1.1-4.amzn2.0.2 amzn2-core 208 k openssh x86_64 7.4p1-22.amzn2.0.5 amzn2-core 508 k openssh-clients x86_64 7.4p1-22.amzn2.0.5 amzn2-core 652 k pam x86_64 1.1.8-23.amzn2.0.1 amzn2-core 715 k pcre2 x86_64 10.23-11.amzn2.0.1 amzn2-core 207 k perl x86_64 4:5.16.3-299.amzn2.0.2 amzn2-core 8.0 M perl-Carp noarch 1.26-244.amzn2 amzn2-core 19 k perl-Encode x86_64 2.51-7.amzn2.0.2 amzn2-core 1.5 M perl-Error noarch 1:0.17020-2.amzn2 amzn2-core 32 k perl-Exporter noarch 5.68-3.amzn2 amzn2-core 29 k perl-File-Path noarch 2.09-2.amzn2 amzn2-core 27 k perl-File-Temp noarch 0.23.01-3.amzn2 amzn2-core 56 k perl-Filter x86_64 1.49-3.amzn2.0.2 amzn2-core 76 k perl-Getopt-Long noarch 2.40-3.amzn2 amzn2-core 56 k perl-Git noarch 2.40.1-1.amzn2.0.1 amzn2-core 41 k perl-HTTP-Tiny noarch 0.033-3.amzn2.0.1 amzn2-core 39 k perl-PathTools x86_64 3.40-5.amzn2.0.2 amzn2-core 83 k perl-Pod-Escapes noarch 1:1.04-299.amzn2.0.2 amzn2-core 52 k perl-Pod-Perldoc noarch 3.20-4.amzn2.0.1 amzn2-core 87 k perl-Pod-Simple noarch 1:3.28-4.amzn2 amzn2-core 216 k perl-Pod-Usage noarch 1.63-3.amzn2 amzn2-core 27 k perl-Scalar-List-Utils x86_64 1.27-248.amzn2.0.2 amzn2-core 36 k perl-Socket x86_64 2.010-4.amzn2.0.2 amzn2-core 49 k perl-Storable x86_64 2.45-3.amzn2.0.2 amzn2-core 78 k perl-TermReadKey x86_64 2.30-20.amzn2.0.2 amzn2-core 31 k perl-Text-ParseWords noarch 3.29-4.amzn2 amzn2-core 14 k perl-Time-HiRes x86_64 4:1.9725-3.amzn2.0.2 amzn2-core 45 k perl-Time-Local noarch 1.2300-2.amzn2 amzn2-core 24 k perl-constant noarch 1.27-2.amzn2.0.1 amzn2-core 19 k perl-libs x86_64 4:5.16.3-299.amzn2.0.2 amzn2-core 685 k perl-macros x86_64 4:5.16.3-299.amzn2.0.2 amzn2-core 45 k perl-parent noarch 1:0.225-244.amzn2.0.1 amzn2-core 12 k perl-podlators noarch 2.5.1-3.amzn2.0.1 amzn2-core 112 k perl-threads x86_64 1.87-4.amzn2.0.2 amzn2-core 50 k perl-threads-shared x86_64 1.43-6.amzn2.0.2 amzn2-core 39 k python3-libs x86_64 3.7.16-1.amzn2.0.4 amzn2-core 9.8 M python3-pip noarch 20.2.2-1.amzn2.0.4 amzn2-core 2.0 M python3-setuptools noarch 49.1.3-1.amzn2.0.3 amzn2-core 1.1 M qrencode-libs x86_64 3.4.1-3.amzn2.0.2 amzn2-core 50 k shadow-utils x86_64 2:4.1.5.1-24.amzn2.0.3 amzn2-core 1.1 M systemd x86_64 219-78.amzn2.0.22 amzn2-core 5.0 M systemd-libs x86_64 219-78.amzn2.0.22 amzn2-core 409 k ustr x86_64 1.0.4-16.amzn2.0.3 amzn2-core 96 k util-linux x86_64 2.30.2-2.amzn2.0.11 amzn2-core 2.3 M Transaction Summary ================================================================================ Install 5 Packages (+89 Dependent packages) Total download size: 118 M Installed size: 387 M Downloading packages: -------------------------------------------------------------------------------- Total 15 MB/s | 118 MB 00:08 Running transaction check Running transaction test Transaction test succeeded Running transaction Installing : mpfr-3.1.1-4.amzn2.0.2.x86_64 1/94 Installing : libmpc-1.0.1-3.amzn2.0.2.x86_64 2/94 Installing : libcap-ng-0.7.5-4.amzn2.0.4.x86_64 3/94 Installing : audit-libs-2.8.1-3.amzn2.1.x86_64 4/94 Installing : groff-base-1.22.2-8.amzn2.0.2.x86_64 5/94 Installing : lz4-1.7.5-2.amzn2.0.1.x86_64 6/94 Installing : 1:perl-parent-0.225-244.amzn2.0.1.noarch 7/94 Installing : perl-HTTP-Tiny-0.033-3.amzn2.0.1.noarch 8/94 Installing : perl-Pod-Perldoc-3.20-4.amzn2.0.1.noarch 9/94 Installing : perl-podlators-2.5.1-3.amzn2.0.1.noarch 10/94 Installing : perl-Text-ParseWords-3.29-4.amzn2.noarch 11/94 Installing : perl-Encode-2.51-7.amzn2.0.2.x86_64 12/94 Installing : perl-Pod-Usage-1.63-3.amzn2.noarch 13/94 Installing : 1:perl-Pod-Escapes-1.04-299.amzn2.0.2.noarch 14/94 Installing : 4:perl-libs-5.16.3-299.amzn2.0.2.x86_64 15/94 Installing : perl-Filter-1.49-3.amzn2.0.2.x86_64 16/94 Installing : perl-Storable-2.45-3.amzn2.0.2.x86_64 17/94 Installing : perl-Carp-1.26-244.amzn2.noarch 18/94 Installing : perl-File-Path-2.09-2.amzn2.noarch 19/94 Installing : perl-PathTools-3.40-5.amzn2.0.2.x86_64 20/94 Installing : perl-Scalar-List-Utils-1.27-248.amzn2.0.2.x86_64 21/94 Installing : perl-Exporter-5.68-3.amzn2.noarch 22/94 Installing : perl-Time-Local-1.2300-2.amzn2.noarch 23/94 Installing : perl-File-Temp-0.23.01-3.amzn2.noarch 24/94 Installing : perl-constant-1.27-2.amzn2.0.1.noarch 25/94 Installing : perl-threads-shared-1.43-6.amzn2.0.2.x86_64 26/94 Installing : perl-threads-1.87-4.amzn2.0.2.x86_64 27/94 Installing : 4:perl-Time-HiRes-1.9725-3.amzn2.0.2.x86_64 28/94 Installing : perl-Socket-2.010-4.amzn2.0.2.x86_64 29/94 Installing : 4:perl-macros-5.16.3-299.amzn2.0.2.x86_64 30/94 Installing : perl-Getopt-Long-2.40-3.amzn2.noarch 31/94 Installing : 1:perl-Pod-Simple-3.28-4.amzn2.noarch 32/94 Installing : 4:perl-5.16.3-299.amzn2.0.2.x86_64 33/94 Installing : perl-TermReadKey-2.30-20.amzn2.0.2.x86_64 34/94 Installing : 1:perl-Error-0.17020-2.amzn2.noarch 35/94 Installing : less-458-9.amzn2.0.2.x86_64 36/94 Installing : cpp-7.3.1-17.amzn2.x86_64 37/94 Installing : fipscheck-lib-1.4.1-6.amzn2.0.2.x86_64 38/94 Installing : fipscheck-1.4.1-6.amzn2.0.2.x86_64 39/94 Installing : libatomic-7.3.1-17.amzn2.x86_64 40/94 Installing : libgomp-7.3.1-17.amzn2.x86_64 41/94 Installing : kmod-libs-25-3.amzn2.0.2.x86_64 42/94 Installing : libsanitizer-7.3.1-17.amzn2.x86_64 43/94 Installing : gzip-1.5-10.amzn2.0.1.x86_64 44/94 Installing : cracklib-2.9.0-11.amzn2.0.2.x86_64 45/94 Installing : cracklib-dicts-2.9.0-11.amzn2.0.2.x86_64 46/94 Installing : libpwquality-1.2.3-5.amzn2.x86_64 47/94 Installing : pam-1.1.8-23.amzn2.0.1.x86_64 48/94 Installing : libmpx-7.3.1-17.amzn2.x86_64 49/94 Installing : ustr-1.0.4-16.amzn2.0.3.x86_64 50/94 Installing : libsemanage-2.5-11.amzn2.x86_64 51/94 Installing : 2:shadow-utils-4.1.5.1-24.amzn2.0.3.x86_64 52/94 Installing : libutempter-1.1.6-4.amzn2.0.2.x86_64 53/94 Installing : lzo-2.06-8.amzn2.0.4.x86_64 54/94 Installing : libarchive-3.1.2-14.amzn2.0.1.x86_64 55/94 Installing : libcilkrts-7.3.1-17.amzn2.x86_64 56/94 Installing : acl-2.2.51-14.amzn2.x86_64 57/94 Installing : pcre2-10.23-11.amzn2.0.1.x86_64 58/94 Installing : libsmartcols-2.30.2-2.amzn2.0.11.x86_64 59/94 Installing : binutils-2.29.1-31.amzn2.x86_64 60/94 Installing : kernel-headers-4.14.327-246.539.amzn2.x86_64 61/94 Installing : glibc-headers-2.26-63.amzn2.0.1.x86_64 62/94 Installing : glibc-devel-2.26-63.amzn2.0.1.x86_64 63/94 Installing : kmod-25-3.amzn2.0.2.x86_64 64/94 Installing : libfdisk-2.30.2-2.amzn2.0.11.x86_64 65/94 Installing : libtirpc-0.2.4-0.16.amzn2.x86_64 66/94 Installing : python3-setuptools-49.1.3-1.amzn2.0.3.noarch 67/94 Installing : python3-libs-3.7.16-1.amzn2.0.4.x86_64 68/94 Installing : python3-3.7.16-1.amzn2.0.4.x86_64 69/94 Installing : python3-pip-20.2.2-1.amzn2.0.4.noarch 70/94 Installing : qrencode-libs-3.4.1-3.amzn2.0.2.x86_64 71/94 Installing : util-linux-2.30.2-2.amzn2.0.11.x86_64 72/94 Installing : 7:device-mapper-1.02.170-6.amzn2.5.x86_64 73/94 Installing : 7:device-mapper-libs-1.02.170-6.amzn2.5.x86_64 74/94 Installing : cryptsetup-libs-1.7.4-4.amzn2.x86_64 75/94 Installing : elfutils-libs-0.176-2.amzn2.0.2.x86_64 76/94 Installing : systemd-libs-219-78.amzn2.0.22.x86_64 77/94 Installing : 1:dbus-libs-1.10.24-7.amzn2.0.3.x86_64 78/94 Installing : systemd-219-78.amzn2.0.22.x86_64 79/94 Failed to get D-Bus connection: Operation not permitted Installing : 1:dbus-1.10.24-7.amzn2.0.3.x86_64 80/94 Installing : elfutils-default-yama-scope-0.176-2.amzn2.0.2.noarch 81/94 Installing : openssh-7.4p1-22.amzn2.0.5.x86_64 82/94 Installing : libquadmath-7.3.1-17.amzn2.x86_64 83/94 Installing : libedit-3.0-12.20121213cvs.amzn2.0.2.x86_64 84/94 Installing : openssh-clients-7.4p1-22.amzn2.0.5.x86_64 85/94 Installing : git-core-2.40.1-1.amzn2.0.1.x86_64 86/94 Installing : git-core-doc-2.40.1-1.amzn2.0.1.noarch 87/94 Installing : git-2.40.1-1.amzn2.0.1.x86_64 88/94 Installing : perl-Git-2.40.1-1.amzn2.0.1.noarch 89/94 Installing : libitm-7.3.1-17.amzn2.x86_64 90/94 Installing : gcc-7.3.1-17.amzn2.x86_64 91/94 Installing : gcc-c++-7.3.1-17.amzn2.x86_64 92/94 Installing : cmake-2.8.12.2-2.amzn2.0.2.x86_64 93/94 Installing : 2:tar-1.26-35.amzn2.0.2.x86_64 94/94 Verifying : python3-pip-20.2.2-1.amzn2.0.4.noarch 1/94 Verifying : libitm-7.3.1-17.amzn2.x86_64 2/94 Verifying : 1:perl-Pod-Escapes-1.04-299.amzn2.0.2.noarch 3/94 Verifying : git-core-2.40.1-1.amzn2.0.1.x86_64 4/94 Verifying : python3-setuptools-49.1.3-1.amzn2.0.3.noarch 5/94 Verifying : libmpc-1.0.1-3.amzn2.0.2.x86_64 6/94 Verifying : git-2.40.1-1.amzn2.0.1.x86_64 7/94 Verifying : cryptsetup-libs-1.7.4-4.amzn2.x86_64 8/94 Verifying : libedit-3.0-12.20121213cvs.amzn2.0.2.x86_64 9/94 Verifying : libutempter-1.1.6-4.amzn2.0.2.x86_64 10/94 Verifying : lz4-1.7.5-2.amzn2.0.1.x86_64 11/94 Verifying : libquadmath-7.3.1-17.amzn2.x86_64 12/94 Verifying : qrencode-libs-3.4.1-3.amzn2.0.2.x86_64 13/94 Verifying : perl-Filter-1.49-3.amzn2.0.2.x86_64 14/94 Verifying : 1:perl-Pod-Simple-3.28-4.amzn2.noarch 15/94 Verifying : libtirpc-0.2.4-0.16.amzn2.x86_64 16/94 Verifying : libfdisk-2.30.2-2.amzn2.0.11.x86_64 17/94 Verifying : perl-PathTools-3.40-5.amzn2.0.2.x86_64 18/94 Verifying : libcap-ng-0.7.5-4.amzn2.0.4.x86_64 19/94 Verifying : python3-libs-3.7.16-1.amzn2.0.4.x86_64 20/94 Verifying : gcc-c++-7.3.1-17.amzn2.x86_64 21/94 Verifying : perl-Storable-2.45-3.amzn2.0.2.x86_64 22/94 Verifying : python3-3.7.16-1.amzn2.0.4.x86_64 23/94 Verifying : kmod-25-3.amzn2.0.2.x86_64 24/94 Verifying : kernel-headers-4.14.327-246.539.amzn2.x86_64 25/94 Verifying : cmake-2.8.12.2-2.amzn2.0.2.x86_64 26/94 Verifying : 4:perl-libs-5.16.3-299.amzn2.0.2.x86_64 27/94 Verifying : perl-Getopt-Long-2.40-3.amzn2.noarch 28/94 Verifying : perl-Time-Local-1.2300-2.amzn2.noarch 29/94 Verifying : 1:dbus-1.10.24-7.amzn2.0.3.x86_64 30/94 Verifying : 2:shadow-utils-4.1.5.1-24.amzn2.0.3.x86_64 31/94 Verifying : binutils-2.29.1-31.amzn2.x86_64 32/94 Verifying : libsmartcols-2.30.2-2.amzn2.0.11.x86_64 33/94 Verifying : fipscheck-1.4.1-6.amzn2.0.2.x86_64 34/94 Verifying : pcre2-10.23-11.amzn2.0.1.x86_64 35/94 Verifying : libpwquality-1.2.3-5.amzn2.x86_64 36/94 Verifying : 7:device-mapper-libs-1.02.170-6.amzn2.5.x86_64 37/94 Verifying : cracklib-dicts-2.9.0-11.amzn2.0.2.x86_64 38/94 Verifying : perl-TermReadKey-2.30-20.amzn2.0.2.x86_64 39/94 Verifying : audit-libs-2.8.1-3.amzn2.1.x86_64 40/94 Verifying : perl-Pod-Perldoc-3.20-4.amzn2.0.1.noarch 41/94 Verifying : perl-Git-2.40.1-1.amzn2.0.1.noarch 42/94 Verifying : acl-2.2.51-14.amzn2.x86_64 43/94 Verifying : libsemanage-2.5-11.amzn2.x86_64 44/94 Verifying : 2:tar-1.26-35.amzn2.0.2.x86_64 45/94 Verifying : elfutils-libs-0.176-2.amzn2.0.2.x86_64 46/94 Verifying : openssh-7.4p1-22.amzn2.0.5.x86_64 47/94 Verifying : systemd-libs-219-78.amzn2.0.22.x86_64 48/94 Verifying : perl-File-Path-2.09-2.amzn2.noarch 49/94 Verifying : libcilkrts-7.3.1-17.amzn2.x86_64 50/94 Verifying : fipscheck-lib-1.4.1-6.amzn2.0.2.x86_64 51/94 Verifying : systemd-219-78.amzn2.0.22.x86_64 52/94 Verifying : lzo-2.06-8.amzn2.0.4.x86_64 53/94 Verifying : glibc-devel-2.26-63.amzn2.0.1.x86_64 54/94 Verifying : git-core-doc-2.40.1-1.amzn2.0.1.noarch 55/94 Verifying : 4:perl-5.16.3-299.amzn2.0.2.x86_64 56/94 Verifying : 1:dbus-libs-1.10.24-7.amzn2.0.3.x86_64 57/94 Verifying : perl-Carp-1.26-244.amzn2.noarch 58/94 Verifying : elfutils-default-yama-scope-0.176-2.amzn2.0.2.noarch 59/94 Verifying : perl-Scalar-List-Utils-1.27-248.amzn2.0.2.x86_64 60/94 Verifying : cpp-7.3.1-17.amzn2.x86_64 61/94 Verifying : mpfr-3.1.1-4.amzn2.0.2.x86_64 62/94 Verifying : util-linux-2.30.2-2.amzn2.0.11.x86_64 63/94 Verifying : pam-1.1.8-23.amzn2.0.1.x86_64 64/94 Verifying : perl-HTTP-Tiny-0.033-3.amzn2.0.1.noarch 65/94 Verifying : ustr-1.0.4-16.amzn2.0.3.x86_64 66/94 Verifying : less-458-9.amzn2.0.2.x86_64 67/94 Verifying : 1:perl-Error-0.17020-2.amzn2.noarch 68/94 Verifying : perl-Pod-Usage-1.63-3.amzn2.noarch 69/94 Verifying : gcc-7.3.1-17.amzn2.x86_64 70/94 Verifying : 1:perl-parent-0.225-244.amzn2.0.1.noarch 71/94 Verifying : perl-File-Temp-0.23.01-3.amzn2.noarch 72/94 Verifying : libmpx-7.3.1-17.amzn2.x86_64 73/94 Verifying : openssh-clients-7.4p1-22.amzn2.0.5.x86_64 74/94 Verifying : libarchive-3.1.2-14.amzn2.0.1.x86_64 75/94 Verifying : perl-Exporter-5.68-3.amzn2.noarch 76/94 Verifying : cracklib-2.9.0-11.amzn2.0.2.x86_64 77/94 Verifying : perl-Encode-2.51-7.amzn2.0.2.x86_64 78/94 Verifying : 7:device-mapper-1.02.170-6.amzn2.5.x86_64 79/94 Verifying : perl-threads-shared-1.43-6.amzn2.0.2.x86_64 80/94 Verifying : gzip-1.5-10.amzn2.0.1.x86_64 81/94 Verifying : libsanitizer-7.3.1-17.amzn2.x86_64 82/94 Verifying : perl-constant-1.27-2.amzn2.0.1.noarch 83/94 Verifying : kmod-libs-25-3.amzn2.0.2.x86_64 84/94 Verifying : glibc-headers-2.26-63.amzn2.0.1.x86_64 85/94 Verifying : libgomp-7.3.1-17.amzn2.x86_64 86/94 Verifying : perl-threads-1.87-4.amzn2.0.2.x86_64 87/94 Verifying : perl-podlators-2.5.1-3.amzn2.0.1.noarch 88/94 Verifying : libatomic-7.3.1-17.amzn2.x86_64 89/94 Verifying : 4:perl-Time-HiRes-1.9725-3.amzn2.0.2.x86_64 90/94 Verifying : perl-Socket-2.010-4.amzn2.0.2.x86_64 91/94 Verifying : 4:perl-macros-5.16.3-299.amzn2.0.2.x86_64 92/94 Verifying : groff-base-1.22.2-8.amzn2.0.2.x86_64 93/94 Verifying : perl-Text-ParseWords-3.29-4.amzn2.noarch 94/94 Installed: cmake.x86_64 0:2.8.12.2-2.amzn2.0.2 gcc-c++.x86_64 0:7.3.1-17.amzn2 git.x86_64 0:2.40.1-1.amzn2.0.1 python3.x86_64 0:3.7.16-1.amzn2.0.4 tar.x86_64 2:1.26-35.amzn2.0.2 Dependency Installed: acl.x86_64 0:2.2.51-14.amzn2 audit-libs.x86_64 0:2.8.1-3.amzn2.1 binutils.x86_64 0:2.29.1-31.amzn2 cpp.x86_64 0:7.3.1-17.amzn2 cracklib.x86_64 0:2.9.0-11.amzn2.0.2 cracklib-dicts.x86_64 0:2.9.0-11.amzn2.0.2 cryptsetup-libs.x86_64 0:1.7.4-4.amzn2 dbus.x86_64 1:1.10.24-7.amzn2.0.3 dbus-libs.x86_64 1:1.10.24-7.amzn2.0.3 device-mapper.x86_64 7:1.02.170-6.amzn2.5 device-mapper-libs.x86_64 7:1.02.170-6.amzn2.5 elfutils-default-yama-scope.noarch 0:0.176-2.amzn2.0.2 elfutils-libs.x86_64 0:0.176-2.amzn2.0.2 fipscheck.x86_64 0:1.4.1-6.amzn2.0.2 fipscheck-lib.x86_64 0:1.4.1-6.amzn2.0.2 gcc.x86_64 0:7.3.1-17.amzn2 git-core.x86_64 0:2.40.1-1.amzn2.0.1 git-core-doc.noarch 0:2.40.1-1.amzn2.0.1 glibc-devel.x86_64 0:2.26-63.amzn2.0.1 glibc-headers.x86_64 0:2.26-63.amzn2.0.1 groff-base.x86_64 0:1.22.2-8.amzn2.0.2 gzip.x86_64 0:1.5-10.amzn2.0.1 kernel-headers.x86_64 0:4.14.327-246.539.amzn2 kmod.x86_64 0:25-3.amzn2.0.2 kmod-libs.x86_64 0:25-3.amzn2.0.2 less.x86_64 0:458-9.amzn2.0.2 libarchive.x86_64 0:3.1.2-14.amzn2.0.1 libatomic.x86_64 0:7.3.1-17.amzn2 libcap-ng.x86_64 0:0.7.5-4.amzn2.0.4 libcilkrts.x86_64 0:7.3.1-17.amzn2 libedit.x86_64 0:3.0-12.20121213cvs.amzn2.0.2 libfdisk.x86_64 0:2.30.2-2.amzn2.0.11 libgomp.x86_64 0:7.3.1-17.amzn2 libitm.x86_64 0:7.3.1-17.amzn2 libmpc.x86_64 0:1.0.1-3.amzn2.0.2 libmpx.x86_64 0:7.3.1-17.amzn2 libpwquality.x86_64 0:1.2.3-5.amzn2 libquadmath.x86_64 0:7.3.1-17.amzn2 libsanitizer.x86_64 0:7.3.1-17.amzn2 libsemanage.x86_64 0:2.5-11.amzn2 libsmartcols.x86_64 0:2.30.2-2.amzn2.0.11 libtirpc.x86_64 0:0.2.4-0.16.amzn2 libutempter.x86_64 0:1.1.6-4.amzn2.0.2 lz4.x86_64 0:1.7.5-2.amzn2.0.1 lzo.x86_64 0:2.06-8.amzn2.0.4 mpfr.x86_64 0:3.1.1-4.amzn2.0.2 openssh.x86_64 0:7.4p1-22.amzn2.0.5 openssh-clients.x86_64 0:7.4p1-22.amzn2.0.5 pam.x86_64 0:1.1.8-23.amzn2.0.1 pcre2.x86_64 0:10.23-11.amzn2.0.1 perl.x86_64 4:5.16.3-299.amzn2.0.2 perl-Carp.noarch 0:1.26-244.amzn2 perl-Encode.x86_64 0:2.51-7.amzn2.0.2 perl-Error.noarch 1:0.17020-2.amzn2 perl-Exporter.noarch 0:5.68-3.amzn2 perl-File-Path.noarch 0:2.09-2.amzn2 perl-File-Temp.noarch 0:0.23.01-3.amzn2 perl-Filter.x86_64 0:1.49-3.amzn2.0.2 perl-Getopt-Long.noarch 0:2.40-3.amzn2 perl-Git.noarch 0:2.40.1-1.amzn2.0.1 perl-HTTP-Tiny.noarch 0:0.033-3.amzn2.0.1 perl-PathTools.x86_64 0:3.40-5.amzn2.0.2 perl-Pod-Escapes.noarch 1:1.04-299.amzn2.0.2 perl-Pod-Perldoc.noarch 0:3.20-4.amzn2.0.1 perl-Pod-Simple.noarch 1:3.28-4.amzn2 perl-Pod-Usage.noarch 0:1.63-3.amzn2 perl-Scalar-List-Utils.x86_64 0:1.27-248.amzn2.0.2 perl-Socket.x86_64 0:2.010-4.amzn2.0.2 perl-Storable.x86_64 0:2.45-3.amzn2.0.2 perl-TermReadKey.x86_64 0:2.30-20.amzn2.0.2 perl-Text-ParseWords.noarch 0:3.29-4.amzn2 perl-Time-HiRes.x86_64 4:1.9725-3.amzn2.0.2 perl-Time-Local.noarch 0:1.2300-2.amzn2 perl-constant.noarch 0:1.27-2.amzn2.0.1 perl-libs.x86_64 4:5.16.3-299.amzn2.0.2 perl-macros.x86_64 4:5.16.3-299.amzn2.0.2 perl-parent.noarch 1:0.225-244.amzn2.0.1 perl-podlators.noarch 0:2.5.1-3.amzn2.0.1 perl-threads.x86_64 0:1.87-4.amzn2.0.2 perl-threads-shared.x86_64 0:1.43-6.amzn2.0.2 python3-libs.x86_64 0:3.7.16-1.amzn2.0.4 python3-pip.noarch 0:20.2.2-1.amzn2.0.4 python3-setuptools.noarch 0:49.1.3-1.amzn2.0.3 qrencode-libs.x86_64 0:3.4.1-3.amzn2.0.2 shadow-utils.x86_64 2:4.1.5.1-24.amzn2.0.3 systemd.x86_64 0:219-78.amzn2.0.22 systemd-libs.x86_64 0:219-78.amzn2.0.22 ustr.x86_64 0:1.0.4-16.amzn2.0.3 util-linux.x86_64 0:2.30.2-2.amzn2.0.11 Complete! Loaded plugins: ovl Resolving Dependencies --> Running transaction check ---> Package autoconf.noarch 0:2.69-11.amzn2 will be installed --> Processing Dependency: m4 >= 1.4.14 for package: autoconf-2.69-11.amzn2.noarch --> Processing Dependency: perl(Data::Dumper) for package: autoconf-2.69-11.amzn2.noarch ---> Package automake.noarch 0:1.13.4-3.1.amzn2 will be installed --> Processing Dependency: perl(TAP::Parser) for package: automake-1.13.4-3.1.amzn2.noarch --> Processing Dependency: perl(Thread::Queue) for package: automake-1.13.4-3.1.amzn2.noarch ---> Package bison.x86_64 0:3.0.4-6.amzn2.0.2 will be installed ---> Package byacc.x86_64 0:1.9.20130304-3.amzn2.0.2 will be installed ---> Package cscope.x86_64 0:15.8-10.amzn2.0.2 will be installed --> Processing Dependency: emacs-filesystem for package: cscope-15.8-10.amzn2.0.2.x86_64 ---> Package ctags.x86_64 0:5.8-13.amzn2.0.2 will be installed ---> Package diffstat.x86_64 0:1.57-4.amzn2.0.2 will be installed ---> Package doxygen.x86_64 1:1.8.5-4.amzn2 will be installed ---> Package elfutils.x86_64 0:0.176-2.amzn2.0.2 will be installed ---> Package flex.x86_64 0:2.5.37-3.amzn2.0.3 will be installed ---> Package gcc-gfortran.x86_64 0:7.3.1-17.amzn2 will be installed --> Processing Dependency: libgfortran.so.4()(64bit) for package: gcc-gfortran-7.3.1-17.amzn2.x86_64 ---> Package gettext.x86_64 0:0.19.8.1-3.amzn2 will be installed --> Processing Dependency: gettext-libs(x86-64) = 0.19.8.1-3.amzn2 for package: gettext-0.19.8.1-3.amzn2.x86_64 --> Processing Dependency: libcroco-0.6.so.3()(64bit) for package: gettext-0.19.8.1-3.amzn2.x86_64 --> Processing Dependency: libgettextlib-0.19.8.1.so()(64bit) for package: gettext-0.19.8.1-3.amzn2.x86_64 --> Processing Dependency: libgettextsrc-0.19.8.1.so()(64bit) for package: gettext-0.19.8.1-3.amzn2.x86_64 ---> Package indent.x86_64 0:2.2.11-13.amzn2.0.2 will be installed ---> Package intltool.noarch 0:0.50.2-7.amzn2 will be installed --> Processing Dependency: gettext-devel for package: intltool-0.50.2-7.amzn2.noarch --> Processing Dependency: perl(XML::Parser) for package: intltool-0.50.2-7.amzn2.noarch ---> Package libtool.x86_64 0:2.4.2-22.2.amzn2.0.2 will be installed ---> Package make.x86_64 1:3.82-24.amzn2 will be installed ---> Package patch.x86_64 0:2.7.1-12.amzn2.0.2 will be installed ---> Package patchutils.x86_64 0:0.3.3-4.amzn2.0.1 will be installed ---> Package pkgconfig.x86_64 1:0.27.1-4.amzn2.0.2 will be installed ---> Package rcs.x86_64 0:5.9.0-5.amzn2.0.2 will be installed ---> Package rpm-build.x86_64 0:4.11.3-48.amzn2.0.3 will be installed --> Processing Dependency: /usr/bin/gdb-add-index for package: rpm-build-4.11.3-48.amzn2.0.3.x86_64 --> Processing Dependency: bzip2 for package: rpm-build-4.11.3-48.amzn2.0.3.x86_64 --> Processing Dependency: file for package: rpm-build-4.11.3-48.amzn2.0.3.x86_64 --> Processing Dependency: unzip for package: rpm-build-4.11.3-48.amzn2.0.3.x86_64 --> Processing Dependency: xz for package: rpm-build-4.11.3-48.amzn2.0.3.x86_64 ---> Package rpm-sign.x86_64 0:4.11.3-48.amzn2.0.3 will be installed ---> Package subversion.x86_64 0:1.7.14-16.amzn2.0.1 will be installed --> Processing Dependency: subversion-libs(x86-64) = 1.7.14-16.amzn2.0.1 for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: systemd-sysv for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libapr-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libaprutil-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libneon.so.27()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_client-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_delta-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_diff-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_fs-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_fs_base-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_fs_fs-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_fs_util-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_ra-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_ra_local-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_ra_neon-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_ra_svn-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_repos-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_subr-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_wc-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 ---> Package swig.x86_64 0:3.0.12-11.amzn2.0.3 will be installed ---> Package system-rpm-config.noarch 0:9.1.0-76.amzn2.0.14 will be installed --> Processing Dependency: dwz >= 0.4 for package: system-rpm-config-9.1.0-76.amzn2.0.14.noarch --> Processing Dependency: go-srpm-macros for package: system-rpm-config-9.1.0-76.amzn2.0.14.noarch --> Processing Dependency: perl-srpm-macros for package: system-rpm-config-9.1.0-76.amzn2.0.14.noarch --> Processing Dependency: zip for package: system-rpm-config-9.1.0-76.amzn2.0.14.noarch ---> Package systemtap.x86_64 0:4.5-1.amzn2.0.1 will be installed --> Processing Dependency: systemtap-client = 4.5-1.amzn2.0.1 for package: systemtap-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: systemtap-devel = 4.5-1.amzn2.0.1 for package: systemtap-4.5-1.amzn2.0.1.x86_64 --> Running transaction check ---> Package apr.x86_64 0:1.7.2-1.amzn2 will be installed ---> Package apr-util.x86_64 0:1.6.3-1.amzn2.0.1 will be installed --> Processing Dependency: apr-util-bdb(x86-64) = 1.6.3-1.amzn2.0.1 for package: apr-util-1.6.3-1.amzn2.0.1.x86_64 ---> Package bzip2.x86_64 0:1.0.6-13.amzn2.0.3 will be installed ---> Package dwz.x86_64 0:0.11-3.amzn2.0.3 will be installed ---> Package emacs-filesystem.noarch 1:27.2-4.amzn2.0.4 will be installed ---> Package file.x86_64 0:5.11-36.amzn2.0.1 will be installed ---> Package gdb.x86_64 0:8.0.1-36.amzn2.0.1 will be installed ---> Package gettext-devel.x86_64 0:0.19.8.1-3.amzn2 will be installed --> Processing Dependency: gettext-common-devel = 0.19.8.1-3.amzn2 for package: gettext-devel-0.19.8.1-3.amzn2.x86_64 ---> Package gettext-libs.x86_64 0:0.19.8.1-3.amzn2 will be installed ---> Package go-srpm-macros.noarch 0:3.0.15-23.amzn2.0.2 will be installed ---> Package libcroco.x86_64 0:0.6.12-6.amzn2 will be installed ---> Package libgfortran.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package m4.x86_64 0:1.4.16-10.amzn2.0.2 will be installed ---> Package neon.x86_64 0:0.30.0-3.amzn2.0.2 will be installed --> Processing Dependency: libgnutls.so.28(GNUTLS_1_4)(64bit) for package: neon-0.30.0-3.amzn2.0.2.x86_64 --> Processing Dependency: libgnutls.so.28(GNUTLS_2_12)(64bit) for package: neon-0.30.0-3.amzn2.0.2.x86_64 --> Processing Dependency: libgnutls.so.28()(64bit) for package: neon-0.30.0-3.amzn2.0.2.x86_64 --> Processing Dependency: libpakchois.so.0()(64bit) for package: neon-0.30.0-3.amzn2.0.2.x86_64 --> Processing Dependency: libproxy.so.1()(64bit) for package: neon-0.30.0-3.amzn2.0.2.x86_64 ---> Package perl-Data-Dumper.x86_64 0:2.145-3.amzn2.0.2 will be installed ---> Package perl-Test-Harness.noarch 0:3.28-3.amzn2 will be installed ---> Package perl-Thread-Queue.noarch 0:3.02-2.amzn2 will be installed ---> Package perl-XML-Parser.x86_64 0:2.41-10.amzn2.0.2 will be installed ---> Package perl-srpm-macros.noarch 0:1-8.amzn2.0.1 will be installed ---> Package subversion-libs.x86_64 0:1.7.14-16.amzn2.0.1 will be installed ---> Package systemd-sysv.x86_64 0:219-78.amzn2.0.22 will be installed ---> Package systemtap-client.x86_64 0:4.5-1.amzn2.0.1 will be installed --> Processing Dependency: systemtap-runtime = 4.5-1.amzn2.0.1 for package: systemtap-client-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: mokutil for package: systemtap-client-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: libavahi-client.so.3()(64bit) for package: systemtap-client-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: libavahi-common.so.3()(64bit) for package: systemtap-client-4.5-1.amzn2.0.1.x86_64 ---> Package systemtap-devel.x86_64 0:4.5-1.amzn2.0.1 will be installed --> Processing Dependency: kernel-devel-uname-r for package: systemtap-devel-4.5-1.amzn2.0.1.x86_64 ---> Package unzip.x86_64 0:6.0-57.amzn2.0.1 will be installed ---> Package xz.x86_64 0:5.2.2-1.amzn2.0.3 will be installed ---> Package zip.x86_64 0:3.0-11.amzn2.0.2 will be installed --> Running transaction check ---> Package apr-util-bdb.x86_64 0:1.6.3-1.amzn2.0.1 will be installed ---> Package avahi-libs.x86_64 0:0.6.31-20.amzn2.0.2 will be installed ---> Package gettext-common-devel.noarch 0:0.19.8.1-3.amzn2 will be installed ---> Package gnutls.x86_64 0:3.3.29-9.amzn2.0.1 will be installed --> Processing Dependency: trousers >= 0.3.11.2 for package: gnutls-3.3.29-9.amzn2.0.1.x86_64 --> Processing Dependency: libhogweed.so.2()(64bit) for package: gnutls-3.3.29-9.amzn2.0.1.x86_64 --> Processing Dependency: libnettle.so.4()(64bit) for package: gnutls-3.3.29-9.amzn2.0.1.x86_64 ---> Package kernel-devel.x86_64 0:4.14.327-246.539.amzn2 will be installed --> Processing Dependency: /usr/sbin/hardlink for package: kernel-devel-4.14.327-246.539.amzn2.x86_64 --> Processing Dependency: elfutils-libelf-devel for package: kernel-devel-4.14.327-246.539.amzn2.x86_64 ---> Package libproxy.x86_64 0:0.4.11-10.amzn2.0.3 will be installed --> Processing Dependency: libmodman.so.1()(64bit) for package: libproxy-0.4.11-10.amzn2.0.3.x86_64 ---> Package mokutil.x86_64 1:0.3.0-10.amzn2.0.1 will be installed --> Processing Dependency: libefivar.so.1(LIBEFIVAR_0.24)(64bit) for package: 1:mokutil-0.3.0-10.amzn2.0.1.x86_64 --> Processing Dependency: libefivar.so.1(libefivar.so.0)(64bit) for package: 1:mokutil-0.3.0-10.amzn2.0.1.x86_64 --> Processing Dependency: libefivar.so.1()(64bit) for package: 1:mokutil-0.3.0-10.amzn2.0.1.x86_64 ---> Package pakchois.x86_64 0:0.4-10.amzn2.0.2 will be installed ---> Package systemtap-runtime.x86_64 0:4.5-1.amzn2.0.1 will be installed --> Processing Dependency: libboost_system.so.1.53.0()(64bit) for package: systemtap-runtime-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: libdyninstAPI.so.9.3()(64bit) for package: systemtap-runtime-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: libjson-c.so.2()(64bit) for package: systemtap-runtime-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: libsymtabAPI.so.9.3()(64bit) for package: systemtap-runtime-4.5-1.amzn2.0.1.x86_64 --> Running transaction check ---> Package boost-system.x86_64 0:1.53.0-27.amzn2.0.5 will be installed ---> Package dyninst.x86_64 0:9.3.1-3.amzn2 will be installed --> Processing Dependency: libboost_date_time-mt.so.1.53.0()(64bit) for package: dyninst-9.3.1-3.amzn2.x86_64 --> Processing Dependency: libboost_thread-mt.so.1.53.0()(64bit) for package: dyninst-9.3.1-3.amzn2.x86_64 --> Processing Dependency: libdwarf.so.0()(64bit) for package: dyninst-9.3.1-3.amzn2.x86_64 ---> Package efivar-libs.x86_64 0:31-4.amzn2.0.4 will be installed ---> Package elfutils-libelf-devel.x86_64 0:0.176-2.amzn2.0.2 will be installed --> Processing Dependency: pkgconfig(zlib) for package: elfutils-libelf-devel-0.176-2.amzn2.0.2.x86_64 ---> Package hardlink.x86_64 1:1.3-3.amzn2 will be installed ---> Package json-c.x86_64 0:0.11-4.amzn2.0.4 will be installed ---> Package libmodman.x86_64 0:2.0.1-8.amzn2.0.2 will be installed ---> Package nettle.x86_64 0:2.7.1-9.amzn2 will be installed ---> Package trousers.x86_64 0:0.3.14-2.amzn2.0.2 will be installed --> Running transaction check ---> Package boost-date-time.x86_64 0:1.53.0-27.amzn2.0.5 will be installed ---> Package boost-thread.x86_64 0:1.53.0-27.amzn2.0.5 will be installed ---> Package libdwarf.x86_64 0:20130207-4.amzn2.0.2 will be installed ---> Package zlib-devel.x86_64 0:1.2.7-19.amzn2.0.3 will be installed --> Processing Dependency: zlib = 1.2.7-19.amzn2.0.3 for package: zlib-devel-1.2.7-19.amzn2.0.3.x86_64 --> Running transaction check ---> Package zlib.x86_64 0:1.2.7-19.amzn2.0.2 will be updated ---> Package zlib.x86_64 0:1.2.7-19.amzn2.0.3 will be an update --> Finished Dependency Resolution Dependencies Resolved ================================================================================ Package Arch Version Repository Size ================================================================================ Installing for group install "Development Tools": autoconf noarch 2.69-11.amzn2 amzn2-core 701 k automake noarch 1.13.4-3.1.amzn2 amzn2-core 679 k bison x86_64 3.0.4-6.amzn2.0.2 amzn2-core 674 k byacc x86_64 1.9.20130304-3.amzn2.0.2 amzn2-core 66 k cscope x86_64 15.8-10.amzn2.0.2 amzn2-core 204 k ctags x86_64 5.8-13.amzn2.0.2 amzn2-core 157 k diffstat x86_64 1.57-4.amzn2.0.2 amzn2-core 35 k doxygen x86_64 1:1.8.5-4.amzn2 amzn2-core 3.5 M elfutils x86_64 0.176-2.amzn2.0.2 amzn2-core 303 k flex x86_64 2.5.37-3.amzn2.0.3 amzn2-core 291 k gcc-gfortran x86_64 7.3.1-17.amzn2 amzn2-core 11 M gettext x86_64 0.19.8.1-3.amzn2 amzn2-core 1.0 M indent x86_64 2.2.11-13.amzn2.0.2 amzn2-core 150 k intltool noarch 0.50.2-7.amzn2 amzn2-core 59 k libtool x86_64 2.4.2-22.2.amzn2.0.2 amzn2-core 588 k make x86_64 1:3.82-24.amzn2 amzn2-core 420 k patch x86_64 2.7.1-12.amzn2.0.2 amzn2-core 110 k patchutils x86_64 0.3.3-4.amzn2.0.1 amzn2-core 104 k pkgconfig x86_64 1:0.27.1-4.amzn2.0.2 amzn2-core 54 k rcs x86_64 5.9.0-5.amzn2.0.2 amzn2-core 231 k rpm-build x86_64 4.11.3-48.amzn2.0.3 amzn2-core 150 k rpm-sign x86_64 4.11.3-48.amzn2.0.3 amzn2-core 50 k subversion x86_64 1.7.14-16.amzn2.0.1 amzn2-core 1.0 M swig x86_64 3.0.12-11.amzn2.0.3 amzn2-core 1.4 M system-rpm-config noarch 9.1.0-76.amzn2.0.14 amzn2-core 90 k systemtap x86_64 4.5-1.amzn2.0.1 amzn2-core 12 k Installing for dependencies: apr x86_64 1.7.2-1.amzn2 amzn2-core 130 k apr-util x86_64 1.6.3-1.amzn2.0.1 amzn2-core 101 k apr-util-bdb x86_64 1.6.3-1.amzn2.0.1 amzn2-core 22 k avahi-libs x86_64 0.6.31-20.amzn2.0.2 amzn2-core 61 k boost-date-time x86_64 1.53.0-27.amzn2.0.5 amzn2-core 52 k boost-system x86_64 1.53.0-27.amzn2.0.5 amzn2-core 40 k boost-thread x86_64 1.53.0-27.amzn2.0.5 amzn2-core 73 k bzip2 x86_64 1.0.6-13.amzn2.0.3 amzn2-core 52 k dwz x86_64 0.11-3.amzn2.0.3 amzn2-core 98 k dyninst x86_64 9.3.1-3.amzn2 amzn2-core 3.5 M efivar-libs x86_64 31-4.amzn2.0.4 amzn2-core 68 k elfutils-libelf-devel x86_64 0.176-2.amzn2.0.2 amzn2-core 40 k emacs-filesystem noarch 1:27.2-4.amzn2.0.4 amzn2-core 68 k file x86_64 5.11-36.amzn2.0.1 amzn2-core 57 k gdb x86_64 8.0.1-36.amzn2.0.1 amzn2-core 3.1 M gettext-common-devel noarch 0.19.8.1-3.amzn2 amzn2-core 410 k gettext-devel x86_64 0.19.8.1-3.amzn2 amzn2-core 320 k gettext-libs x86_64 0.19.8.1-3.amzn2 amzn2-core 500 k gnutls x86_64 3.3.29-9.amzn2.0.1 amzn2-core 661 k go-srpm-macros noarch 3.0.15-23.amzn2.0.2 amzn2-core 23 k hardlink x86_64 1:1.3-3.amzn2 amzn2-core 23 k json-c x86_64 0.11-4.amzn2.0.4 amzn2-core 30 k kernel-devel x86_64 4.14.327-246.539.amzn2 amzn2-core 13 M libcroco x86_64 0.6.12-6.amzn2 amzn2-core 103 k libdwarf x86_64 20130207-4.amzn2.0.2 amzn2-core 111 k libgfortran x86_64 7.3.1-17.amzn2 amzn2-core 536 k libmodman x86_64 2.0.1-8.amzn2.0.2 amzn2-core 29 k libproxy x86_64 0.4.11-10.amzn2.0.3 amzn2-core 61 k m4 x86_64 1.4.16-10.amzn2.0.2 amzn2-core 256 k mokutil x86_64 1:0.3.0-10.amzn2.0.1 amzn2-core 39 k neon x86_64 0.30.0-3.amzn2.0.2 amzn2-core 166 k nettle x86_64 2.7.1-9.amzn2 amzn2-core 327 k pakchois x86_64 0.4-10.amzn2.0.2 amzn2-core 14 k perl-Data-Dumper x86_64 2.145-3.amzn2.0.2 amzn2-core 48 k perl-Test-Harness noarch 3.28-3.amzn2 amzn2-core 302 k perl-Thread-Queue noarch 3.02-2.amzn2 amzn2-core 17 k perl-XML-Parser x86_64 2.41-10.amzn2.0.2 amzn2-core 223 k perl-srpm-macros noarch 1-8.amzn2.0.1 amzn2-core 4.7 k subversion-libs x86_64 1.7.14-16.amzn2.0.1 amzn2-core 912 k systemd-sysv x86_64 219-78.amzn2.0.22 amzn2-core 98 k systemtap-client x86_64 4.5-1.amzn2.0.1 amzn2-core 3.7 M systemtap-devel x86_64 4.5-1.amzn2.0.1 amzn2-core 2.3 M systemtap-runtime x86_64 4.5-1.amzn2.0.1 amzn2-core 475 k trousers x86_64 0.3.14-2.amzn2.0.2 amzn2-core 294 k unzip x86_64 6.0-57.amzn2.0.1 amzn2-core 182 k xz x86_64 5.2.2-1.amzn2.0.3 amzn2-core 228 k zip x86_64 3.0-11.amzn2.0.2 amzn2-core 263 k zlib-devel x86_64 1.2.7-19.amzn2.0.3 amzn2-core 51 k Updating for dependencies: zlib x86_64 1.2.7-19.amzn2.0.3 amzn2-core 90 k Transaction Summary ================================================================================ Install 26 Packages (+48 Dependent packages) Upgrade ( 1 Dependent package) Total download size: 55 M Downloading packages: Delta RPMs disabled because /usr/bin/applydeltarpm not installed. -------------------------------------------------------------------------------- Total 9.0 MB/s | 55 MB 00:06 Running transaction check Running transaction test Transaction test succeeded Running transaction Updating : zlib-1.2.7-19.amzn2.0.3.x86_64 1/76 Installing : m4-1.4.16-10.amzn2.0.2.x86_64 2/76 Installing : 1:pkgconfig-0.27.1-4.amzn2.0.2.x86_64 3/76 Installing : boost-system-1.53.0-27.amzn2.0.5.x86_64 4/76 Installing : apr-1.7.2-1.amzn2.x86_64 5/76 Installing : apr-util-bdb-1.6.3-1.amzn2.0.1.x86_64 6/76 Installing : apr-util-1.6.3-1.amzn2.0.1.x86_64 7/76 Installing : zip-3.0-11.amzn2.0.2.x86_64 8/76 Installing : avahi-libs-0.6.31-20.amzn2.0.2.x86_64 9/76 Installing : xz-5.2.2-1.amzn2.0.3.x86_64 10/76 Installing : unzip-6.0-57.amzn2.0.1.x86_64 11/76 Installing : libcroco-0.6.12-6.amzn2.x86_64 12/76 Installing : gettext-libs-0.19.8.1-3.amzn2.x86_64 13/76 Installing : patch-2.7.1-12.amzn2.0.2.x86_64 14/76 Installing : perl-Thread-Queue-3.02-2.amzn2.noarch 15/76 Installing : gettext-0.19.8.1-3.amzn2.x86_64 16/76 Installing : boost-thread-1.53.0-27.amzn2.0.5.x86_64 17/76 Installing : zlib-devel-1.2.7-19.amzn2.0.3.x86_64 18/76 Installing : elfutils-libelf-devel-0.176-2.amzn2.0.2.x86_64 19/76 Installing : gdb-8.0.1-36.amzn2.0.1.x86_64 20/76 Installing : file-5.11-36.amzn2.0.1.x86_64 21/76 Installing : libmodman-2.0.1-8.amzn2.0.2.x86_64 22/76 Installing : libproxy-0.4.11-10.amzn2.0.3.x86_64 23/76 Installing : perl-XML-Parser-2.41-10.amzn2.0.2.x86_64 24/76 Installing : bzip2-1.0.6-13.amzn2.0.3.x86_64 25/76 Installing : gettext-common-devel-0.19.8.1-3.amzn2.noarch 26/76 Installing : gettext-devel-0.19.8.1-3.amzn2.x86_64 27/76 Installing : dwz-0.11-3.amzn2.0.3.x86_64 28/76 Installing : systemd-sysv-219-78.amzn2.0.22.x86_64 29/76 Installing : 1:make-3.82-24.amzn2.x86_64 30/76 Installing : elfutils-0.176-2.amzn2.0.2.x86_64 31/76 Installing : 1:emacs-filesystem-27.2-4.amzn2.0.4.noarch 32/76 Installing : efivar-libs-31-4.amzn2.0.4.x86_64 33/76 Installing : 1:mokutil-0.3.0-10.amzn2.0.1.x86_64 34/76 Installing : perl-srpm-macros-1-8.amzn2.0.1.noarch 35/76 Installing : go-srpm-macros-3.0.15-23.amzn2.0.2.noarch 36/76 Installing : system-rpm-config-9.1.0-76.amzn2.0.14.noarch 37/76 Installing : perl-Data-Dumper-2.145-3.amzn2.0.2.x86_64 38/76 Installing : autoconf-2.69-11.amzn2.noarch 39/76 Installing : trousers-0.3.14-2.amzn2.0.2.x86_64 40/76 Installing : json-c-0.11-4.amzn2.0.4.x86_64 41/76 Installing : perl-Test-Harness-3.28-3.amzn2.noarch 42/76 Installing : automake-1.13.4-3.1.amzn2.noarch 43/76 Installing : libgfortran-7.3.1-17.amzn2.x86_64 44/76 Installing : libdwarf-20130207-4.amzn2.0.2.x86_64 45/76 Installing : pakchois-0.4-10.amzn2.0.2.x86_64 46/76 Installing : nettle-2.7.1-9.amzn2.x86_64 47/76 Installing : gnutls-3.3.29-9.amzn2.0.1.x86_64 48/76 Installing : neon-0.30.0-3.amzn2.0.2.x86_64 49/76 Installing : subversion-libs-1.7.14-16.amzn2.0.1.x86_64 50/76 Installing : 1:hardlink-1.3-3.amzn2.x86_64 51/76 Installing : kernel-devel-4.14.327-246.539.amzn2.x86_64 52/76 Installing : systemtap-devel-4.5-1.amzn2.0.1.x86_64 53/76 Installing : boost-date-time-1.53.0-27.amzn2.0.5.x86_64 54/76 Installing : dyninst-9.3.1-3.amzn2.x86_64 55/76 Installing : systemtap-runtime-4.5-1.amzn2.0.1.x86_64 56/76 Installing : systemtap-client-4.5-1.amzn2.0.1.x86_64 57/76 Installing : systemtap-4.5-1.amzn2.0.1.x86_64 58/76 Installing : subversion-1.7.14-16.amzn2.0.1.x86_64 59/76 Installing : gcc-gfortran-7.3.1-17.amzn2.x86_64 60/76 Installing : intltool-0.50.2-7.amzn2.noarch 61/76 Installing : libtool-2.4.2-22.2.amzn2.0.2.x86_64 62/76 Installing : rpm-build-4.11.3-48.amzn2.0.3.x86_64 63/76 Installing : cscope-15.8-10.amzn2.0.2.x86_64 64/76 Installing : flex-2.5.37-3.amzn2.0.3.x86_64 65/76 Installing : bison-3.0.4-6.amzn2.0.2.x86_64 66/76 Installing : rpm-sign-4.11.3-48.amzn2.0.3.x86_64 67/76 Installing : patchutils-0.3.3-4.amzn2.0.1.x86_64 68/76 Installing : rcs-5.9.0-5.amzn2.0.2.x86_64 69/76 Installing : indent-2.2.11-13.amzn2.0.2.x86_64 70/76 Installing : 1:doxygen-1.8.5-4.amzn2.x86_64 71/76 Installing : diffstat-1.57-4.amzn2.0.2.x86_64 72/76 Installing : byacc-1.9.20130304-3.amzn2.0.2.x86_64 73/76 Installing : swig-3.0.12-11.amzn2.0.3.x86_64 74/76 Installing : ctags-5.8-13.amzn2.0.2.x86_64 75/76 Cleanup : zlib-1.2.7-19.amzn2.0.2.x86_64 76/76 Verifying : zlib-1.2.7-19.amzn2.0.3.x86_64 1/76 Verifying : perl-Thread-Queue-3.02-2.amzn2.noarch 2/76 Verifying : gettext-devel-0.19.8.1-3.amzn2.x86_64 3/76 Verifying : patch-2.7.1-12.amzn2.0.2.x86_64 4/76 Verifying : boost-date-time-1.53.0-27.amzn2.0.5.x86_64 5/76 Verifying : flex-2.5.37-3.amzn2.0.3.x86_64 6/76 Verifying : apr-1.7.2-1.amzn2.x86_64 7/76 Verifying : 1:hardlink-1.3-3.amzn2.x86_64 8/76 Verifying : nettle-2.7.1-9.amzn2.x86_64 9/76 Verifying : gcc-gfortran-7.3.1-17.amzn2.x86_64 10/76 Verifying : ctags-5.8-13.amzn2.0.2.x86_64 11/76 Verifying : swig-3.0.12-11.amzn2.0.3.x86_64 12/76 Verifying : byacc-1.9.20130304-3.amzn2.0.2.x86_64 13/76 Verifying : libcroco-0.6.12-6.amzn2.x86_64 14/76 Verifying : pakchois-0.4-10.amzn2.0.2.x86_64 15/76 Verifying : libdwarf-20130207-4.amzn2.0.2.x86_64 16/76 Verifying : kernel-devel-4.14.327-246.539.amzn2.x86_64 17/76 Verifying : dyninst-9.3.1-3.amzn2.x86_64 18/76 Verifying : gettext-libs-0.19.8.1-3.amzn2.x86_64 19/76 Verifying : cscope-15.8-10.amzn2.0.2.x86_64 20/76 Verifying : unzip-6.0-57.amzn2.0.1.x86_64 21/76 Verifying : diffstat-1.57-4.amzn2.0.2.x86_64 22/76 Verifying : 1:doxygen-1.8.5-4.amzn2.x86_64 23/76 Verifying : 1:mokutil-0.3.0-10.amzn2.0.1.x86_64 24/76 Verifying : system-rpm-config-9.1.0-76.amzn2.0.14.noarch 25/76 Verifying : systemtap-devel-4.5-1.amzn2.0.1.x86_64 26/76 Verifying : libgfortran-7.3.1-17.amzn2.x86_64 27/76 Verifying : gettext-0.19.8.1-3.amzn2.x86_64 28/76 Verifying : perl-Test-Harness-3.28-3.amzn2.noarch 29/76 Verifying : autoconf-2.69-11.amzn2.noarch 30/76 Verifying : intltool-0.50.2-7.amzn2.noarch 31/76 Verifying : zlib-devel-1.2.7-19.amzn2.0.3.x86_64 32/76 Verifying : apr-util-1.6.3-1.amzn2.0.1.x86_64 33/76 Verifying : libproxy-0.4.11-10.amzn2.0.3.x86_64 34/76 Verifying : boost-system-1.53.0-27.amzn2.0.5.x86_64 35/76 Verifying : json-c-0.11-4.amzn2.0.4.x86_64 36/76 Verifying : trousers-0.3.14-2.amzn2.0.2.x86_64 37/76 Verifying : xz-5.2.2-1.amzn2.0.3.x86_64 38/76 Verifying : perl-Data-Dumper-2.145-3.amzn2.0.2.x86_64 39/76 Verifying : perl-srpm-macros-1-8.amzn2.0.1.noarch 40/76 Verifying : gnutls-3.3.29-9.amzn2.0.1.x86_64 41/76 Verifying : subversion-libs-1.7.14-16.amzn2.0.1.x86_64 42/76 Verifying : automake-1.13.4-3.1.amzn2.noarch 43/76 Verifying : rpm-sign-4.11.3-48.amzn2.0.3.x86_64 44/76 Verifying : bison-3.0.4-6.amzn2.0.2.x86_64 45/76 Verifying : efivar-libs-31-4.amzn2.0.4.x86_64 46/76 Verifying : 1:pkgconfig-0.27.1-4.amzn2.0.2.x86_64 47/76 Verifying : 1:emacs-filesystem-27.2-4.amzn2.0.4.noarch 48/76 Verifying : gdb-8.0.1-36.amzn2.0.1.x86_64 49/76 Verifying : elfutils-0.176-2.amzn2.0.2.x86_64 50/76 Verifying : go-srpm-macros-3.0.15-23.amzn2.0.2.noarch 51/76 Verifying : libtool-2.4.2-22.2.amzn2.0.2.x86_64 52/76 Verifying : indent-2.2.11-13.amzn2.0.2.x86_64 53/76 Verifying : subversion-1.7.14-16.amzn2.0.1.x86_64 54/76 Verifying : 1:make-3.82-24.amzn2.x86_64 55/76 Verifying : avahi-libs-0.6.31-20.amzn2.0.2.x86_64 56/76 Verifying : systemd-sysv-219-78.amzn2.0.22.x86_64 57/76 Verifying : apr-util-bdb-1.6.3-1.amzn2.0.1.x86_64 58/76 Verifying : neon-0.30.0-3.amzn2.0.2.x86_64 59/76 Verifying : systemtap-4.5-1.amzn2.0.1.x86_64 60/76 Verifying : dwz-0.11-3.amzn2.0.3.x86_64 61/76 Verifying : gettext-common-devel-0.19.8.1-3.amzn2.noarch 62/76 Verifying : systemtap-client-4.5-1.amzn2.0.1.x86_64 63/76 Verifying : zip-3.0-11.amzn2.0.2.x86_64 64/76 Verifying : bzip2-1.0.6-13.amzn2.0.3.x86_64 65/76 Verifying : rcs-5.9.0-5.amzn2.0.2.x86_64 66/76 Verifying : boost-thread-1.53.0-27.amzn2.0.5.x86_64 67/76 Verifying : file-5.11-36.amzn2.0.1.x86_64 68/76 Verifying : rpm-build-4.11.3-48.amzn2.0.3.x86_64 69/76 Verifying : patchutils-0.3.3-4.amzn2.0.1.x86_64 70/76 Verifying : systemtap-runtime-4.5-1.amzn2.0.1.x86_64 71/76 Verifying : elfutils-libelf-devel-0.176-2.amzn2.0.2.x86_64 72/76 Verifying : m4-1.4.16-10.amzn2.0.2.x86_64 73/76 Verifying : perl-XML-Parser-2.41-10.amzn2.0.2.x86_64 74/76 Verifying : libmodman-2.0.1-8.amzn2.0.2.x86_64 75/76 Verifying : zlib-1.2.7-19.amzn2.0.2.x86_64 76/76 Installed: autoconf.noarch 0:2.69-11.amzn2 automake.noarch 0:1.13.4-3.1.amzn2 bison.x86_64 0:3.0.4-6.amzn2.0.2 byacc.x86_64 0:1.9.20130304-3.amzn2.0.2 cscope.x86_64 0:15.8-10.amzn2.0.2 ctags.x86_64 0:5.8-13.amzn2.0.2 diffstat.x86_64 0:1.57-4.amzn2.0.2 doxygen.x86_64 1:1.8.5-4.amzn2 elfutils.x86_64 0:0.176-2.amzn2.0.2 flex.x86_64 0:2.5.37-3.amzn2.0.3 gcc-gfortran.x86_64 0:7.3.1-17.amzn2 gettext.x86_64 0:0.19.8.1-3.amzn2 indent.x86_64 0:2.2.11-13.amzn2.0.2 intltool.noarch 0:0.50.2-7.amzn2 libtool.x86_64 0:2.4.2-22.2.amzn2.0.2 make.x86_64 1:3.82-24.amzn2 patch.x86_64 0:2.7.1-12.amzn2.0.2 patchutils.x86_64 0:0.3.3-4.amzn2.0.1 pkgconfig.x86_64 1:0.27.1-4.amzn2.0.2 rcs.x86_64 0:5.9.0-5.amzn2.0.2 rpm-build.x86_64 0:4.11.3-48.amzn2.0.3 rpm-sign.x86_64 0:4.11.3-48.amzn2.0.3 subversion.x86_64 0:1.7.14-16.amzn2.0.1 swig.x86_64 0:3.0.12-11.amzn2.0.3 system-rpm-config.noarch 0:9.1.0-76.amzn2.0.14 systemtap.x86_64 0:4.5-1.amzn2.0.1 Dependency Installed: apr.x86_64 0:1.7.2-1.amzn2 apr-util.x86_64 0:1.6.3-1.amzn2.0.1 apr-util-bdb.x86_64 0:1.6.3-1.amzn2.0.1 avahi-libs.x86_64 0:0.6.31-20.amzn2.0.2 boost-date-time.x86_64 0:1.53.0-27.amzn2.0.5 boost-system.x86_64 0:1.53.0-27.amzn2.0.5 boost-thread.x86_64 0:1.53.0-27.amzn2.0.5 bzip2.x86_64 0:1.0.6-13.amzn2.0.3 dwz.x86_64 0:0.11-3.amzn2.0.3 dyninst.x86_64 0:9.3.1-3.amzn2 efivar-libs.x86_64 0:31-4.amzn2.0.4 elfutils-libelf-devel.x86_64 0:0.176-2.amzn2.0.2 emacs-filesystem.noarch 1:27.2-4.amzn2.0.4 file.x86_64 0:5.11-36.amzn2.0.1 gdb.x86_64 0:8.0.1-36.amzn2.0.1 gettext-common-devel.noarch 0:0.19.8.1-3.amzn2 gettext-devel.x86_64 0:0.19.8.1-3.amzn2 gettext-libs.x86_64 0:0.19.8.1-3.amzn2 gnutls.x86_64 0:3.3.29-9.amzn2.0.1 go-srpm-macros.noarch 0:3.0.15-23.amzn2.0.2 hardlink.x86_64 1:1.3-3.amzn2 json-c.x86_64 0:0.11-4.amzn2.0.4 kernel-devel.x86_64 0:4.14.327-246.539.amzn2 libcroco.x86_64 0:0.6.12-6.amzn2 libdwarf.x86_64 0:20130207-4.amzn2.0.2 libgfortran.x86_64 0:7.3.1-17.amzn2 libmodman.x86_64 0:2.0.1-8.amzn2.0.2 libproxy.x86_64 0:0.4.11-10.amzn2.0.3 m4.x86_64 0:1.4.16-10.amzn2.0.2 mokutil.x86_64 1:0.3.0-10.amzn2.0.1 neon.x86_64 0:0.30.0-3.amzn2.0.2 nettle.x86_64 0:2.7.1-9.amzn2 pakchois.x86_64 0:0.4-10.amzn2.0.2 perl-Data-Dumper.x86_64 0:2.145-3.amzn2.0.2 perl-Test-Harness.noarch 0:3.28-3.amzn2 perl-Thread-Queue.noarch 0:3.02-2.amzn2 perl-XML-Parser.x86_64 0:2.41-10.amzn2.0.2 perl-srpm-macros.noarch 0:1-8.amzn2.0.1 subversion-libs.x86_64 0:1.7.14-16.amzn2.0.1 systemd-sysv.x86_64 0:219-78.amzn2.0.22 systemtap-client.x86_64 0:4.5-1.amzn2.0.1 systemtap-devel.x86_64 0:4.5-1.amzn2.0.1 systemtap-runtime.x86_64 0:4.5-1.amzn2.0.1 trousers.x86_64 0:0.3.14-2.amzn2.0.2 unzip.x86_64 0:6.0-57.amzn2.0.1 xz.x86_64 0:5.2.2-1.amzn2.0.3 zip.x86_64 0:3.0-11.amzn2.0.2 zlib-devel.x86_64 0:1.2.7-19.amzn2.0.3 Dependency Updated: zlib.x86_64 0:1.2.7-19.amzn2.0.3 Complete!% ```
ashvardanian commented 1 year ago

:tada: This issue has been resolved in version 2.8.7 :tada:

The release is available on GitHub release

Your semantic-release bot :package::rocket:

ashvardanian commented 1 year ago

Great catch, @jlarmstrongiv! Check the refreshed version, should be arriving at NPM in a minute 😄

jlarmstrongiv commented 1 year ago

@ashvardanian would you re-open this issue? While I think the submodules are part of the puzzle, I’m still getting an error

To see what’s installed, the npm code tab is helpful

Perhaps git init && git submodule add … needs to be run? (note that && only works on unix, not windows)

Error logs ``` Command failed with exit code 128: docker run --entrypoint /bin/bash -v /var/folders/zf/2l3hc6vn12v7r89t45mhxzhm0000gn/T/018bb201-ede4-75c0-9156-c480093 ba33a:/var/task --rm public.ecr.aws/lambda/nodejs:18-x86_64 -c npm install -g npm@10.2.3 && yum install tar git python3 cmake gcc-c++ -y && yum groupinstall "Development Tools" -y && npm install --SIMSIMD_TARGET_X86_AVX512=0 --build-from-source usearch@2.8.7 There is no installed groups file. Maybe run: yum groups mark convert (see man yum) npm ERR! code 128 npm ERR! path /var/task/node_modules/usearch npm ERR! command failed npm ERR! command sh -c git submodule update --init --recursive npm ERR! fatal: not a git repository (or any parent up to mount point /var) npm ERR! Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set). npm ERR! A complete log of this run can be found in: /root/.npm/_logs/2023-11-09T02_57_19_984Z-debug-0.log removed 31 packages, and changed 65 packages in 7s 26 packages are looking for funding run `npm fund` for details Loaded plugins: ovl Resolving Dependencies --> Running transaction check ---> Package cmake.x86_64 0:2.8.12.2-2.amzn2.0.2 will be installed --> Processing Dependency: libarchive.so.13()(64bit) for package: cmake-2.8.12.2-2.amzn2.0.2.x86_64 ---> Package gcc-c++.x86_64 0:7.3.1-17.amzn2 will be installed --> Processing Dependency: gcc(x86-64) = 7.3.1-17.amzn2 for package: gcc-c++-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libmpc.so.3()(64bit) for package: gcc-c++-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libmpfr.so.4()(64bit) for package: gcc-c++-7.3.1-17.amzn2.x86_64 ---> Package git.x86_64 0:2.40.1-1.amzn2.0.1 will be installed --> Processing Dependency: git-core = 2.40.1-1.amzn2.0.1 for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: git-core-doc = 2.40.1-1.amzn2.0.1 for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl-Git = 2.40.1-1.amzn2.0.1 for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl >= 5.008 for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: /usr/bin/perl for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(File::Basename) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(File::Find) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(File::Spec) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(Getopt::Long) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(Git) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(IPC::Open2) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(Term::ReadKey) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(lib) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(strict) for package: git-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: perl(warnings) for package: git-2.40.1-1.amzn2.0.1.x86_64 ---> Package python3.x86_64 0:3.7.16-1.amzn2.0.4 will be installed --> Processing Dependency: python3-libs(x86-64) = 3.7.16-1.amzn2.0.4 for package: python3-3.7.16-1.amzn2.0.4.x86_64 --> Processing Dependency: python3-pip for package: python3-3.7.16-1.amzn2.0.4.x86_64 --> Processing Dependency: python3-setuptools for package: python3-3.7.16-1.amzn2.0.4.x86_64 --> Processing Dependency: libpython3.7m.so.1.0()(64bit) for package: python3-3.7.16-1.amzn2.0.4.x86_64 ---> Package tar.x86_64 2:1.26-35.amzn2.0.2 will be installed --> Running transaction check ---> Package gcc.x86_64 0:7.3.1-17.amzn2 will be installed --> Processing Dependency: cpp = 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libgomp = 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: binutils >= 2.24 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: glibc-devel >= 2.2.90-12 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libatomic >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libcilkrts >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libitm >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libmpx >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libquadmath >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libsanitizer >= 7.3.1-17.amzn2 for package: gcc-7.3.1-17.amzn2.x86_64 --> Processing Dependency: libgomp.so.1()(64bit) for package: gcc-7.3.1-17.amzn2.x86_64 ---> Package git-core.x86_64 0:2.40.1-1.amzn2.0.1 will be installed --> Processing Dependency: less for package: git-core-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: openssh-clients for package: git-core-2.40.1-1.amzn2.0.1.x86_64 --> Processing Dependency: libpcre2-8.so.0()(64bit) for package: git-core-2.40.1-1.amzn2.0.1.x86_64 ---> Package git-core-doc.noarch 0:2.40.1-1.amzn2.0.1 will be installed ---> Package libarchive.x86_64 0:3.1.2-14.amzn2.0.1 will be installed --> Processing Dependency: liblzo2.so.2()(64bit) for package: libarchive-3.1.2-14.amzn2.0.1.x86_64 ---> Package libmpc.x86_64 0:1.0.1-3.amzn2.0.2 will be installed ---> Package mpfr.x86_64 0:3.1.1-4.amzn2.0.2 will be installed ---> Package perl.x86_64 4:5.16.3-299.amzn2.0.2 will be installed --> Processing Dependency: perl-libs = 4:5.16.3-299.amzn2.0.2 for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Scalar::Util) >= 1.10 for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Socket) >= 1.3 for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Carp) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Exporter) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(File::Path) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(File::Temp) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Filter::Util::Call) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Pod::Simple::Search) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Pod::Simple::XHTML) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Scalar::Util) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Socket) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Storable) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Time::HiRes) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(Time::Local) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(constant) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(threads) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl(threads::shared) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl-libs for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: perl-macros for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 --> Processing Dependency: libperl.so()(64bit) for package: 4:perl-5.16.3-299.amzn2.0.2.x86_64 ---> Package perl-Getopt-Long.noarch 0:2.40-3.amzn2 will be installed --> Processing Dependency: perl(Pod::Usage) >= 1.14 for package: perl-Getopt-Long-2.40-3.amzn2.noarch --> Processing Dependency: perl(Text::ParseWords) for package: perl-Getopt-Long-2.40-3.amzn2.noarch ---> Package perl-Git.noarch 0:2.40.1-1.amzn2.0.1 will be installed --> Processing Dependency: perl(Error) for package: perl-Git-2.40.1-1.amzn2.0.1.noarch ---> Package perl-PathTools.x86_64 0:3.40-5.amzn2.0.2 will be installed ---> Package perl-TermReadKey.x86_64 0:2.30-20.amzn2.0.2 will be installed ---> Package python3-libs.x86_64 0:3.7.16-1.amzn2.0.4 will be installed --> Processing Dependency: libtirpc.so.1()(64bit) for package: python3-libs-3.7.16-1.amzn2.0.4.x86_64 ---> Package python3-pip.noarch 0:20.2.2-1.amzn2.0.4 will be installed ---> Package python3-setuptools.noarch 0:49.1.3-1.amzn2.0.3 will be installed --> Running transaction check ---> Package binutils.x86_64 0:2.29.1-31.amzn2 will be installed ---> Package cpp.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package glibc-devel.x86_64 0:2.26-63.amzn2.0.1 will be installed --> Processing Dependency: glibc-headers = 2.26-63.amzn2.0.1 for package: glibc-devel-2.26-63.amzn2.0.1.x86_64 --> Processing Dependency: glibc-headers for package: glibc-devel-2.26-63.amzn2.0.1.x86_64 ---> Package less.x86_64 0:458-9.amzn2.0.2 will be installed --> Processing Dependency: groff-base for package: less-458-9.amzn2.0.2.x86_64 ---> Package libatomic.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libcilkrts.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libgomp.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libitm.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libmpx.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libquadmath.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libsanitizer.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package libtirpc.x86_64 0:0.2.4-0.16.amzn2 will be installed ---> Package lzo.x86_64 0:2.06-8.amzn2.0.4 will be installed ---> Package openssh-clients.x86_64 0:7.4p1-22.amzn2.0.5 will be installed --> Processing Dependency: openssh = 7.4p1-22.amzn2.0.5 for package: openssh-clients-7.4p1-22.amzn2.0.5.x86_64 --> Processing Dependency: fipscheck-lib(x86-64) >= 1.3.0 for package: openssh-clients-7.4p1-22.amzn2.0.5.x86_64 --> Processing Dependency: libedit.so.0()(64bit) for package: openssh-clients-7.4p1-22.amzn2.0.5.x86_64 --> Processing Dependency: libfipscheck.so.1()(64bit) for package: openssh-clients-7.4p1-22.amzn2.0.5.x86_64 ---> Package pcre2.x86_64 0:10.23-11.amzn2.0.1 will be installed ---> Package perl-Carp.noarch 0:1.26-244.amzn2 will be installed ---> Package perl-Error.noarch 1:0.17020-2.amzn2 will be installed ---> Package perl-Exporter.noarch 0:5.68-3.amzn2 will be installed ---> Package perl-File-Path.noarch 0:2.09-2.amzn2 will be installed ---> Package perl-File-Temp.noarch 0:0.23.01-3.amzn2 will be installed ---> Package perl-Filter.x86_64 0:1.49-3.amzn2.0.2 will be installed ---> Package perl-Pod-Simple.noarch 1:3.28-4.amzn2 will be installed --> Processing Dependency: perl(Pod::Escapes) >= 1.04 for package: 1:perl-Pod-Simple-3.28-4.amzn2.noarch --> Processing Dependency: perl(Encode) for package: 1:perl-Pod-Simple-3.28-4.amzn2.noarch ---> Package perl-Pod-Usage.noarch 0:1.63-3.amzn2 will be installed --> Processing Dependency: perl(Pod::Text) >= 3.15 for package: perl-Pod-Usage-1.63-3.amzn2.noarch --> Processing Dependency: perl-Pod-Perldoc for package: perl-Pod-Usage-1.63-3.amzn2.noarch ---> Package perl-Scalar-List-Utils.x86_64 0:1.27-248.amzn2.0.2 will be installed ---> Package perl-Socket.x86_64 0:2.010-4.amzn2.0.2 will be installed ---> Package perl-Storable.x86_64 0:2.45-3.amzn2.0.2 will be installed ---> Package perl-Text-ParseWords.noarch 0:3.29-4.amzn2 will be installed ---> Package perl-Time-HiRes.x86_64 4:1.9725-3.amzn2.0.2 will be installed ---> Package perl-Time-Local.noarch 0:1.2300-2.amzn2 will be installed ---> Package perl-constant.noarch 0:1.27-2.amzn2.0.1 will be installed ---> Package perl-libs.x86_64 4:5.16.3-299.amzn2.0.2 will be installed ---> Package perl-macros.x86_64 4:5.16.3-299.amzn2.0.2 will be installed ---> Package perl-threads.x86_64 0:1.87-4.amzn2.0.2 will be installed ---> Package perl-threads-shared.x86_64 0:1.43-6.amzn2.0.2 will be installed --> Running transaction check ---> Package fipscheck-lib.x86_64 0:1.4.1-6.amzn2.0.2 will be installed --> Processing Dependency: /usr/bin/fipscheck for package: fipscheck-lib-1.4.1-6.amzn2.0.2.x86_64 ---> Package glibc-headers.x86_64 0:2.26-63.amzn2.0.1 will be installed --> Processing Dependency: kernel-headers >= 2.2.1 for package: glibc-headers-2.26-63.amzn2.0.1.x86_64 --> Processing Dependency: kernel-headers for package: glibc-headers-2.26-63.amzn2.0.1.x86_64 ---> Package groff-base.x86_64 0:1.22.2-8.amzn2.0.2 will be installed ---> Package libedit.x86_64 0:3.0-12.20121213cvs.amzn2.0.2 will be installed ---> Package openssh.x86_64 0:7.4p1-22.amzn2.0.5 will be installed --> Processing Dependency: audit-libs >= 1.0.8 for package: openssh-7.4p1-22.amzn2.0.5.x86_64 --> Processing Dependency: /sbin/nologin for package: openssh-7.4p1-22.amzn2.0.5.x86_64 ---> Package perl-Encode.x86_64 0:2.51-7.amzn2.0.2 will be installed ---> Package perl-Pod-Escapes.noarch 1:1.04-299.amzn2.0.2 will be installed ---> Package perl-Pod-Perldoc.noarch 0:3.20-4.amzn2.0.1 will be installed --> Processing Dependency: perl(HTTP::Tiny) for package: perl-Pod-Perldoc-3.20-4.amzn2.0.1.noarch --> Processing Dependency: perl(parent) for package: perl-Pod-Perldoc-3.20-4.amzn2.0.1.noarch ---> Package perl-podlators.noarch 0:2.5.1-3.amzn2.0.1 will be installed --> Running transaction check ---> Package audit-libs.x86_64 0:2.8.1-3.amzn2.1 will be installed --> Processing Dependency: libcap-ng.so.0()(64bit) for package: audit-libs-2.8.1-3.amzn2.1.x86_64 ---> Package fipscheck.x86_64 0:1.4.1-6.amzn2.0.2 will be installed ---> Package kernel-headers.x86_64 0:4.14.327-246.539.amzn2 will be installed ---> Package perl-HTTP-Tiny.noarch 0:0.033-3.amzn2.0.1 will be installed ---> Package perl-parent.noarch 1:0.225-244.amzn2.0.1 will be installed ---> Package util-linux.x86_64 0:2.30.2-2.amzn2.0.11 will be installed --> Processing Dependency: libfdisk = 2.30.2-2.amzn2.0.11 for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols = 2.30.2-2.amzn2.0.11 for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: pam >= 1.1.3-7 for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: /etc/pam.d/system-auth for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1(FDISK_2.26)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1(FDISK_2.27)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1(FDISK_2.28)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1(FDISK_2.29)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1(FDISK_2.30)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libpam.so.0(LIBPAM_1.0)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libpam_misc.so.0(LIBPAM_MISC_1.0)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1(SMARTCOLS_2.25)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1(SMARTCOLS_2.27)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1(SMARTCOLS_2.28)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1(SMARTCOLS_2.29)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1(SMARTCOLS_2.30)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsystemd.so.0(LIBSYSTEMD_209)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libudev.so.1(LIBUDEV_183)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libutempter.so.0(UTEMPTER_1.1)(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libfdisk.so.1()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libpam.so.0()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libpam_misc.so.0()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsmartcols.so.1()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libsystemd.so.0()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libudev.so.1()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Processing Dependency: libutempter.so.0()(64bit) for package: util-linux-2.30.2-2.amzn2.0.11.x86_64 --> Running transaction check ---> Package libcap-ng.x86_64 0:0.7.5-4.amzn2.0.4 will be installed ---> Package libfdisk.x86_64 0:2.30.2-2.amzn2.0.11 will be installed ---> Package libsmartcols.x86_64 0:2.30.2-2.amzn2.0.11 will be installed ---> Package libutempter.x86_64 0:1.1.6-4.amzn2.0.2 will be installed --> Processing Dependency: shadow-utils for package: libutempter-1.1.6-4.amzn2.0.2.x86_64 ---> Package pam.x86_64 0:1.1.8-23.amzn2.0.1 will be installed --> Processing Dependency: cracklib-dicts >= 2.8 for package: pam-1.1.8-23.amzn2.0.1.x86_64 --> Processing Dependency: libpwquality >= 0.9.9 for package: pam-1.1.8-23.amzn2.0.1.x86_64 --> Processing Dependency: libcrack.so.2()(64bit) for package: pam-1.1.8-23.amzn2.0.1.x86_64 ---> Package systemd-libs.x86_64 0:219-78.amzn2.0.22 will be installed --> Processing Dependency: libdw.so.1()(64bit) for package: systemd-libs-219-78.amzn2.0.22.x86_64 --> Processing Dependency: liblz4.so.1()(64bit) for package: systemd-libs-219-78.amzn2.0.22.x86_64 --> Running transaction check ---> Package cracklib.x86_64 0:2.9.0-11.amzn2.0.2 will be installed --> Processing Dependency: gzip for package: cracklib-2.9.0-11.amzn2.0.2.x86_64 ---> Package cracklib-dicts.x86_64 0:2.9.0-11.amzn2.0.2 will be installed ---> Package elfutils-libs.x86_64 0:0.176-2.amzn2.0.2 will be installed --> Processing Dependency: default-yama-scope for package: elfutils-libs-0.176-2.amzn2.0.2.x86_64 ---> Package libpwquality.x86_64 0:1.2.3-5.amzn2 will be installed ---> Package lz4.x86_64 0:1.7.5-2.amzn2.0.1 will be installed ---> Package shadow-utils.x86_64 2:4.1.5.1-24.amzn2.0.3 will be installed --> Processing Dependency: libsemanage.so.1(LIBSEMANAGE_1.0)(64bit) for package: 2:shadow-utils-4.1.5.1-24.amzn2.0.3.x86_64 --> Processing Dependency: libsemanage.so.1()(64bit) for package: 2:shadow-utils-4.1.5.1-24.amzn2.0.3.x86_64 --> Running transaction check ---> Package elfutils-default-yama-scope.noarch 0:0.176-2.amzn2.0.2 will be installed --> Processing Dependency: systemd for package: elfutils-default-yama-scope-0.176-2.amzn2.0.2.noarch --> Processing Dependency: systemd for package: elfutils-default-yama-scope-0.176-2.amzn2.0.2.noarch ---> Package gzip.x86_64 0:1.5-10.amzn2.0.1 will be installed ---> Package libsemanage.x86_64 0:2.5-11.amzn2 will be installed --> Processing Dependency: libustr-1.0.so.1(USTR_1.0)(64bit) for package: libsemanage-2.5-11.amzn2.x86_64 --> Processing Dependency: libustr-1.0.so.1(USTR_1.0.1)(64bit) for package: libsemanage-2.5-11.amzn2.x86_64 --> Processing Dependency: libustr-1.0.so.1()(64bit) for package: libsemanage-2.5-11.amzn2.x86_64 --> Running transaction check ---> Package systemd.x86_64 0:219-78.amzn2.0.22 will be installed --> Processing Dependency: kmod >= 18-4 for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: acl for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: dbus for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: libcryptsetup.so.4(CRYPTSETUP_1.0)(64bit) for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: libkmod.so.2(LIBKMOD_5)(64bit) for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: libcryptsetup.so.4()(64bit) for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: libkmod.so.2()(64bit) for package: systemd-219-78.amzn2.0.22.x86_64 --> Processing Dependency: libqrencode.so.3()(64bit) for package: systemd-219-78.amzn2.0.22.x86_64 ---> Package ustr.x86_64 0:1.0.4-16.amzn2.0.3 will be installed --> Running transaction check ---> Package acl.x86_64 0:2.2.51-14.amzn2 will be installed ---> Package cryptsetup-libs.x86_64 0:1.7.4-4.amzn2 will be installed --> Processing Dependency: libdevmapper.so.1.02(Base)(64bit) for package: cryptsetup-libs-1.7.4-4.amzn2.x86_64 --> Processing Dependency: libdevmapper.so.1.02(DM_1_02_97)(64bit) for package: cryptsetup-libs-1.7.4-4.amzn2.x86_64 --> Processing Dependency: libdevmapper.so.1.02()(64bit) for package: cryptsetup-libs-1.7.4-4.amzn2.x86_64 ---> Package dbus.x86_64 1:1.10.24-7.amzn2.0.3 will be installed --> Processing Dependency: dbus-libs(x86-64) = 1:1.10.24-7.amzn2.0.3 for package: 1:dbus-1.10.24-7.amzn2.0.3.x86_64 --> Processing Dependency: libdbus-1.so.3(LIBDBUS_1_3)(64bit) for package: 1:dbus-1.10.24-7.amzn2.0.3.x86_64 --> Processing Dependency: libdbus-1.so.3(LIBDBUS_PRIVATE_1.10.24)(64bit) for package: 1:dbus-1.10.24-7.amzn2.0.3.x86_64 --> Processing Dependency: libdbus-1.so.3()(64bit) for package: 1:dbus-1.10.24-7.amzn2.0.3.x86_64 ---> Package kmod.x86_64 0:25-3.amzn2.0.2 will be installed ---> Package kmod-libs.x86_64 0:25-3.amzn2.0.2 will be installed ---> Package qrencode-libs.x86_64 0:3.4.1-3.amzn2.0.2 will be installed --> Running transaction check ---> Package dbus-libs.x86_64 1:1.10.24-7.amzn2.0.3 will be installed ---> Package device-mapper-libs.x86_64 7:1.02.170-6.amzn2.5 will be installed --> Processing Dependency: device-mapper = 7:1.02.170-6.amzn2.5 for package: 7:device-mapper-libs-1.02.170-6.amzn2.5.x86_64 --> Running transaction check ---> Package device-mapper.x86_64 7:1.02.170-6.amzn2.5 will be installed --> Finished Dependency Resolution Dependencies Resolved ================================================================================ Package Arch Version Repository Size ================================================================================ Installing: cmake x86_64 2.8.12.2-2.amzn2.0.2 amzn2-core 6.9 M gcc-c++ x86_64 7.3.1-17.amzn2 amzn2-core 13 M git x86_64 2.40.1-1.amzn2.0.1 amzn2-core 54 k python3 x86_64 3.7.16-1.amzn2.0.4 amzn2-core 72 k tar x86_64 2:1.26-35.amzn2.0.2 amzn2-core 845 k Installing for dependencies: acl x86_64 2.2.51-14.amzn2 amzn2-core 82 k audit-libs x86_64 2.8.1-3.amzn2.1 amzn2-core 99 k binutils x86_64 2.29.1-31.amzn2 amzn2-core 5.8 M cpp x86_64 7.3.1-17.amzn2 amzn2-core 9.2 M cracklib x86_64 2.9.0-11.amzn2.0.2 amzn2-core 80 k cracklib-dicts x86_64 2.9.0-11.amzn2.0.2 amzn2-core 3.6 M cryptsetup-libs x86_64 1.7.4-4.amzn2 amzn2-core 224 k dbus x86_64 1:1.10.24-7.amzn2.0.3 amzn2-core 245 k dbus-libs x86_64 1:1.10.24-7.amzn2.0.3 amzn2-core 167 k device-mapper x86_64 7:1.02.170-6.amzn2.5 amzn2-core 297 k device-mapper-libs x86_64 7:1.02.170-6.amzn2.5 amzn2-core 326 k elfutils-default-yama-scope noarch 0.176-2.amzn2.0.2 amzn2-core 33 k elfutils-libs x86_64 0.176-2.amzn2.0.2 amzn2-core 289 k fipscheck x86_64 1.4.1-6.amzn2.0.2 amzn2-core 21 k fipscheck-lib x86_64 1.4.1-6.amzn2.0.2 amzn2-core 11 k gcc x86_64 7.3.1-17.amzn2 amzn2-core 22 M git-core x86_64 2.40.1-1.amzn2.0.1 amzn2-core 10 M git-core-doc noarch 2.40.1-1.amzn2.0.1 amzn2-core 3.0 M glibc-devel x86_64 2.26-63.amzn2.0.1 amzn2-core 995 k glibc-headers x86_64 2.26-63.amzn2.0.1 amzn2-core 516 k groff-base x86_64 1.22.2-8.amzn2.0.2 amzn2-core 948 k gzip x86_64 1.5-10.amzn2.0.1 amzn2-core 129 k kernel-headers x86_64 4.14.327-246.539.amzn2 amzn2-core 1.2 M kmod x86_64 25-3.amzn2.0.2 amzn2-core 111 k kmod-libs x86_64 25-3.amzn2.0.2 amzn2-core 59 k less x86_64 458-9.amzn2.0.2 amzn2-core 121 k libarchive x86_64 3.1.2-14.amzn2.0.1 amzn2-core 312 k libatomic x86_64 7.3.1-17.amzn2 amzn2-core 46 k libcap-ng x86_64 0.7.5-4.amzn2.0.4 amzn2-core 25 k libcilkrts x86_64 7.3.1-17.amzn2 amzn2-core 85 k libedit x86_64 3.0-12.20121213cvs.amzn2.0.2 amzn2-core 93 k libfdisk x86_64 2.30.2-2.amzn2.0.11 amzn2-core 238 k libgomp x86_64 7.3.1-17.amzn2 amzn2-core 205 k libitm x86_64 7.3.1-17.amzn2 amzn2-core 85 k libmpc x86_64 1.0.1-3.amzn2.0.2 amzn2-core 52 k libmpx x86_64 7.3.1-17.amzn2 amzn2-core 52 k libpwquality x86_64 1.2.3-5.amzn2 amzn2-core 84 k libquadmath x86_64 7.3.1-17.amzn2 amzn2-core 189 k libsanitizer x86_64 7.3.1-17.amzn2 amzn2-core 642 k libsemanage x86_64 2.5-11.amzn2 amzn2-core 152 k libsmartcols x86_64 2.30.2-2.amzn2.0.11 amzn2-core 155 k libtirpc x86_64 0.2.4-0.16.amzn2 amzn2-core 88 k libutempter x86_64 1.1.6-4.amzn2.0.2 amzn2-core 25 k lz4 x86_64 1.7.5-2.amzn2.0.1 amzn2-core 99 k lzo x86_64 2.06-8.amzn2.0.4 amzn2-core 60 k mpfr x86_64 3.1.1-4.amzn2.0.2 amzn2-core 208 k openssh x86_64 7.4p1-22.amzn2.0.5 amzn2-core 508 k openssh-clients x86_64 7.4p1-22.amzn2.0.5 amzn2-core 652 k pam x86_64 1.1.8-23.amzn2.0.1 amzn2-core 715 k pcre2 x86_64 10.23-11.amzn2.0.1 amzn2-core 207 k perl x86_64 4:5.16.3-299.amzn2.0.2 amzn2-core 8.0 M perl-Carp noarch 1.26-244.amzn2 amzn2-core 19 k perl-Encode x86_64 2.51-7.amzn2.0.2 amzn2-core 1.5 M perl-Error noarch 1:0.17020-2.amzn2 amzn2-core 32 k perl-Exporter noarch 5.68-3.amzn2 amzn2-core 29 k perl-File-Path noarch 2.09-2.amzn2 amzn2-core 27 k perl-File-Temp noarch 0.23.01-3.amzn2 amzn2-core 56 k perl-Filter x86_64 1.49-3.amzn2.0.2 amzn2-core 76 k perl-Getopt-Long noarch 2.40-3.amzn2 amzn2-core 56 k perl-Git noarch 2.40.1-1.amzn2.0.1 amzn2-core 41 k perl-HTTP-Tiny noarch 0.033-3.amzn2.0.1 amzn2-core 39 k perl-PathTools x86_64 3.40-5.amzn2.0.2 amzn2-core 83 k perl-Pod-Escapes noarch 1:1.04-299.amzn2.0.2 amzn2-core 52 k perl-Pod-Perldoc noarch 3.20-4.amzn2.0.1 amzn2-core 87 k perl-Pod-Simple noarch 1:3.28-4.amzn2 amzn2-core 216 k perl-Pod-Usage noarch 1.63-3.amzn2 amzn2-core 27 k perl-Scalar-List-Utils x86_64 1.27-248.amzn2.0.2 amzn2-core 36 k perl-Socket x86_64 2.010-4.amzn2.0.2 amzn2-core 49 k perl-Storable x86_64 2.45-3.amzn2.0.2 amzn2-core 78 k perl-TermReadKey x86_64 2.30-20.amzn2.0.2 amzn2-core 31 k perl-Text-ParseWords noarch 3.29-4.amzn2 amzn2-core 14 k perl-Time-HiRes x86_64 4:1.9725-3.amzn2.0.2 amzn2-core 45 k perl-Time-Local noarch 1.2300-2.amzn2 amzn2-core 24 k perl-constant noarch 1.27-2.amzn2.0.1 amzn2-core 19 k perl-libs x86_64 4:5.16.3-299.amzn2.0.2 amzn2-core 685 k perl-macros x86_64 4:5.16.3-299.amzn2.0.2 amzn2-core 45 k perl-parent noarch 1:0.225-244.amzn2.0.1 amzn2-core 12 k perl-podlators noarch 2.5.1-3.amzn2.0.1 amzn2-core 112 k perl-threads x86_64 1.87-4.amzn2.0.2 amzn2-core 50 k perl-threads-shared x86_64 1.43-6.amzn2.0.2 amzn2-core 39 k python3-libs x86_64 3.7.16-1.amzn2.0.4 amzn2-core 9.8 M python3-pip noarch 20.2.2-1.amzn2.0.4 amzn2-core 2.0 M python3-setuptools noarch 49.1.3-1.amzn2.0.3 amzn2-core 1.1 M qrencode-libs x86_64 3.4.1-3.amzn2.0.2 amzn2-core 50 k shadow-utils x86_64 2:4.1.5.1-24.amzn2.0.3 amzn2-core 1.1 M systemd x86_64 219-78.amzn2.0.22 amzn2-core 5.0 M systemd-libs x86_64 219-78.amzn2.0.22 amzn2-core 409 k ustr x86_64 1.0.4-16.amzn2.0.3 amzn2-core 96 k util-linux x86_64 2.30.2-2.amzn2.0.11 amzn2-core 2.3 M Transaction Summary ================================================================================ Install 5 Packages (+89 Dependent packages) Total download size: 118 M Installed size: 387 M Downloading packages: -------------------------------------------------------------------------------- Total 18 MB/s | 118 MB 00:06 Running transaction check Running transaction test Transaction test succeeded Running transaction Installing : mpfr-3.1.1-4.amzn2.0.2.x86_64 1/94 Installing : libmpc-1.0.1-3.amzn2.0.2.x86_64 2/94 Installing : libcap-ng-0.7.5-4.amzn2.0.4.x86_64 3/94 Installing : audit-libs-2.8.1-3.amzn2.1.x86_64 4/94 Installing : groff-base-1.22.2-8.amzn2.0.2.x86_64 5/94 Installing : lz4-1.7.5-2.amzn2.0.1.x86_64 6/94 Installing : 1:perl-parent-0.225-244.amzn2.0.1.noarch 7/94 Installing : perl-HTTP-Tiny-0.033-3.amzn2.0.1.noarch 8/94 Installing : perl-Pod-Perldoc-3.20-4.amzn2.0.1.noarch 9/94 Installing : perl-podlators-2.5.1-3.amzn2.0.1.noarch 10/94 Installing : perl-Text-ParseWords-3.29-4.amzn2.noarch 11/94 Installing : perl-Encode-2.51-7.amzn2.0.2.x86_64 12/94 Installing : perl-Pod-Usage-1.63-3.amzn2.noarch 13/94 Installing : 1:perl-Pod-Escapes-1.04-299.amzn2.0.2.noarch 14/94 Installing : 4:perl-libs-5.16.3-299.amzn2.0.2.x86_64 15/94 Installing : perl-Filter-1.49-3.amzn2.0.2.x86_64 16/94 Installing : perl-Storable-2.45-3.amzn2.0.2.x86_64 17/94 Installing : perl-Carp-1.26-244.amzn2.noarch 18/94 Installing : perl-File-Path-2.09-2.amzn2.noarch 19/94 Installing : perl-PathTools-3.40-5.amzn2.0.2.x86_64 20/94 Installing : perl-Scalar-List-Utils-1.27-248.amzn2.0.2.x86_64 21/94 Installing : perl-Exporter-5.68-3.amzn2.noarch 22/94 Installing : perl-Time-Local-1.2300-2.amzn2.noarch 23/94 Installing : perl-File-Temp-0.23.01-3.amzn2.noarch 24/94 Installing : perl-constant-1.27-2.amzn2.0.1.noarch 25/94 Installing : perl-threads-shared-1.43-6.amzn2.0.2.x86_64 26/94 Installing : perl-threads-1.87-4.amzn2.0.2.x86_64 27/94 Installing : 4:perl-Time-HiRes-1.9725-3.amzn2.0.2.x86_64 28/94 Installing : perl-Socket-2.010-4.amzn2.0.2.x86_64 29/94 Installing : 4:perl-macros-5.16.3-299.amzn2.0.2.x86_64 30/94 Installing : perl-Getopt-Long-2.40-3.amzn2.noarch 31/94 Installing : 1:perl-Pod-Simple-3.28-4.amzn2.noarch 32/94 Installing : 4:perl-5.16.3-299.amzn2.0.2.x86_64 33/94 Installing : perl-TermReadKey-2.30-20.amzn2.0.2.x86_64 34/94 Installing : 1:perl-Error-0.17020-2.amzn2.noarch 35/94 Installing : less-458-9.amzn2.0.2.x86_64 36/94 Installing : cpp-7.3.1-17.amzn2.x86_64 37/94 Installing : fipscheck-lib-1.4.1-6.amzn2.0.2.x86_64 38/94 Installing : fipscheck-1.4.1-6.amzn2.0.2.x86_64 39/94 Installing : libatomic-7.3.1-17.amzn2.x86_64 40/94 Installing : libgomp-7.3.1-17.amzn2.x86_64 41/94 Installing : kmod-libs-25-3.amzn2.0.2.x86_64 42/94 Installing : libsanitizer-7.3.1-17.amzn2.x86_64 43/94 Installing : gzip-1.5-10.amzn2.0.1.x86_64 44/94 Installing : cracklib-2.9.0-11.amzn2.0.2.x86_64 45/94 Installing : cracklib-dicts-2.9.0-11.amzn2.0.2.x86_64 46/94 Installing : libpwquality-1.2.3-5.amzn2.x86_64 47/94 Installing : pam-1.1.8-23.amzn2.0.1.x86_64 48/94 Installing : libmpx-7.3.1-17.amzn2.x86_64 49/94 Installing : ustr-1.0.4-16.amzn2.0.3.x86_64 50/94 Installing : libsemanage-2.5-11.amzn2.x86_64 51/94 Installing : 2:shadow-utils-4.1.5.1-24.amzn2.0.3.x86_64 52/94 Installing : libutempter-1.1.6-4.amzn2.0.2.x86_64 53/94 Installing : lzo-2.06-8.amzn2.0.4.x86_64 54/94 Installing : libarchive-3.1.2-14.amzn2.0.1.x86_64 55/94 Installing : libcilkrts-7.3.1-17.amzn2.x86_64 56/94 Installing : acl-2.2.51-14.amzn2.x86_64 57/94 Installing : pcre2-10.23-11.amzn2.0.1.x86_64 58/94 Installing : libsmartcols-2.30.2-2.amzn2.0.11.x86_64 59/94 Installing : binutils-2.29.1-31.amzn2.x86_64 60/94 Installing : kernel-headers-4.14.327-246.539.amzn2.x86_64 61/94 Installing : glibc-headers-2.26-63.amzn2.0.1.x86_64 62/94 Installing : glibc-devel-2.26-63.amzn2.0.1.x86_64 63/94 Installing : kmod-25-3.amzn2.0.2.x86_64 64/94 Installing : libfdisk-2.30.2-2.amzn2.0.11.x86_64 65/94 Installing : libtirpc-0.2.4-0.16.amzn2.x86_64 66/94 Installing : python3-setuptools-49.1.3-1.amzn2.0.3.noarch 67/94 Installing : python3-libs-3.7.16-1.amzn2.0.4.x86_64 68/94 Installing : python3-3.7.16-1.amzn2.0.4.x86_64 69/94 Installing : python3-pip-20.2.2-1.amzn2.0.4.noarch 70/94 Installing : qrencode-libs-3.4.1-3.amzn2.0.2.x86_64 71/94 Installing : util-linux-2.30.2-2.amzn2.0.11.x86_64 72/94 Installing : 7:device-mapper-1.02.170-6.amzn2.5.x86_64 73/94 Installing : 7:device-mapper-libs-1.02.170-6.amzn2.5.x86_64 74/94 Installing : cryptsetup-libs-1.7.4-4.amzn2.x86_64 75/94 Installing : elfutils-libs-0.176-2.amzn2.0.2.x86_64 76/94 Installing : systemd-libs-219-78.amzn2.0.22.x86_64 77/94 Installing : 1:dbus-libs-1.10.24-7.amzn2.0.3.x86_64 78/94 Installing : systemd-219-78.amzn2.0.22.x86_64 79/94 Failed to get D-Bus connection: Operation not permitted Installing : 1:dbus-1.10.24-7.amzn2.0.3.x86_64 80/94 Installing : elfutils-default-yama-scope-0.176-2.amzn2.0.2.noarch 81/94 Installing : openssh-7.4p1-22.amzn2.0.5.x86_64 82/94 Installing : libquadmath-7.3.1-17.amzn2.x86_64 83/94 Installing : libedit-3.0-12.20121213cvs.amzn2.0.2.x86_64 84/94 Installing : openssh-clients-7.4p1-22.amzn2.0.5.x86_64 85/94 Installing : git-core-2.40.1-1.amzn2.0.1.x86_64 86/94 Installing : git-core-doc-2.40.1-1.amzn2.0.1.noarch 87/94 Installing : git-2.40.1-1.amzn2.0.1.x86_64 88/94 Installing : perl-Git-2.40.1-1.amzn2.0.1.noarch 89/94 Installing : libitm-7.3.1-17.amzn2.x86_64 90/94 Installing : gcc-7.3.1-17.amzn2.x86_64 91/94 Installing : gcc-c++-7.3.1-17.amzn2.x86_64 92/94 Installing : cmake-2.8.12.2-2.amzn2.0.2.x86_64 93/94 Installing : 2:tar-1.26-35.amzn2.0.2.x86_64 94/94 Verifying : python3-pip-20.2.2-1.amzn2.0.4.noarch 1/94 Verifying : libitm-7.3.1-17.amzn2.x86_64 2/94 Verifying : 1:perl-Pod-Escapes-1.04-299.amzn2.0.2.noarch 3/94 Verifying : git-core-2.40.1-1.amzn2.0.1.x86_64 4/94 Verifying : python3-setuptools-49.1.3-1.amzn2.0.3.noarch 5/94 Verifying : libmpc-1.0.1-3.amzn2.0.2.x86_64 6/94 Verifying : git-2.40.1-1.amzn2.0.1.x86_64 7/94 Verifying : cryptsetup-libs-1.7.4-4.amzn2.x86_64 8/94 Verifying : libedit-3.0-12.20121213cvs.amzn2.0.2.x86_64 9/94 Verifying : libutempter-1.1.6-4.amzn2.0.2.x86_64 10/94 Verifying : lz4-1.7.5-2.amzn2.0.1.x86_64 11/94 Verifying : libquadmath-7.3.1-17.amzn2.x86_64 12/94 Verifying : qrencode-libs-3.4.1-3.amzn2.0.2.x86_64 13/94 Verifying : perl-Filter-1.49-3.amzn2.0.2.x86_64 14/94 Verifying : 1:perl-Pod-Simple-3.28-4.amzn2.noarch 15/94 Verifying : libtirpc-0.2.4-0.16.amzn2.x86_64 16/94 Verifying : libfdisk-2.30.2-2.amzn2.0.11.x86_64 17/94 Verifying : perl-PathTools-3.40-5.amzn2.0.2.x86_64 18/94 Verifying : libcap-ng-0.7.5-4.amzn2.0.4.x86_64 19/94 Verifying : python3-libs-3.7.16-1.amzn2.0.4.x86_64 20/94 Verifying : gcc-c++-7.3.1-17.amzn2.x86_64 21/94 Verifying : perl-Storable-2.45-3.amzn2.0.2.x86_64 22/94 Verifying : python3-3.7.16-1.amzn2.0.4.x86_64 23/94 Verifying : kmod-25-3.amzn2.0.2.x86_64 24/94 Verifying : kernel-headers-4.14.327-246.539.amzn2.x86_64 25/94 Verifying : cmake-2.8.12.2-2.amzn2.0.2.x86_64 26/94 Verifying : 4:perl-libs-5.16.3-299.amzn2.0.2.x86_64 27/94 Verifying : perl-Getopt-Long-2.40-3.amzn2.noarch 28/94 Verifying : perl-Time-Local-1.2300-2.amzn2.noarch 29/94 Verifying : 1:dbus-1.10.24-7.amzn2.0.3.x86_64 30/94 Verifying : 2:shadow-utils-4.1.5.1-24.amzn2.0.3.x86_64 31/94 Verifying : binutils-2.29.1-31.amzn2.x86_64 32/94 Verifying : libsmartcols-2.30.2-2.amzn2.0.11.x86_64 33/94 Verifying : fipscheck-1.4.1-6.amzn2.0.2.x86_64 34/94 Verifying : pcre2-10.23-11.amzn2.0.1.x86_64 35/94 Verifying : libpwquality-1.2.3-5.amzn2.x86_64 36/94 Verifying : 7:device-mapper-libs-1.02.170-6.amzn2.5.x86_64 37/94 Verifying : cracklib-dicts-2.9.0-11.amzn2.0.2.x86_64 38/94 Verifying : perl-TermReadKey-2.30-20.amzn2.0.2.x86_64 39/94 Verifying : audit-libs-2.8.1-3.amzn2.1.x86_64 40/94 Verifying : perl-Pod-Perldoc-3.20-4.amzn2.0.1.noarch 41/94 Verifying : perl-Git-2.40.1-1.amzn2.0.1.noarch 42/94 Verifying : acl-2.2.51-14.amzn2.x86_64 43/94 Verifying : libsemanage-2.5-11.amzn2.x86_64 44/94 Verifying : 2:tar-1.26-35.amzn2.0.2.x86_64 45/94 Verifying : elfutils-libs-0.176-2.amzn2.0.2.x86_64 46/94 Verifying : openssh-7.4p1-22.amzn2.0.5.x86_64 47/94 Verifying : systemd-libs-219-78.amzn2.0.22.x86_64 48/94 Verifying : perl-File-Path-2.09-2.amzn2.noarch 49/94 Verifying : libcilkrts-7.3.1-17.amzn2.x86_64 50/94 Verifying : fipscheck-lib-1.4.1-6.amzn2.0.2.x86_64 51/94 Verifying : systemd-219-78.amzn2.0.22.x86_64 52/94 Verifying : lzo-2.06-8.amzn2.0.4.x86_64 53/94 Verifying : glibc-devel-2.26-63.amzn2.0.1.x86_64 54/94 Verifying : git-core-doc-2.40.1-1.amzn2.0.1.noarch 55/94 Verifying : 4:perl-5.16.3-299.amzn2.0.2.x86_64 56/94 Verifying : 1:dbus-libs-1.10.24-7.amzn2.0.3.x86_64 57/94 Verifying : perl-Carp-1.26-244.amzn2.noarch 58/94 Verifying : elfutils-default-yama-scope-0.176-2.amzn2.0.2.noarch 59/94 Verifying : perl-Scalar-List-Utils-1.27-248.amzn2.0.2.x86_64 60/94 Verifying : cpp-7.3.1-17.amzn2.x86_64 61/94 Verifying : mpfr-3.1.1-4.amzn2.0.2.x86_64 62/94 Verifying : util-linux-2.30.2-2.amzn2.0.11.x86_64 63/94 Verifying : pam-1.1.8-23.amzn2.0.1.x86_64 64/94 Verifying : perl-HTTP-Tiny-0.033-3.amzn2.0.1.noarch 65/94 Verifying : ustr-1.0.4-16.amzn2.0.3.x86_64 66/94 Verifying : less-458-9.amzn2.0.2.x86_64 67/94 Verifying : 1:perl-Error-0.17020-2.amzn2.noarch 68/94 Verifying : perl-Pod-Usage-1.63-3.amzn2.noarch 69/94 Verifying : gcc-7.3.1-17.amzn2.x86_64 70/94 Verifying : 1:perl-parent-0.225-244.amzn2.0.1.noarch 71/94 Verifying : perl-File-Temp-0.23.01-3.amzn2.noarch 72/94 Verifying : libmpx-7.3.1-17.amzn2.x86_64 73/94 Verifying : openssh-clients-7.4p1-22.amzn2.0.5.x86_64 74/94 Verifying : libarchive-3.1.2-14.amzn2.0.1.x86_64 75/94 Verifying : perl-Exporter-5.68-3.amzn2.noarch 76/94 Verifying : cracklib-2.9.0-11.amzn2.0.2.x86_64 77/94 Verifying : perl-Encode-2.51-7.amzn2.0.2.x86_64 78/94 Verifying : 7:device-mapper-1.02.170-6.amzn2.5.x86_64 79/94 Verifying : perl-threads-shared-1.43-6.amzn2.0.2.x86_64 80/94 Verifying : gzip-1.5-10.amzn2.0.1.x86_64 81/94 Verifying : libsanitizer-7.3.1-17.amzn2.x86_64 82/94 Verifying : perl-constant-1.27-2.amzn2.0.1.noarch 83/94 Verifying : kmod-libs-25-3.amzn2.0.2.x86_64 84/94 Verifying : glibc-headers-2.26-63.amzn2.0.1.x86_64 85/94 Verifying : libgomp-7.3.1-17.amzn2.x86_64 86/94 Verifying : perl-threads-1.87-4.amzn2.0.2.x86_64 87/94 Verifying : perl-podlators-2.5.1-3.amzn2.0.1.noarch 88/94 Verifying : libatomic-7.3.1-17.amzn2.x86_64 89/94 Verifying : 4:perl-Time-HiRes-1.9725-3.amzn2.0.2.x86_64 90/94 Verifying : perl-Socket-2.010-4.amzn2.0.2.x86_64 91/94 Verifying : 4:perl-macros-5.16.3-299.amzn2.0.2.x86_64 92/94 Verifying : groff-base-1.22.2-8.amzn2.0.2.x86_64 93/94 Verifying : perl-Text-ParseWords-3.29-4.amzn2.noarch 94/94 Installed: cmake.x86_64 0:2.8.12.2-2.amzn2.0.2 gcc-c++.x86_64 0:7.3.1-17.amzn2 git.x86_64 0:2.40.1-1.amzn2.0.1 python3.x86_64 0:3.7.16-1.amzn2.0.4 tar.x86_64 2:1.26-35.amzn2.0.2 Dependency Installed: acl.x86_64 0:2.2.51-14.amzn2 audit-libs.x86_64 0:2.8.1-3.amzn2.1 binutils.x86_64 0:2.29.1-31.amzn2 cpp.x86_64 0:7.3.1-17.amzn2 cracklib.x86_64 0:2.9.0-11.amzn2.0.2 cracklib-dicts.x86_64 0:2.9.0-11.amzn2.0.2 cryptsetup-libs.x86_64 0:1.7.4-4.amzn2 dbus.x86_64 1:1.10.24-7.amzn2.0.3 dbus-libs.x86_64 1:1.10.24-7.amzn2.0.3 device-mapper.x86_64 7:1.02.170-6.amzn2.5 device-mapper-libs.x86_64 7:1.02.170-6.amzn2.5 elfutils-default-yama-scope.noarch 0:0.176-2.amzn2.0.2 elfutils-libs.x86_64 0:0.176-2.amzn2.0.2 fipscheck.x86_64 0:1.4.1-6.amzn2.0.2 fipscheck-lib.x86_64 0:1.4.1-6.amzn2.0.2 gcc.x86_64 0:7.3.1-17.amzn2 git-core.x86_64 0:2.40.1-1.amzn2.0.1 git-core-doc.noarch 0:2.40.1-1.amzn2.0.1 glibc-devel.x86_64 0:2.26-63.amzn2.0.1 glibc-headers.x86_64 0:2.26-63.amzn2.0.1 groff-base.x86_64 0:1.22.2-8.amzn2.0.2 gzip.x86_64 0:1.5-10.amzn2.0.1 kernel-headers.x86_64 0:4.14.327-246.539.amzn2 kmod.x86_64 0:25-3.amzn2.0.2 kmod-libs.x86_64 0:25-3.amzn2.0.2 less.x86_64 0:458-9.amzn2.0.2 libarchive.x86_64 0:3.1.2-14.amzn2.0.1 libatomic.x86_64 0:7.3.1-17.amzn2 libcap-ng.x86_64 0:0.7.5-4.amzn2.0.4 libcilkrts.x86_64 0:7.3.1-17.amzn2 libedit.x86_64 0:3.0-12.20121213cvs.amzn2.0.2 libfdisk.x86_64 0:2.30.2-2.amzn2.0.11 libgomp.x86_64 0:7.3.1-17.amzn2 libitm.x86_64 0:7.3.1-17.amzn2 libmpc.x86_64 0:1.0.1-3.amzn2.0.2 libmpx.x86_64 0:7.3.1-17.amzn2 libpwquality.x86_64 0:1.2.3-5.amzn2 libquadmath.x86_64 0:7.3.1-17.amzn2 libsanitizer.x86_64 0:7.3.1-17.amzn2 libsemanage.x86_64 0:2.5-11.amzn2 libsmartcols.x86_64 0:2.30.2-2.amzn2.0.11 libtirpc.x86_64 0:0.2.4-0.16.amzn2 libutempter.x86_64 0:1.1.6-4.amzn2.0.2 lz4.x86_64 0:1.7.5-2.amzn2.0.1 lzo.x86_64 0:2.06-8.amzn2.0.4 mpfr.x86_64 0:3.1.1-4.amzn2.0.2 openssh.x86_64 0:7.4p1-22.amzn2.0.5 openssh-clients.x86_64 0:7.4p1-22.amzn2.0.5 pam.x86_64 0:1.1.8-23.amzn2.0.1 pcre2.x86_64 0:10.23-11.amzn2.0.1 perl.x86_64 4:5.16.3-299.amzn2.0.2 perl-Carp.noarch 0:1.26-244.amzn2 perl-Encode.x86_64 0:2.51-7.amzn2.0.2 perl-Error.noarch 1:0.17020-2.amzn2 perl-Exporter.noarch 0:5.68-3.amzn2 perl-File-Path.noarch 0:2.09-2.amzn2 perl-File-Temp.noarch 0:0.23.01-3.amzn2 perl-Filter.x86_64 0:1.49-3.amzn2.0.2 perl-Getopt-Long.noarch 0:2.40-3.amzn2 perl-Git.noarch 0:2.40.1-1.amzn2.0.1 perl-HTTP-Tiny.noarch 0:0.033-3.amzn2.0.1 perl-PathTools.x86_64 0:3.40-5.amzn2.0.2 perl-Pod-Escapes.noarch 1:1.04-299.amzn2.0.2 perl-Pod-Perldoc.noarch 0:3.20-4.amzn2.0.1 perl-Pod-Simple.noarch 1:3.28-4.amzn2 perl-Pod-Usage.noarch 0:1.63-3.amzn2 perl-Scalar-List-Utils.x86_64 0:1.27-248.amzn2.0.2 perl-Socket.x86_64 0:2.010-4.amzn2.0.2 perl-Storable.x86_64 0:2.45-3.amzn2.0.2 perl-TermReadKey.x86_64 0:2.30-20.amzn2.0.2 perl-Text-ParseWords.noarch 0:3.29-4.amzn2 perl-Time-HiRes.x86_64 4:1.9725-3.amzn2.0.2 perl-Time-Local.noarch 0:1.2300-2.amzn2 perl-constant.noarch 0:1.27-2.amzn2.0.1 perl-libs.x86_64 4:5.16.3-299.amzn2.0.2 perl-macros.x86_64 4:5.16.3-299.amzn2.0.2 perl-parent.noarch 1:0.225-244.amzn2.0.1 perl-podlators.noarch 0:2.5.1-3.amzn2.0.1 perl-threads.x86_64 0:1.87-4.amzn2.0.2 perl-threads-shared.x86_64 0:1.43-6.amzn2.0.2 python3-libs.x86_64 0:3.7.16-1.amzn2.0.4 python3-pip.noarch 0:20.2.2-1.amzn2.0.4 python3-setuptools.noarch 0:49.1.3-1.amzn2.0.3 qrencode-libs.x86_64 0:3.4.1-3.amzn2.0.2 shadow-utils.x86_64 2:4.1.5.1-24.amzn2.0.3 systemd.x86_64 0:219-78.amzn2.0.22 systemd-libs.x86_64 0:219-78.amzn2.0.22 ustr.x86_64 0:1.0.4-16.amzn2.0.3 util-linux.x86_64 0:2.30.2-2.amzn2.0.11 Complete! Loaded plugins: ovl Resolving Dependencies --> Running transaction check ---> Package autoconf.noarch 0:2.69-11.amzn2 will be installed --> Processing Dependency: m4 >= 1.4.14 for package: autoconf-2.69-11.amzn2.noarch --> Processing Dependency: perl(Data::Dumper) for package: autoconf-2.69-11.amzn2.noarch ---> Package automake.noarch 0:1.13.4-3.1.amzn2 will be installed --> Processing Dependency: perl(TAP::Parser) for package: automake-1.13.4-3.1.amzn2.noarch --> Processing Dependency: perl(Thread::Queue) for package: automake-1.13.4-3.1.amzn2.noarch ---> Package bison.x86_64 0:3.0.4-6.amzn2.0.2 will be installed ---> Package byacc.x86_64 0:1.9.20130304-3.amzn2.0.2 will be installed ---> Package cscope.x86_64 0:15.8-10.amzn2.0.2 will be installed --> Processing Dependency: emacs-filesystem for package: cscope-15.8-10.amzn2.0.2.x86_64 ---> Package ctags.x86_64 0:5.8-13.amzn2.0.2 will be installed ---> Package diffstat.x86_64 0:1.57-4.amzn2.0.2 will be installed ---> Package doxygen.x86_64 1:1.8.5-4.amzn2 will be installed ---> Package elfutils.x86_64 0:0.176-2.amzn2.0.2 will be installed ---> Package flex.x86_64 0:2.5.37-3.amzn2.0.3 will be installed ---> Package gcc-gfortran.x86_64 0:7.3.1-17.amzn2 will be installed --> Processing Dependency: libgfortran.so.4()(64bit) for package: gcc-gfortran-7.3.1-17.amzn2.x86_64 ---> Package gettext.x86_64 0:0.19.8.1-3.amzn2 will be installed --> Processing Dependency: gettext-libs(x86-64) = 0.19.8.1-3.amzn2 for package: gettext-0.19.8.1-3.amzn2.x86_64 --> Processing Dependency: libcroco-0.6.so.3()(64bit) for package: gettext-0.19.8.1-3.amzn2.x86_64 --> Processing Dependency: libgettextlib-0.19.8.1.so()(64bit) for package: gettext-0.19.8.1-3.amzn2.x86_64 --> Processing Dependency: libgettextsrc-0.19.8.1.so()(64bit) for package: gettext-0.19.8.1-3.amzn2.x86_64 ---> Package indent.x86_64 0:2.2.11-13.amzn2.0.2 will be installed ---> Package intltool.noarch 0:0.50.2-7.amzn2 will be installed --> Processing Dependency: gettext-devel for package: intltool-0.50.2-7.amzn2.noarch --> Processing Dependency: perl(XML::Parser) for package: intltool-0.50.2-7.amzn2.noarch ---> Package libtool.x86_64 0:2.4.2-22.2.amzn2.0.2 will be installed ---> Package make.x86_64 1:3.82-24.amzn2 will be installed ---> Package patch.x86_64 0:2.7.1-12.amzn2.0.2 will be installed ---> Package patchutils.x86_64 0:0.3.3-4.amzn2.0.1 will be installed ---> Package pkgconfig.x86_64 1:0.27.1-4.amzn2.0.2 will be installed ---> Package rcs.x86_64 0:5.9.0-5.amzn2.0.2 will be installed ---> Package rpm-build.x86_64 0:4.11.3-48.amzn2.0.3 will be installed --> Processing Dependency: /usr/bin/gdb-add-index for package: rpm-build-4.11.3-48.amzn2.0.3.x86_64 --> Processing Dependency: bzip2 for package: rpm-build-4.11.3-48.amzn2.0.3.x86_64 --> Processing Dependency: file for package: rpm-build-4.11.3-48.amzn2.0.3.x86_64 --> Processing Dependency: unzip for package: rpm-build-4.11.3-48.amzn2.0.3.x86_64 --> Processing Dependency: xz for package: rpm-build-4.11.3-48.amzn2.0.3.x86_64 ---> Package rpm-sign.x86_64 0:4.11.3-48.amzn2.0.3 will be installed ---> Package subversion.x86_64 0:1.7.14-16.amzn2.0.1 will be installed --> Processing Dependency: subversion-libs(x86-64) = 1.7.14-16.amzn2.0.1 for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: systemd-sysv for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libapr-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libaprutil-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libneon.so.27()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_client-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_delta-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_diff-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_fs-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_fs_base-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_fs_fs-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_fs_util-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_ra-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_ra_local-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_ra_neon-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_ra_svn-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_repos-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_subr-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 --> Processing Dependency: libsvn_wc-1.so.0()(64bit) for package: subversion-1.7.14-16.amzn2.0.1.x86_64 ---> Package swig.x86_64 0:3.0.12-11.amzn2.0.3 will be installed ---> Package system-rpm-config.noarch 0:9.1.0-76.amzn2.0.14 will be installed --> Processing Dependency: dwz >= 0.4 for package: system-rpm-config-9.1.0-76.amzn2.0.14.noarch --> Processing Dependency: go-srpm-macros for package: system-rpm-config-9.1.0-76.amzn2.0.14.noarch --> Processing Dependency: perl-srpm-macros for package: system-rpm-config-9.1.0-76.amzn2.0.14.noarch --> Processing Dependency: zip for package: system-rpm-config-9.1.0-76.amzn2.0.14.noarch ---> Package systemtap.x86_64 0:4.5-1.amzn2.0.1 will be installed --> Processing Dependency: systemtap-client = 4.5-1.amzn2.0.1 for package: systemtap-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: systemtap-devel = 4.5-1.amzn2.0.1 for package: systemtap-4.5-1.amzn2.0.1.x86_64 --> Running transaction check ---> Package apr.x86_64 0:1.7.2-1.amzn2 will be installed ---> Package apr-util.x86_64 0:1.6.3-1.amzn2.0.1 will be installed --> Processing Dependency: apr-util-bdb(x86-64) = 1.6.3-1.amzn2.0.1 for package: apr-util-1.6.3-1.amzn2.0.1.x86_64 ---> Package bzip2.x86_64 0:1.0.6-13.amzn2.0.3 will be installed ---> Package dwz.x86_64 0:0.11-3.amzn2.0.3 will be installed ---> Package emacs-filesystem.noarch 1:27.2-4.amzn2.0.4 will be installed ---> Package file.x86_64 0:5.11-36.amzn2.0.1 will be installed ---> Package gdb.x86_64 0:8.0.1-36.amzn2.0.1 will be installed ---> Package gettext-devel.x86_64 0:0.19.8.1-3.amzn2 will be installed --> Processing Dependency: gettext-common-devel = 0.19.8.1-3.amzn2 for package: gettext-devel-0.19.8.1-3.amzn2.x86_64 ---> Package gettext-libs.x86_64 0:0.19.8.1-3.amzn2 will be installed ---> Package go-srpm-macros.noarch 0:3.0.15-23.amzn2.0.2 will be installed ---> Package libcroco.x86_64 0:0.6.12-6.amzn2 will be installed ---> Package libgfortran.x86_64 0:7.3.1-17.amzn2 will be installed ---> Package m4.x86_64 0:1.4.16-10.amzn2.0.2 will be installed ---> Package neon.x86_64 0:0.30.0-3.amzn2.0.2 will be installed --> Processing Dependency: libgnutls.so.28(GNUTLS_1_4)(64bit) for package: neon-0.30.0-3.amzn2.0.2.x86_64 --> Processing Dependency: libgnutls.so.28(GNUTLS_2_12)(64bit) for package: neon-0.30.0-3.amzn2.0.2.x86_64 --> Processing Dependency: libgnutls.so.28()(64bit) for package: neon-0.30.0-3.amzn2.0.2.x86_64 --> Processing Dependency: libpakchois.so.0()(64bit) for package: neon-0.30.0-3.amzn2.0.2.x86_64 --> Processing Dependency: libproxy.so.1()(64bit) for package: neon-0.30.0-3.amzn2.0.2.x86_64 ---> Package perl-Data-Dumper.x86_64 0:2.145-3.amzn2.0.2 will be installed ---> Package perl-Test-Harness.noarch 0:3.28-3.amzn2 will be installed ---> Package perl-Thread-Queue.noarch 0:3.02-2.amzn2 will be installed ---> Package perl-XML-Parser.x86_64 0:2.41-10.amzn2.0.2 will be installed ---> Package perl-srpm-macros.noarch 0:1-8.amzn2.0.1 will be installed ---> Package subversion-libs.x86_64 0:1.7.14-16.amzn2.0.1 will be installed ---> Package systemd-sysv.x86_64 0:219-78.amzn2.0.22 will be installed ---> Package systemtap-client.x86_64 0:4.5-1.amzn2.0.1 will be installed --> Processing Dependency: systemtap-runtime = 4.5-1.amzn2.0.1 for package: systemtap-client-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: mokutil for package: systemtap-client-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: libavahi-client.so.3()(64bit) for package: systemtap-client-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: libavahi-common.so.3()(64bit) for package: systemtap-client-4.5-1.amzn2.0.1.x86_64 ---> Package systemtap-devel.x86_64 0:4.5-1.amzn2.0.1 will be installed --> Processing Dependency: kernel-devel-uname-r for package: systemtap-devel-4.5-1.amzn2.0.1.x86_64 ---> Package unzip.x86_64 0:6.0-57.amzn2.0.1 will be installed ---> Package xz.x86_64 0:5.2.2-1.amzn2.0.3 will be installed ---> Package zip.x86_64 0:3.0-11.amzn2.0.2 will be installed --> Running transaction check ---> Package apr-util-bdb.x86_64 0:1.6.3-1.amzn2.0.1 will be installed ---> Package avahi-libs.x86_64 0:0.6.31-20.amzn2.0.2 will be installed ---> Package gettext-common-devel.noarch 0:0.19.8.1-3.amzn2 will be installed ---> Package gnutls.x86_64 0:3.3.29-9.amzn2.0.1 will be installed --> Processing Dependency: trousers >= 0.3.11.2 for package: gnutls-3.3.29-9.amzn2.0.1.x86_64 --> Processing Dependency: libhogweed.so.2()(64bit) for package: gnutls-3.3.29-9.amzn2.0.1.x86_64 --> Processing Dependency: libnettle.so.4()(64bit) for package: gnutls-3.3.29-9.amzn2.0.1.x86_64 ---> Package kernel-devel.x86_64 0:4.14.327-246.539.amzn2 will be installed --> Processing Dependency: /usr/sbin/hardlink for package: kernel-devel-4.14.327-246.539.amzn2.x86_64 --> Processing Dependency: elfutils-libelf-devel for package: kernel-devel-4.14.327-246.539.amzn2.x86_64 ---> Package libproxy.x86_64 0:0.4.11-10.amzn2.0.3 will be installed --> Processing Dependency: libmodman.so.1()(64bit) for package: libproxy-0.4.11-10.amzn2.0.3.x86_64 ---> Package mokutil.x86_64 1:0.3.0-10.amzn2.0.1 will be installed --> Processing Dependency: libefivar.so.1(LIBEFIVAR_0.24)(64bit) for package: 1:mokutil-0.3.0-10.amzn2.0.1.x86_64 --> Processing Dependency: libefivar.so.1(libefivar.so.0)(64bit) for package: 1:mokutil-0.3.0-10.amzn2.0.1.x86_64 --> Processing Dependency: libefivar.so.1()(64bit) for package: 1:mokutil-0.3.0-10.amzn2.0.1.x86_64 ---> Package pakchois.x86_64 0:0.4-10.amzn2.0.2 will be installed ---> Package systemtap-runtime.x86_64 0:4.5-1.amzn2.0.1 will be installed --> Processing Dependency: libboost_system.so.1.53.0()(64bit) for package: systemtap-runtime-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: libdyninstAPI.so.9.3()(64bit) for package: systemtap-runtime-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: libjson-c.so.2()(64bit) for package: systemtap-runtime-4.5-1.amzn2.0.1.x86_64 --> Processing Dependency: libsymtabAPI.so.9.3()(64bit) for package: systemtap-runtime-4.5-1.amzn2.0.1.x86_64 --> Running transaction check ---> Package boost-system.x86_64 0:1.53.0-27.amzn2.0.5 will be installed ---> Package dyninst.x86_64 0:9.3.1-3.amzn2 will be installed --> Processing Dependency: libboost_date_time-mt.so.1.53.0()(64bit) for package: dyninst-9.3.1-3.amzn2.x86_64 --> Processing Dependency: libboost_thread-mt.so.1.53.0()(64bit) for package: dyninst-9.3.1-3.amzn2.x86_64 --> Processing Dependency: libdwarf.so.0()(64bit) for package: dyninst-9.3.1-3.amzn2.x86_64 ---> Package efivar-libs.x86_64 0:31-4.amzn2.0.4 will be installed ---> Package elfutils-libelf-devel.x86_64 0:0.176-2.amzn2.0.2 will be installed --> Processing Dependency: pkgconfig(zlib) for package: elfutils-libelf-devel-0.176-2.amzn2.0.2.x86_64 ---> Package hardlink.x86_64 1:1.3-3.amzn2 will be installed ---> Package json-c.x86_64 0:0.11-4.amzn2.0.4 will be installed ---> Package libmodman.x86_64 0:2.0.1-8.amzn2.0.2 will be installed ---> Package nettle.x86_64 0:2.7.1-9.amzn2 will be installed ---> Package trousers.x86_64 0:0.3.14-2.amzn2.0.2 will be installed --> Running transaction check ---> Package boost-date-time.x86_64 0:1.53.0-27.amzn2.0.5 will be installed ---> Package boost-thread.x86_64 0:1.53.0-27.amzn2.0.5 will be installed ---> Package libdwarf.x86_64 0:20130207-4.amzn2.0.2 will be installed ---> Package zlib-devel.x86_64 0:1.2.7-19.amzn2.0.3 will be installed --> Processing Dependency: zlib = 1.2.7-19.amzn2.0.3 for package: zlib-devel-1.2.7-19.amzn2.0.3.x86_64 --> Running transaction check ---> Package zlib.x86_64 0:1.2.7-19.amzn2.0.2 will be updated ---> Package zlib.x86_64 0:1.2.7-19.amzn2.0.3 will be an update --> Finished Dependency Resolution Dependencies Resolved ================================================================================ Package Arch Version Repository Size ================================================================================ Installing for group install "Development Tools": autoconf noarch 2.69-11.amzn2 amzn2-core 701 k automake noarch 1.13.4-3.1.amzn2 amzn2-core 679 k bison x86_64 3.0.4-6.amzn2.0.2 amzn2-core 674 k byacc x86_64 1.9.20130304-3.amzn2.0.2 amzn2-core 66 k cscope x86_64 15.8-10.amzn2.0.2 amzn2-core 204 k ctags x86_64 5.8-13.amzn2.0.2 amzn2-core 157 k diffstat x86_64 1.57-4.amzn2.0.2 amzn2-core 35 k doxygen x86_64 1:1.8.5-4.amzn2 amzn2-core 3.5 M elfutils x86_64 0.176-2.amzn2.0.2 amzn2-core 303 k flex x86_64 2.5.37-3.amzn2.0.3 amzn2-core 291 k gcc-gfortran x86_64 7.3.1-17.amzn2 amzn2-core 11 M gettext x86_64 0.19.8.1-3.amzn2 amzn2-core 1.0 M indent x86_64 2.2.11-13.amzn2.0.2 amzn2-core 150 k intltool noarch 0.50.2-7.amzn2 amzn2-core 59 k libtool x86_64 2.4.2-22.2.amzn2.0.2 amzn2-core 588 k make x86_64 1:3.82-24.amzn2 amzn2-core 420 k patch x86_64 2.7.1-12.amzn2.0.2 amzn2-core 110 k patchutils x86_64 0.3.3-4.amzn2.0.1 amzn2-core 104 k pkgconfig x86_64 1:0.27.1-4.amzn2.0.2 amzn2-core 54 k rcs x86_64 5.9.0-5.amzn2.0.2 amzn2-core 231 k rpm-build x86_64 4.11.3-48.amzn2.0.3 amzn2-core 150 k rpm-sign x86_64 4.11.3-48.amzn2.0.3 amzn2-core 50 k subversion x86_64 1.7.14-16.amzn2.0.1 amzn2-core 1.0 M swig x86_64 3.0.12-11.amzn2.0.3 amzn2-core 1.4 M system-rpm-config noarch 9.1.0-76.amzn2.0.14 amzn2-core 90 k systemtap x86_64 4.5-1.amzn2.0.1 amzn2-core 12 k Installing for dependencies: apr x86_64 1.7.2-1.amzn2 amzn2-core 130 k apr-util x86_64 1.6.3-1.amzn2.0.1 amzn2-core 101 k apr-util-bdb x86_64 1.6.3-1.amzn2.0.1 amzn2-core 22 k avahi-libs x86_64 0.6.31-20.amzn2.0.2 amzn2-core 61 k boost-date-time x86_64 1.53.0-27.amzn2.0.5 amzn2-core 52 k boost-system x86_64 1.53.0-27.amzn2.0.5 amzn2-core 40 k boost-thread x86_64 1.53.0-27.amzn2.0.5 amzn2-core 73 k bzip2 x86_64 1.0.6-13.amzn2.0.3 amzn2-core 52 k dwz x86_64 0.11-3.amzn2.0.3 amzn2-core 98 k dyninst x86_64 9.3.1-3.amzn2 amzn2-core 3.5 M efivar-libs x86_64 31-4.amzn2.0.4 amzn2-core 68 k elfutils-libelf-devel x86_64 0.176-2.amzn2.0.2 amzn2-core 40 k emacs-filesystem noarch 1:27.2-4.amzn2.0.4 amzn2-core 68 k file x86_64 5.11-36.amzn2.0.1 amzn2-core 57 k gdb x86_64 8.0.1-36.amzn2.0.1 amzn2-core 3.1 M gettext-common-devel noarch 0.19.8.1-3.amzn2 amzn2-core 410 k gettext-devel x86_64 0.19.8.1-3.amzn2 amzn2-core 320 k gettext-libs x86_64 0.19.8.1-3.amzn2 amzn2-core 500 k gnutls x86_64 3.3.29-9.amzn2.0.1 amzn2-core 661 k go-srpm-macros noarch 3.0.15-23.amzn2.0.2 amzn2-core 23 k hardlink x86_64 1:1.3-3.amzn2 amzn2-core 23 k json-c x86_64 0.11-4.amzn2.0.4 amzn2-core 30 k kernel-devel x86_64 4.14.327-246.539.amzn2 amzn2-core 13 M libcroco x86_64 0.6.12-6.amzn2 amzn2-core 103 k libdwarf x86_64 20130207-4.amzn2.0.2 amzn2-core 111 k libgfortran x86_64 7.3.1-17.amzn2 amzn2-core 536 k libmodman x86_64 2.0.1-8.amzn2.0.2 amzn2-core 29 k libproxy x86_64 0.4.11-10.amzn2.0.3 amzn2-core 61 k m4 x86_64 1.4.16-10.amzn2.0.2 amzn2-core 256 k mokutil x86_64 1:0.3.0-10.amzn2.0.1 amzn2-core 39 k neon x86_64 0.30.0-3.amzn2.0.2 amzn2-core 166 k nettle x86_64 2.7.1-9.amzn2 amzn2-core 327 k pakchois x86_64 0.4-10.amzn2.0.2 amzn2-core 14 k perl-Data-Dumper x86_64 2.145-3.amzn2.0.2 amzn2-core 48 k perl-Test-Harness noarch 3.28-3.amzn2 amzn2-core 302 k perl-Thread-Queue noarch 3.02-2.amzn2 amzn2-core 17 k perl-XML-Parser x86_64 2.41-10.amzn2.0.2 amzn2-core 223 k perl-srpm-macros noarch 1-8.amzn2.0.1 amzn2-core 4.7 k subversion-libs x86_64 1.7.14-16.amzn2.0.1 amzn2-core 912 k systemd-sysv x86_64 219-78.amzn2.0.22 amzn2-core 98 k systemtap-client x86_64 4.5-1.amzn2.0.1 amzn2-core 3.7 M systemtap-devel x86_64 4.5-1.amzn2.0.1 amzn2-core 2.3 M systemtap-runtime x86_64 4.5-1.amzn2.0.1 amzn2-core 475 k trousers x86_64 0.3.14-2.amzn2.0.2 amzn2-core 294 k unzip x86_64 6.0-57.amzn2.0.1 amzn2-core 182 k xz x86_64 5.2.2-1.amzn2.0.3 amzn2-core 228 k zip x86_64 3.0-11.amzn2.0.2 amzn2-core 263 k zlib-devel x86_64 1.2.7-19.amzn2.0.3 amzn2-core 51 k Updating for dependencies: zlib x86_64 1.2.7-19.amzn2.0.3 amzn2-core 90 k Transaction Summary ================================================================================ Install 26 Packages (+48 Dependent packages) Upgrade ( 1 Dependent package) Total download size: 55 M Downloading packages: Delta RPMs disabled because /usr/bin/applydeltarpm not installed. -------------------------------------------------------------------------------- Total 9.4 MB/s | 55 MB 00:05 Running transaction check Running transaction test Transaction test succeeded Running transaction Updating : zlib-1.2.7-19.amzn2.0.3.x86_64 1/76 Installing : m4-1.4.16-10.amzn2.0.2.x86_64 2/76 Installing : 1:pkgconfig-0.27.1-4.amzn2.0.2.x86_64 3/76 Installing : boost-system-1.53.0-27.amzn2.0.5.x86_64 4/76 Installing : apr-1.7.2-1.amzn2.x86_64 5/76 Installing : apr-util-bdb-1.6.3-1.amzn2.0.1.x86_64 6/76 Installing : apr-util-1.6.3-1.amzn2.0.1.x86_64 7/76 Installing : zip-3.0-11.amzn2.0.2.x86_64 8/76 Installing : avahi-libs-0.6.31-20.amzn2.0.2.x86_64 9/76 Installing : xz-5.2.2-1.amzn2.0.3.x86_64 10/76 Installing : unzip-6.0-57.amzn2.0.1.x86_64 11/76 Installing : libcroco-0.6.12-6.amzn2.x86_64 12/76 Installing : gettext-libs-0.19.8.1-3.amzn2.x86_64 13/76 Installing : patch-2.7.1-12.amzn2.0.2.x86_64 14/76 Installing : perl-Thread-Queue-3.02-2.amzn2.noarch 15/76 Installing : gettext-0.19.8.1-3.amzn2.x86_64 16/76 Installing : boost-thread-1.53.0-27.amzn2.0.5.x86_64 17/76 Installing : zlib-devel-1.2.7-19.amzn2.0.3.x86_64 18/76 Installing : elfutils-libelf-devel-0.176-2.amzn2.0.2.x86_64 19/76 Installing : gdb-8.0.1-36.amzn2.0.1.x86_64 20/76 Installing : file-5.11-36.amzn2.0.1.x86_64 21/76 Installing : libmodman-2.0.1-8.amzn2.0.2.x86_64 22/76 Installing : libproxy-0.4.11-10.amzn2.0.3.x86_64 23/76 Installing : perl-XML-Parser-2.41-10.amzn2.0.2.x86_64 24/76 Installing : bzip2-1.0.6-13.amzn2.0.3.x86_64 25/76 Installing : gettext-common-devel-0.19.8.1-3.amzn2.noarch 26/76 Installing : gettext-devel-0.19.8.1-3.amzn2.x86_64 27/76 Installing : dwz-0.11-3.amzn2.0.3.x86_64 28/76 Installing : systemd-sysv-219-78.amzn2.0.22.x86_64 29/76 Installing : 1:make-3.82-24.amzn2.x86_64 30/76 Installing : elfutils-0.176-2.amzn2.0.2.x86_64 31/76 Installing : 1:emacs-filesystem-27.2-4.amzn2.0.4.noarch 32/76 Installing : efivar-libs-31-4.amzn2.0.4.x86_64 33/76 Installing : 1:mokutil-0.3.0-10.amzn2.0.1.x86_64 34/76 Installing : perl-srpm-macros-1-8.amzn2.0.1.noarch 35/76 Installing : go-srpm-macros-3.0.15-23.amzn2.0.2.noarch 36/76 Installing : system-rpm-config-9.1.0-76.amzn2.0.14.noarch 37/76 Installing : perl-Data-Dumper-2.145-3.amzn2.0.2.x86_64 38/76 Installing : autoconf-2.69-11.amzn2.noarch 39/76 Installing : trousers-0.3.14-2.amzn2.0.2.x86_64 40/76 Installing : json-c-0.11-4.amzn2.0.4.x86_64 41/76 Installing : perl-Test-Harness-3.28-3.amzn2.noarch 42/76 Installing : automake-1.13.4-3.1.amzn2.noarch 43/76 Installing : libgfortran-7.3.1-17.amzn2.x86_64 44/76 Installing : libdwarf-20130207-4.amzn2.0.2.x86_64 45/76 Installing : pakchois-0.4-10.amzn2.0.2.x86_64 46/76 Installing : nettle-2.7.1-9.amzn2.x86_64 47/76 Installing : gnutls-3.3.29-9.amzn2.0.1.x86_64 48/76 Installing : neon-0.30.0-3.amzn2.0.2.x86_64 49/76 Installing : subversion-libs-1.7.14-16.amzn2.0.1.x86_64 50/76 Installing : 1:hardlink-1.3-3.amzn2.x86_64 51/76 Installing : kernel-devel-4.14.327-246.539.amzn2.x86_64 52/76 Installing : systemtap-devel-4.5-1.amzn2.0.1.x86_64 53/76 Installing : boost-date-time-1.53.0-27.amzn2.0.5.x86_64 54/76 Installing : dyninst-9.3.1-3.amzn2.x86_64 55/76 Installing : systemtap-runtime-4.5-1.amzn2.0.1.x86_64 56/76 Installing : systemtap-client-4.5-1.amzn2.0.1.x86_64 57/76 Installing : systemtap-4.5-1.amzn2.0.1.x86_64 58/76 Installing : subversion-1.7.14-16.amzn2.0.1.x86_64 59/76 Installing : gcc-gfortran-7.3.1-17.amzn2.x86_64 60/76 Installing : intltool-0.50.2-7.amzn2.noarch 61/76 Installing : libtool-2.4.2-22.2.amzn2.0.2.x86_64 62/76 Installing : rpm-build-4.11.3-48.amzn2.0.3.x86_64 63/76 Installing : cscope-15.8-10.amzn2.0.2.x86_64 64/76 Installing : flex-2.5.37-3.amzn2.0.3.x86_64 65/76 Installing : bison-3.0.4-6.amzn2.0.2.x86_64 66/76 Installing : rpm-sign-4.11.3-48.amzn2.0.3.x86_64 67/76 Installing : patchutils-0.3.3-4.amzn2.0.1.x86_64 68/76 Installing : rcs-5.9.0-5.amzn2.0.2.x86_64 69/76 Installing : indent-2.2.11-13.amzn2.0.2.x86_64 70/76 Installing : 1:doxygen-1.8.5-4.amzn2.x86_64 71/76 Installing : diffstat-1.57-4.amzn2.0.2.x86_64 72/76 Installing : byacc-1.9.20130304-3.amzn2.0.2.x86_64 73/76 Installing : swig-3.0.12-11.amzn2.0.3.x86_64 74/76 Installing : ctags-5.8-13.amzn2.0.2.x86_64 75/76 Cleanup : zlib-1.2.7-19.amzn2.0.2.x86_64 76/76 Verifying : zlib-1.2.7-19.amzn2.0.3.x86_64 1/76 Verifying : perl-Thread-Queue-3.02-2.amzn2.noarch 2/76 Verifying : gettext-devel-0.19.8.1-3.amzn2.x86_64 3/76 Verifying : patch-2.7.1-12.amzn2.0.2.x86_64 4/76 Verifying : boost-date-time-1.53.0-27.amzn2.0.5.x86_64 5/76 Verifying : flex-2.5.37-3.amzn2.0.3.x86_64 6/76 Verifying : apr-1.7.2-1.amzn2.x86_64 7/76 Verifying : 1:hardlink-1.3-3.amzn2.x86_64 8/76 Verifying : nettle-2.7.1-9.amzn2.x86_64 9/76 Verifying : gcc-gfortran-7.3.1-17.amzn2.x86_64 10/76 Verifying : ctags-5.8-13.amzn2.0.2.x86_64 11/76 Verifying : swig-3.0.12-11.amzn2.0.3.x86_64 12/76 Verifying : byacc-1.9.20130304-3.amzn2.0.2.x86_64 13/76 Verifying : libcroco-0.6.12-6.amzn2.x86_64 14/76 Verifying : pakchois-0.4-10.amzn2.0.2.x86_64 15/76 Verifying : libdwarf-20130207-4.amzn2.0.2.x86_64 16/76 Verifying : kernel-devel-4.14.327-246.539.amzn2.x86_64 17/76 Verifying : dyninst-9.3.1-3.amzn2.x86_64 18/76 Verifying : gettext-libs-0.19.8.1-3.amzn2.x86_64 19/76 Verifying : cscope-15.8-10.amzn2.0.2.x86_64 20/76 Verifying : unzip-6.0-57.amzn2.0.1.x86_64 21/76 Verifying : diffstat-1.57-4.amzn2.0.2.x86_64 22/76 Verifying : 1:doxygen-1.8.5-4.amzn2.x86_64 23/76 Verifying : 1:mokutil-0.3.0-10.amzn2.0.1.x86_64 24/76 Verifying : system-rpm-config-9.1.0-76.amzn2.0.14.noarch 25/76 Verifying : systemtap-devel-4.5-1.amzn2.0.1.x86_64 26/76 Verifying : libgfortran-7.3.1-17.amzn2.x86_64 27/76 Verifying : gettext-0.19.8.1-3.amzn2.x86_64 28/76 Verifying : perl-Test-Harness-3.28-3.amzn2.noarch 29/76 Verifying : autoconf-2.69-11.amzn2.noarch 30/76 Verifying : intltool-0.50.2-7.amzn2.noarch 31/76 Verifying : zlib-devel-1.2.7-19.amzn2.0.3.x86_64 32/76 Verifying : apr-util-1.6.3-1.amzn2.0.1.x86_64 33/76 Verifying : libproxy-0.4.11-10.amzn2.0.3.x86_64 34/76 Verifying : boost-system-1.53.0-27.amzn2.0.5.x86_64 35/76 Verifying : json-c-0.11-4.amzn2.0.4.x86_64 36/76 Verifying : trousers-0.3.14-2.amzn2.0.2.x86_64 37/76 Verifying : xz-5.2.2-1.amzn2.0.3.x86_64 38/76 Verifying : perl-Data-Dumper-2.145-3.amzn2.0.2.x86_64 39/76 Verifying : perl-srpm-macros-1-8.amzn2.0.1.noarch 40/76 Verifying : gnutls-3.3.29-9.amzn2.0.1.x86_64 41/76 Verifying : subversion-libs-1.7.14-16.amzn2.0.1.x86_64 42/76 Verifying : automake-1.13.4-3.1.amzn2.noarch 43/76 Verifying : rpm-sign-4.11.3-48.amzn2.0.3.x86_64 44/76 Verifying : bison-3.0.4-6.amzn2.0.2.x86_64 45/76 Verifying : efivar-libs-31-4.amzn2.0.4.x86_64 46/76 Verifying : 1:pkgconfig-0.27.1-4.amzn2.0.2.x86_64 47/76 Verifying : 1:emacs-filesystem-27.2-4.amzn2.0.4.noarch 48/76 Verifying : gdb-8.0.1-36.amzn2.0.1.x86_64 49/76 Verifying : elfutils-0.176-2.amzn2.0.2.x86_64 50/76 Verifying : go-srpm-macros-3.0.15-23.amzn2.0.2.noarch 51/76 Verifying : libtool-2.4.2-22.2.amzn2.0.2.x86_64 52/76 Verifying : indent-2.2.11-13.amzn2.0.2.x86_64 53/76 Verifying : subversion-1.7.14-16.amzn2.0.1.x86_64 54/76 Verifying : 1:make-3.82-24.amzn2.x86_64 55/76 Verifying : avahi-libs-0.6.31-20.amzn2.0.2.x86_64 56/76 Verifying : systemd-sysv-219-78.amzn2.0.22.x86_64 57/76 Verifying : apr-util-bdb-1.6.3-1.amzn2.0.1.x86_64 58/76 Verifying : neon-0.30.0-3.amzn2.0.2.x86_64 59/76 Verifying : systemtap-4.5-1.amzn2.0.1.x86_64 60/76 Verifying : dwz-0.11-3.amzn2.0.3.x86_64 61/76 Verifying : gettext-common-devel-0.19.8.1-3.amzn2.noarch 62/76 Verifying : systemtap-client-4.5-1.amzn2.0.1.x86_64 63/76 Verifying : zip-3.0-11.amzn2.0.2.x86_64 64/76 Verifying : bzip2-1.0.6-13.amzn2.0.3.x86_64 65/76 Verifying : rcs-5.9.0-5.amzn2.0.2.x86_64 66/76 Verifying : boost-thread-1.53.0-27.amzn2.0.5.x86_64 67/76 Verifying : file-5.11-36.amzn2.0.1.x86_64 68/76 Verifying : rpm-build-4.11.3-48.amzn2.0.3.x86_64 69/76 Verifying : patchutils-0.3.3-4.amzn2.0.1.x86_64 70/76 Verifying : systemtap-runtime-4.5-1.amzn2.0.1.x86_64 71/76 Verifying : elfutils-libelf-devel-0.176-2.amzn2.0.2.x86_64 72/76 Verifying : m4-1.4.16-10.amzn2.0.2.x86_64 73/76 Verifying : perl-XML-Parser-2.41-10.amzn2.0.2.x86_64 74/76 Verifying : libmodman-2.0.1-8.amzn2.0.2.x86_64 75/76 Verifying : zlib-1.2.7-19.amzn2.0.2.x86_64 76/76 Installed: autoconf.noarch 0:2.69-11.amzn2 automake.noarch 0:1.13.4-3.1.amzn2 bison.x86_64 0:3.0.4-6.amzn2.0.2 byacc.x86_64 0:1.9.20130304-3.amzn2.0.2 cscope.x86_64 0:15.8-10.amzn2.0.2 ctags.x86_64 0:5.8-13.amzn2.0.2 diffstat.x86_64 0:1.57-4.amzn2.0.2 doxygen.x86_64 1:1.8.5-4.amzn2 elfutils.x86_64 0:0.176-2.amzn2.0.2 flex.x86_64 0:2.5.37-3.amzn2.0.3 gcc-gfortran.x86_64 0:7.3.1-17.amzn2 gettext.x86_64 0:0.19.8.1-3.amzn2 indent.x86_64 0:2.2.11-13.amzn2.0.2 intltool.noarch 0:0.50.2-7.amzn2 libtool.x86_64 0:2.4.2-22.2.amzn2.0.2 make.x86_64 1:3.82-24.amzn2 patch.x86_64 0:2.7.1-12.amzn2.0.2 patchutils.x86_64 0:0.3.3-4.amzn2.0.1 pkgconfig.x86_64 1:0.27.1-4.amzn2.0.2 rcs.x86_64 0:5.9.0-5.amzn2.0.2 rpm-build.x86_64 0:4.11.3-48.amzn2.0.3 rpm-sign.x86_64 0:4.11.3-48.amzn2.0.3 subversion.x86_64 0:1.7.14-16.amzn2.0.1 swig.x86_64 0:3.0.12-11.amzn2.0.3 system-rpm-config.noarch 0:9.1.0-76.amzn2.0.14 systemtap.x86_64 0:4.5-1.amzn2.0.1 Dependency Installed: apr.x86_64 0:1.7.2-1.amzn2 apr-util.x86_64 0:1.6.3-1.amzn2.0.1 apr-util-bdb.x86_64 0:1.6.3-1.amzn2.0.1 avahi-libs.x86_64 0:0.6.31-20.amzn2.0.2 boost-date-time.x86_64 0:1.53.0-27.amzn2.0.5 boost-system.x86_64 0:1.53.0-27.amzn2.0.5 boost-thread.x86_64 0:1.53.0-27.amzn2.0.5 bzip2.x86_64 0:1.0.6-13.amzn2.0.3 dwz.x86_64 0:0.11-3.amzn2.0.3 dyninst.x86_64 0:9.3.1-3.amzn2 efivar-libs.x86_64 0:31-4.amzn2.0.4 elfutils-libelf-devel.x86_64 0:0.176-2.amzn2.0.2 emacs-filesystem.noarch 1:27.2-4.amzn2.0.4 file.x86_64 0:5.11-36.amzn2.0.1 gdb.x86_64 0:8.0.1-36.amzn2.0.1 gettext-common-devel.noarch 0:0.19.8.1-3.amzn2 gettext-devel.x86_64 0:0.19.8.1-3.amzn2 gettext-libs.x86_64 0:0.19.8.1-3.amzn2 gnutls.x86_64 0:3.3.29-9.amzn2.0.1 go-srpm-macros.noarch 0:3.0.15-23.amzn2.0.2 hardlink.x86_64 1:1.3-3.amzn2 json-c.x86_64 0:0.11-4.amzn2.0.4 kernel-devel.x86_64 0:4.14.327-246.539.amzn2 libcroco.x86_64 0:0.6.12-6.amzn2 libdwarf.x86_64 0:20130207-4.amzn2.0.2 libgfortran.x86_64 0:7.3.1-17.amzn2 libmodman.x86_64 0:2.0.1-8.amzn2.0.2 libproxy.x86_64 0:0.4.11-10.amzn2.0.3 m4.x86_64 0:1.4.16-10.amzn2.0.2 mokutil.x86_64 1:0.3.0-10.amzn2.0.1 neon.x86_64 0:0.30.0-3.amzn2.0.2 nettle.x86_64 0:2.7.1-9.amzn2 pakchois.x86_64 0:0.4-10.amzn2.0.2 perl-Data-Dumper.x86_64 0:2.145-3.amzn2.0.2 perl-Test-Harness.noarch 0:3.28-3.amzn2 perl-Thread-Queue.noarch 0:3.02-2.amzn2 perl-XML-Parser.x86_64 0:2.41-10.amzn2.0.2 perl-srpm-macros.noarch 0:1-8.amzn2.0.1 subversion-libs.x86_64 0:1.7.14-16.amzn2.0.1 systemd-sysv.x86_64 0:219-78.amzn2.0.22 systemtap-client.x86_64 0:4.5-1.amzn2.0.1 systemtap-devel.x86_64 0:4.5-1.amzn2.0.1 systemtap-runtime.x86_64 0:4.5-1.amzn2.0.1 trousers.x86_64 0:0.3.14-2.amzn2.0.2 unzip.x86_64 0:6.0-57.amzn2.0.1 xz.x86_64 0:5.2.2-1.amzn2.0.3 zip.x86_64 0:3.0-11.amzn2.0.2 zlib-devel.x86_64 0:1.2.7-19.amzn2.0.3 Dependency Updated: zlib.x86_64 0:1.2.7-19.amzn2.0.3 Complete!% ```
ashvardanian commented 1 year ago

@jlarmstrongiv are you by any chance on our Discord? I believe it would be faster to setup a quick call and fix this together 🤗