diff --git a/.gitignore b/.gitignore index 48b7a9c4..e0923b07 100644 --- a/.gitignore +++ b/.gitignore @@ -5,4 +5,6 @@ out .DS_Store -crow_out \ No newline at end of file +crow_out + +*bck \ No newline at end of file diff --git a/benchmark_programs/libsodium/Makefile.am b/benchmark_programs/libsodium/Makefile.am new file mode 100644 index 00000000..2fd7ebbd --- /dev/null +++ b/benchmark_programs/libsodium/Makefile.am @@ -0,0 +1,295 @@ +lib_LTLIBRARIES = \ + libsodium.la + +libsodium_la_SOURCES = \ + crypto_aead/aegis256/aead_aegis256.c \ + crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c \ + crypto_aead/xchacha20poly1305/sodium/aead_xchacha20poly1305.c \ + crypto_auth/crypto_auth.c \ + crypto_auth/hmacsha256/auth_hmacsha256.c \ + crypto_auth/hmacsha512/auth_hmacsha512.c \ + crypto_auth/hmacsha512256/auth_hmacsha512256.c \ + crypto_box/crypto_box.c \ + crypto_box/crypto_box_easy.c \ + crypto_box/crypto_box_seal.c \ + crypto_box/curve25519xsalsa20poly1305/box_curve25519xsalsa20poly1305.c \ + crypto_core/ed25519/ref10/ed25519_ref10.c \ + crypto_core/hchacha20/core_hchacha20.c \ + crypto_core/hsalsa20/ref2/core_hsalsa20_ref2.c \ + crypto_core/hsalsa20/core_hsalsa20.c \ + crypto_core/salsa/ref/core_salsa_ref.c \ + crypto_generichash/crypto_generichash.c \ + crypto_generichash/blake2b/generichash_blake2.c \ + crypto_generichash/blake2b/ref/blake2.h \ + crypto_generichash/blake2b/ref/blake2b-compress-ref.c \ + crypto_generichash/blake2b/ref/blake2b-load-sse2.h \ + crypto_generichash/blake2b/ref/blake2b-load-sse41.h \ + crypto_generichash/blake2b/ref/blake2b-load-avx2.h \ + crypto_generichash/blake2b/ref/blake2b-ref.c \ + crypto_generichash/blake2b/ref/generichash_blake2b.c \ + crypto_hash/crypto_hash.c \ + crypto_hash/sha256/hash_sha256.c \ + crypto_hash/sha256/cp/hash_sha256_cp.c \ + crypto_hash/sha512/hash_sha512.c \ + crypto_hash/sha512/cp/hash_sha512_cp.c \ + crypto_kdf/blake2b/kdf_blake2b.c \ + crypto_kdf/crypto_kdf.c \ + crypto_kx/crypto_kx.c \ + crypto_onetimeauth/crypto_onetimeauth.c \ + crypto_onetimeauth/poly1305/onetimeauth_poly1305.c \ + crypto_onetimeauth/poly1305/onetimeauth_poly1305.h \ + crypto_onetimeauth/poly1305/donna/poly1305_donna.h \ + crypto_onetimeauth/poly1305/donna/poly1305_donna32.h \ + crypto_onetimeauth/poly1305/donna/poly1305_donna64.h \ + crypto_onetimeauth/poly1305/donna/poly1305_donna.c \ + crypto_pwhash/argon2/argon2-core.c \ + crypto_pwhash/argon2/argon2-core.h \ + crypto_pwhash/argon2/argon2-encoding.c \ + crypto_pwhash/argon2/argon2-encoding.h \ + crypto_pwhash/argon2/argon2-fill-block-ref.c \ + crypto_pwhash/argon2/argon2.c \ + crypto_pwhash/argon2/argon2.h \ + crypto_pwhash/argon2/blake2b-long.c \ + crypto_pwhash/argon2/blake2b-long.h \ + crypto_pwhash/argon2/blamka-round-ref.h \ + crypto_pwhash/argon2/pwhash_argon2i.c \ + crypto_pwhash/argon2/pwhash_argon2id.c \ + crypto_pwhash/crypto_pwhash.c \ + crypto_scalarmult/crypto_scalarmult.c \ + crypto_scalarmult/curve25519/ref10/x25519_ref10.c \ + crypto_scalarmult/curve25519/ref10/x25519_ref10.h \ + crypto_scalarmult/curve25519/scalarmult_curve25519.c \ + crypto_scalarmult/curve25519/scalarmult_curve25519.h \ + crypto_secretbox/crypto_secretbox.c \ + crypto_secretbox/crypto_secretbox_easy.c \ + crypto_secretbox/xsalsa20poly1305/secretbox_xsalsa20poly1305.c \ + crypto_secretstream/xchacha20poly1305/secretstream_xchacha20poly1305.c \ + crypto_shorthash/crypto_shorthash.c \ + crypto_shorthash/siphash24/shorthash_siphash24.c \ + crypto_shorthash/siphash24/ref/shorthash_siphash24_ref.c \ + crypto_shorthash/siphash24/ref/shorthash_siphash_ref.h \ + crypto_sign/crypto_sign.c \ + crypto_sign/ed25519/sign_ed25519.c \ + crypto_sign/ed25519/ref10/keypair.c \ + crypto_sign/ed25519/ref10/open.c \ + crypto_sign/ed25519/ref10/sign.c \ + crypto_sign/ed25519/ref10/sign_ed25519_ref10.h \ + crypto_stream/chacha20/stream_chacha20.c \ + crypto_stream/chacha20/stream_chacha20.h \ + crypto_stream/chacha20/ref/chacha20_ref.h \ + crypto_stream/chacha20/ref/chacha20_ref.c \ + crypto_stream/crypto_stream.c \ + crypto_stream/salsa20/stream_salsa20.c \ + crypto_stream/salsa20/stream_salsa20.h \ + crypto_stream/xsalsa20/stream_xsalsa20.c \ + crypto_verify/sodium/verify.c \ + include/sodium/private/chacha20_ietf_ext.h \ + include/sodium/private/common.h \ + include/sodium/private/ed25519_ref10.h \ + include/sodium/private/implementations.h \ + include/sodium/private/mutex.h \ + include/sodium/private/sse2_64_32.h \ + include/sodium/private/quirks.h \ + randombytes/randombytes.c \ + sodium/codecs.c \ + sodium/core.c \ + sodium/runtime.c \ + sodium/utils.c \ + sodium/version.c + +if HAVE_TI_MODE +libsodium_la_SOURCES += \ + crypto_core/ed25519/ref10/fe_51/base.h \ + crypto_core/ed25519/ref10/fe_51/base2.h \ + crypto_core/ed25519/ref10/fe_51/constants.h \ + crypto_core/ed25519/ref10/fe_51/fe.h \ + include/sodium/private/ed25519_ref10_fe_51.h +else +libsodium_la_SOURCES += \ + crypto_core/ed25519/ref10/fe_25_5/base.h \ + crypto_core/ed25519/ref10/fe_25_5/base2.h \ + crypto_core/ed25519/ref10/fe_25_5/constants.h \ + crypto_core/ed25519/ref10/fe_25_5/fe.h \ + include/sodium/private/ed25519_ref10_fe_25_5.h +endif + +if HAVE_AMD64_ASM +libsodium_la_SOURCES += \ + crypto_stream/salsa20/xmm6/salsa20_xmm6-asm.S \ + crypto_stream/salsa20/xmm6/salsa20_xmm6.c \ + crypto_stream/salsa20/xmm6/salsa20_xmm6.h \ + crypto_stream/salsa20/xmm6/salsa20_xmm6-asm_namespace.h +else +libsodium_la_SOURCES += \ + crypto_stream/salsa20/ref/salsa20_ref.c \ + crypto_stream/salsa20/ref/salsa20_ref.h +endif + +noinst_HEADERS = \ + crypto_scalarmult/curve25519/sandy2x/consts.S \ + crypto_scalarmult/curve25519/sandy2x/fe51_mul.S \ + crypto_scalarmult/curve25519/sandy2x/fe51_nsquare.S \ + crypto_scalarmult/curve25519/sandy2x/fe51_pack.S \ + crypto_scalarmult/curve25519/sandy2x/ladder.S + +if HAVE_AVX_ASM +libsodium_la_SOURCES += \ + crypto_scalarmult/curve25519/sandy2x/consts_namespace.h \ + crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.c \ + crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.h \ + crypto_scalarmult/curve25519/sandy2x/fe.h \ + crypto_scalarmult/curve25519/sandy2x/fe51.h \ + crypto_scalarmult/curve25519/sandy2x/fe51_invert.c \ + crypto_scalarmult/curve25519/sandy2x/fe51_namespace.h \ + crypto_scalarmult/curve25519/sandy2x/fe_frombytes_sandy2x.c \ + crypto_scalarmult/curve25519/sandy2x/ladder.h \ + crypto_scalarmult/curve25519/sandy2x/ladder_namespace.h \ + crypto_scalarmult/curve25519/sandy2x/sandy2x.S +endif + +if !MINIMAL +libsodium_la_SOURCES += \ + crypto_box/curve25519xchacha20poly1305/box_curve25519xchacha20poly1305.c \ + crypto_box/curve25519xchacha20poly1305/box_seal_curve25519xchacha20poly1305.c \ + crypto_core/ed25519/core_ed25519.c \ + crypto_core/ed25519/core_ristretto255.c \ + crypto_kdf/hkdf/kdf_hkdf_sha256.c \ + crypto_kdf/hkdf/kdf_hkdf_sha512.c \ + crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c \ + crypto_pwhash/scryptsalsa208sha256/crypto_scrypt.h \ + crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c \ + crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.c \ + crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.h \ + crypto_pwhash/scryptsalsa208sha256/pwhash_scryptsalsa208sha256.c \ + crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c \ + crypto_scalarmult/ed25519/ref10/scalarmult_ed25519_ref10.c \ + crypto_scalarmult/ristretto255/ref10/scalarmult_ristretto255_ref10.c \ + crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c \ + crypto_shorthash/siphash24/shorthash_siphashx24.c \ + crypto_shorthash/siphash24/ref/shorthash_siphashx24_ref.c \ + crypto_stream/salsa2012/ref/stream_salsa2012_ref.c \ + crypto_stream/salsa2012/stream_salsa2012.c \ + crypto_stream/salsa208/ref/stream_salsa208_ref.c \ + crypto_stream/salsa208/stream_salsa208.c \ + crypto_stream/xchacha20/stream_xchacha20.c +endif + +randombytes_internal_randombytes_internal_random_CFLAGS = @CFLAGS_RDRAND@ + +libsodium_la_LDFLAGS = \ + $(AM_LDFLAGS) \ + -export-dynamic \ + -no-undefined \ + $(LIBTOOL_EXTRA_FLAGS) + +libsodium_la_CPPFLAGS = \ + $(LTDLINCL) \ + -I$(srcdir)/include/sodium \ + -I$(builddir)/include/sodium + +if HAVE_LD_OUTPUT_DEF +libsodium_la_LDFLAGS += -Wl,--output-def,libsodium-$(DLL_VERSION).def +defexecdir = $(bindir) +defexec_DATA = libsodium-$(DLL_VERSION).def +CLEANFILES = $(defexec_DATA) +libsodium-$(DLL_VERSION).def: libsodium.la +endif + +SUBDIRS = \ + include + +libsodium_la_LIBADD = libaesni.la libarmcrypto.la libsse2.la libssse3.la libsse41.la libavx2.la libavx512f.la +noinst_LTLIBRARIES = libaesni.la libarmcrypto.la libsse2.la libssse3.la libsse41.la libavx2.la libavx512f.la + +librdrand_la_LDFLAGS = $(libsodium_la_LDFLAGS) +librdrand_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \ + @CFLAGS_RDRAND@ +librdrand_la_SOURCES = \ + randombytes/internal/randombytes_internal_random.c + +if !EMSCRIPTEN +libsodium_la_LIBADD += librdrand.la +noinst_LTLIBRARIES += librdrand.la + +libsodium_la_SOURCES += \ + randombytes/sysrandom/randombytes_sysrandom.c +endif + +libarmcrypto_la_LDFLAGS = $(libsodium_la_LDFLAGS) +libarmcrypto_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \ + @CFLAGS_ARMCRYPTO@ +libarmcrypto_la_SOURCES = \ + crypto_aead/aegis256/armcrypto/aead_aegis256_armcrypto.c + +libaesni_la_LDFLAGS = $(libsodium_la_LDFLAGS) +libaesni_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \ + @CFLAGS_SSE2@ @CFLAGS_SSSE3@ @CFLAGS_AESNI@ @CFLAGS_PCLMUL@ +libaesni_la_SOURCES = \ + crypto_aead/aes256gcm/aesni/aead_aes256gcm_aesni.c \ + crypto_aead/aegis256/aesni/aead_aegis256_aesni.c + +libsse2_la_LDFLAGS = $(libsodium_la_LDFLAGS) +libsse2_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \ + @CFLAGS_SSE2@ +libsse2_la_SOURCES = \ + crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c \ + crypto_onetimeauth/poly1305/sse2/poly1305_sse2.h +if !MINIMAL +libsse2_la_SOURCES += \ + crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c +endif + +if !HAVE_AMD64_ASM +libsse2_la_SOURCES += \ + crypto_stream/salsa20/xmm6int/salsa20_xmm6int-sse2.c \ + crypto_stream/salsa20/xmm6int/salsa20_xmm6int-sse2.h \ + crypto_stream/salsa20/xmm6int/u0.h \ + crypto_stream/salsa20/xmm6int/u1.h \ + crypto_stream/salsa20/xmm6int/u4.h +endif + +libssse3_la_LDFLAGS = $(libsodium_la_LDFLAGS) +libssse3_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \ + @CFLAGS_SSE2@ @CFLAGS_SSSE3@ +libssse3_la_SOURCES = \ + crypto_generichash/blake2b/ref/blake2b-compress-ssse3.c \ + crypto_generichash/blake2b/ref/blake2b-compress-ssse3.h \ + crypto_pwhash/argon2/argon2-fill-block-ssse3.c \ + crypto_pwhash/argon2/blamka-round-ssse3.h \ + crypto_stream/chacha20/dolbeau/chacha20_dolbeau-ssse3.c \ + crypto_stream/chacha20/dolbeau/chacha20_dolbeau-ssse3.h \ + crypto_stream/chacha20/dolbeau/u0.h \ + crypto_stream/chacha20/dolbeau/u1.h \ + crypto_stream/chacha20/dolbeau/u4.h + +libsse41_la_LDFLAGS = $(libsodium_la_LDFLAGS) +libsse41_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \ + @CFLAGS_SSE2@ @CFLAGS_SSSE3@ @CFLAGS_SSE41@ +libsse41_la_SOURCES = \ + crypto_generichash/blake2b/ref/blake2b-compress-sse41.c \ + crypto_generichash/blake2b/ref/blake2b-compress-sse41.h + +libavx2_la_LDFLAGS = $(libsodium_la_LDFLAGS) +libavx2_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \ + @CFLAGS_SSE2@ @CFLAGS_SSSE3@ @CFLAGS_SSE41@ @CFLAGS_AVX@ @CFLAGS_AVX2@ +libavx2_la_SOURCES = \ + crypto_generichash/blake2b/ref/blake2b-compress-avx2.c \ + crypto_generichash/blake2b/ref/blake2b-compress-avx2.h \ + crypto_pwhash/argon2/argon2-fill-block-avx2.c \ + crypto_pwhash/argon2/blamka-round-avx2.h \ + crypto_stream/chacha20/dolbeau/chacha20_dolbeau-avx2.c \ + crypto_stream/chacha20/dolbeau/chacha20_dolbeau-avx2.h \ + crypto_stream/chacha20/dolbeau/u8.h \ + crypto_stream/salsa20/xmm6int/salsa20_xmm6int-avx2.c \ + crypto_stream/salsa20/xmm6int/salsa20_xmm6int-avx2.h \ + crypto_stream/salsa20/xmm6int/u0.h \ + crypto_stream/salsa20/xmm6int/u1.h \ + crypto_stream/salsa20/xmm6int/u4.h \ + crypto_stream/salsa20/xmm6int/u8.h + +libavx512f_la_LDFLAGS = $(libsodium_la_LDFLAGS) +libavx512f_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \ + @CFLAGS_SSE2@ @CFLAGS_SSSE3@ @CFLAGS_SSE41@ @CFLAGS_AVX@ @CFLAGS_AVX2@ @CFLAGS_AVX512F@ +libavx512f_la_SOURCES = \ + crypto_pwhash/argon2/argon2-fill-block-avx512f.c \ + crypto_pwhash/argon2/blamka-round-avx512f.h diff --git a/benchmark_programs/libsodium/Makefile.in b/benchmark_programs/libsodium/Makefile.in new file mode 100644 index 00000000..93efc23b --- /dev/null +++ b/benchmark_programs/libsodium/Makefile.in @@ -0,0 +1,3538 @@ +# Makefile.in generated by automake 1.15.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2017 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + + + +VPATH = @srcdir@ +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +@HAVE_TI_MODE_TRUE@am__append_1 = \ +@HAVE_TI_MODE_TRUE@ crypto_core/ed25519/ref10/fe_51/base.h \ +@HAVE_TI_MODE_TRUE@ crypto_core/ed25519/ref10/fe_51/base2.h \ +@HAVE_TI_MODE_TRUE@ crypto_core/ed25519/ref10/fe_51/constants.h \ +@HAVE_TI_MODE_TRUE@ crypto_core/ed25519/ref10/fe_51/fe.h \ +@HAVE_TI_MODE_TRUE@ include/sodium/private/ed25519_ref10_fe_51.h + +@HAVE_TI_MODE_FALSE@am__append_2 = \ +@HAVE_TI_MODE_FALSE@ crypto_core/ed25519/ref10/fe_25_5/base.h \ +@HAVE_TI_MODE_FALSE@ crypto_core/ed25519/ref10/fe_25_5/base2.h \ +@HAVE_TI_MODE_FALSE@ crypto_core/ed25519/ref10/fe_25_5/constants.h \ +@HAVE_TI_MODE_FALSE@ crypto_core/ed25519/ref10/fe_25_5/fe.h \ +@HAVE_TI_MODE_FALSE@ include/sodium/private/ed25519_ref10_fe_25_5.h + +@HAVE_AMD64_ASM_TRUE@am__append_3 = \ +@HAVE_AMD64_ASM_TRUE@ crypto_stream/salsa20/xmm6/salsa20_xmm6-asm.S \ +@HAVE_AMD64_ASM_TRUE@ crypto_stream/salsa20/xmm6/salsa20_xmm6.c \ +@HAVE_AMD64_ASM_TRUE@ crypto_stream/salsa20/xmm6/salsa20_xmm6.h \ +@HAVE_AMD64_ASM_TRUE@ crypto_stream/salsa20/xmm6/salsa20_xmm6-asm_namespace.h + +@HAVE_AMD64_ASM_FALSE@am__append_4 = \ +@HAVE_AMD64_ASM_FALSE@ crypto_stream/salsa20/ref/salsa20_ref.c \ +@HAVE_AMD64_ASM_FALSE@ crypto_stream/salsa20/ref/salsa20_ref.h + +@HAVE_AVX_ASM_TRUE@am__append_5 = \ +@HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/consts_namespace.h \ +@HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.c \ +@HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.h \ +@HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/fe.h \ +@HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/fe51.h \ +@HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/fe51_invert.c \ +@HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/fe51_namespace.h \ +@HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/fe_frombytes_sandy2x.c \ +@HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/ladder.h \ +@HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/ladder_namespace.h \ +@HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/sandy2x.S + +@MINIMAL_FALSE@am__append_6 = \ +@MINIMAL_FALSE@ crypto_box/curve25519xchacha20poly1305/box_curve25519xchacha20poly1305.c \ +@MINIMAL_FALSE@ crypto_box/curve25519xchacha20poly1305/box_seal_curve25519xchacha20poly1305.c \ +@MINIMAL_FALSE@ crypto_core/ed25519/core_ed25519.c \ +@MINIMAL_FALSE@ crypto_core/ed25519/core_ristretto255.c \ +@MINIMAL_FALSE@ crypto_kdf/hkdf/kdf_hkdf_sha256.c \ +@MINIMAL_FALSE@ crypto_kdf/hkdf/kdf_hkdf_sha512.c \ +@MINIMAL_FALSE@ crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c \ +@MINIMAL_FALSE@ crypto_pwhash/scryptsalsa208sha256/crypto_scrypt.h \ +@MINIMAL_FALSE@ crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c \ +@MINIMAL_FALSE@ crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.c \ +@MINIMAL_FALSE@ crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.h \ +@MINIMAL_FALSE@ crypto_pwhash/scryptsalsa208sha256/pwhash_scryptsalsa208sha256.c \ +@MINIMAL_FALSE@ crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c \ +@MINIMAL_FALSE@ crypto_scalarmult/ed25519/ref10/scalarmult_ed25519_ref10.c \ +@MINIMAL_FALSE@ crypto_scalarmult/ristretto255/ref10/scalarmult_ristretto255_ref10.c \ +@MINIMAL_FALSE@ crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c \ +@MINIMAL_FALSE@ crypto_shorthash/siphash24/shorthash_siphashx24.c \ +@MINIMAL_FALSE@ crypto_shorthash/siphash24/ref/shorthash_siphashx24_ref.c \ +@MINIMAL_FALSE@ crypto_stream/salsa2012/ref/stream_salsa2012_ref.c \ +@MINIMAL_FALSE@ crypto_stream/salsa2012/stream_salsa2012.c \ +@MINIMAL_FALSE@ crypto_stream/salsa208/ref/stream_salsa208_ref.c \ +@MINIMAL_FALSE@ crypto_stream/salsa208/stream_salsa208.c \ +@MINIMAL_FALSE@ crypto_stream/xchacha20/stream_xchacha20.c + +@HAVE_LD_OUTPUT_DEF_TRUE@am__append_7 = -Wl,--output-def,libsodium-$(DLL_VERSION).def +@EMSCRIPTEN_FALSE@am__append_8 = librdrand.la +@EMSCRIPTEN_FALSE@am__append_9 = librdrand.la +@EMSCRIPTEN_FALSE@am__append_10 = \ +@EMSCRIPTEN_FALSE@ randombytes/sysrandom/randombytes_sysrandom.c + +@MINIMAL_FALSE@am__append_11 = \ +@MINIMAL_FALSE@ crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c + +@HAVE_AMD64_ASM_FALSE@am__append_12 = \ +@HAVE_AMD64_ASM_FALSE@ crypto_stream/salsa20/xmm6int/salsa20_xmm6int-sse2.c \ +@HAVE_AMD64_ASM_FALSE@ crypto_stream/salsa20/xmm6int/salsa20_xmm6int-sse2.h \ +@HAVE_AMD64_ASM_FALSE@ crypto_stream/salsa20/xmm6int/u0.h \ +@HAVE_AMD64_ASM_FALSE@ crypto_stream/salsa20/xmm6int/u1.h \ +@HAVE_AMD64_ASM_FALSE@ crypto_stream/salsa20/xmm6int/u4.h + +subdir = src/libsodium +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/ax_add_fortify_source.m4 \ + $(top_srcdir)/m4/ax_check_catchable_abrt.m4 \ + $(top_srcdir)/m4/ax_check_catchable_segv.m4 \ + $(top_srcdir)/m4/ax_check_compile_flag.m4 \ + $(top_srcdir)/m4/ax_check_define.m4 \ + $(top_srcdir)/m4/ax_check_link_flag.m4 \ + $(top_srcdir)/m4/ax_pthread.m4 $(top_srcdir)/m4/ax_tls.m4 \ + $(top_srcdir)/m4/ax_valgrind_check.m4 \ + $(top_srcdir)/m4/ld-output-def.m4 $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(noinst_HEADERS) \ + $(am__DIST_COMMON) +mkinstalldirs = $(install_sh) -d +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(defexecdir)" +LTLIBRARIES = $(lib_LTLIBRARIES) $(noinst_LTLIBRARIES) +libaesni_la_LIBADD = +am__dirstamp = $(am__leading_dot)dirstamp +am_libaesni_la_OBJECTS = crypto_aead/aes256gcm/aesni/libaesni_la-aead_aes256gcm_aesni.lo \ + crypto_aead/aegis256/aesni/libaesni_la-aead_aegis256_aesni.lo +libaesni_la_OBJECTS = $(am_libaesni_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +libaesni_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(libaesni_la_LDFLAGS) $(LDFLAGS) -o $@ +libarmcrypto_la_LIBADD = +am_libarmcrypto_la_OBJECTS = crypto_aead/aegis256/armcrypto/libarmcrypto_la-aead_aegis256_armcrypto.lo +libarmcrypto_la_OBJECTS = $(am_libarmcrypto_la_OBJECTS) +libarmcrypto_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ + $(AM_CFLAGS) $(CFLAGS) $(libarmcrypto_la_LDFLAGS) $(LDFLAGS) \ + -o $@ +libavx2_la_LIBADD = +am_libavx2_la_OBJECTS = crypto_generichash/blake2b/ref/libavx2_la-blake2b-compress-avx2.lo \ + crypto_pwhash/argon2/libavx2_la-argon2-fill-block-avx2.lo \ + crypto_stream/chacha20/dolbeau/libavx2_la-chacha20_dolbeau-avx2.lo \ + crypto_stream/salsa20/xmm6int/libavx2_la-salsa20_xmm6int-avx2.lo +libavx2_la_OBJECTS = $(am_libavx2_la_OBJECTS) +libavx2_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(libavx2_la_LDFLAGS) $(LDFLAGS) -o $@ +libavx512f_la_LIBADD = +am_libavx512f_la_OBJECTS = crypto_pwhash/argon2/libavx512f_la-argon2-fill-block-avx512f.lo +libavx512f_la_OBJECTS = $(am_libavx512f_la_OBJECTS) +libavx512f_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(libavx512f_la_LDFLAGS) $(LDFLAGS) -o $@ +librdrand_la_LIBADD = +am_librdrand_la_OBJECTS = randombytes/internal/librdrand_la-randombytes_internal_random.lo +librdrand_la_OBJECTS = $(am_librdrand_la_OBJECTS) +librdrand_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(librdrand_la_LDFLAGS) $(LDFLAGS) -o $@ +@EMSCRIPTEN_FALSE@am_librdrand_la_rpath = +libsodium_la_DEPENDENCIES = libaesni.la libarmcrypto.la libsse2.la \ + libssse3.la libsse41.la libavx2.la libavx512f.la \ + $(am__append_8) +am__libsodium_la_SOURCES_DIST = crypto_aead/aegis256/aead_aegis256.c \ + crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c \ + crypto_aead/xchacha20poly1305/sodium/aead_xchacha20poly1305.c \ + crypto_auth/crypto_auth.c \ + crypto_auth/hmacsha256/auth_hmacsha256.c \ + crypto_auth/hmacsha512/auth_hmacsha512.c \ + crypto_auth/hmacsha512256/auth_hmacsha512256.c \ + crypto_box/crypto_box.c crypto_box/crypto_box_easy.c \ + crypto_box/crypto_box_seal.c \ + crypto_box/curve25519xsalsa20poly1305/box_curve25519xsalsa20poly1305.c \ + crypto_core/ed25519/ref10/ed25519_ref10.c \ + crypto_core/hchacha20/core_hchacha20.c \ + crypto_core/hsalsa20/ref2/core_hsalsa20_ref2.c \ + crypto_core/hsalsa20/core_hsalsa20.c \ + crypto_core/salsa/ref/core_salsa_ref.c \ + crypto_generichash/crypto_generichash.c \ + crypto_generichash/blake2b/generichash_blake2.c \ + crypto_generichash/blake2b/ref/blake2.h \ + crypto_generichash/blake2b/ref/blake2b-compress-ref.c \ + crypto_generichash/blake2b/ref/blake2b-load-sse2.h \ + crypto_generichash/blake2b/ref/blake2b-load-sse41.h \ + crypto_generichash/blake2b/ref/blake2b-load-avx2.h \ + crypto_generichash/blake2b/ref/blake2b-ref.c \ + crypto_generichash/blake2b/ref/generichash_blake2b.c \ + crypto_hash/crypto_hash.c crypto_hash/sha256/hash_sha256.c \ + crypto_hash/sha256/cp/hash_sha256_cp.c \ + crypto_hash/sha512/hash_sha512.c \ + crypto_hash/sha512/cp/hash_sha512_cp.c \ + crypto_kdf/blake2b/kdf_blake2b.c crypto_kdf/crypto_kdf.c \ + crypto_kx/crypto_kx.c crypto_onetimeauth/crypto_onetimeauth.c \ + crypto_onetimeauth/poly1305/onetimeauth_poly1305.c \ + crypto_onetimeauth/poly1305/onetimeauth_poly1305.h \ + crypto_onetimeauth/poly1305/donna/poly1305_donna.h \ + crypto_onetimeauth/poly1305/donna/poly1305_donna32.h \ + crypto_onetimeauth/poly1305/donna/poly1305_donna64.h \ + crypto_onetimeauth/poly1305/donna/poly1305_donna.c \ + crypto_pwhash/argon2/argon2-core.c \ + crypto_pwhash/argon2/argon2-core.h \ + crypto_pwhash/argon2/argon2-encoding.c \ + crypto_pwhash/argon2/argon2-encoding.h \ + crypto_pwhash/argon2/argon2-fill-block-ref.c \ + crypto_pwhash/argon2/argon2.c crypto_pwhash/argon2/argon2.h \ + crypto_pwhash/argon2/blake2b-long.c \ + crypto_pwhash/argon2/blake2b-long.h \ + crypto_pwhash/argon2/blamka-round-ref.h \ + crypto_pwhash/argon2/pwhash_argon2i.c \ + crypto_pwhash/argon2/pwhash_argon2id.c \ + crypto_pwhash/crypto_pwhash.c \ + crypto_scalarmult/crypto_scalarmult.c \ + crypto_scalarmult/curve25519/ref10/x25519_ref10.c \ + crypto_scalarmult/curve25519/ref10/x25519_ref10.h \ + crypto_scalarmult/curve25519/scalarmult_curve25519.c \ + crypto_scalarmult/curve25519/scalarmult_curve25519.h \ + crypto_secretbox/crypto_secretbox.c \ + crypto_secretbox/crypto_secretbox_easy.c \ + crypto_secretbox/xsalsa20poly1305/secretbox_xsalsa20poly1305.c \ + crypto_secretstream/xchacha20poly1305/secretstream_xchacha20poly1305.c \ + crypto_shorthash/crypto_shorthash.c \ + crypto_shorthash/siphash24/shorthash_siphash24.c \ + crypto_shorthash/siphash24/ref/shorthash_siphash24_ref.c \ + crypto_shorthash/siphash24/ref/shorthash_siphash_ref.h \ + crypto_sign/crypto_sign.c crypto_sign/ed25519/sign_ed25519.c \ + crypto_sign/ed25519/ref10/keypair.c \ + crypto_sign/ed25519/ref10/open.c \ + crypto_sign/ed25519/ref10/sign.c \ + crypto_sign/ed25519/ref10/sign_ed25519_ref10.h \ + crypto_stream/chacha20/stream_chacha20.c \ + crypto_stream/chacha20/stream_chacha20.h \ + crypto_stream/chacha20/ref/chacha20_ref.h \ + crypto_stream/chacha20/ref/chacha20_ref.c \ + crypto_stream/crypto_stream.c \ + crypto_stream/salsa20/stream_salsa20.c \ + crypto_stream/salsa20/stream_salsa20.h \ + crypto_stream/xsalsa20/stream_xsalsa20.c \ + crypto_verify/sodium/verify.c \ + include/sodium/private/chacha20_ietf_ext.h \ + include/sodium/private/common.h \ + include/sodium/private/ed25519_ref10.h \ + include/sodium/private/implementations.h \ + include/sodium/private/mutex.h \ + include/sodium/private/sse2_64_32.h \ + include/sodium/private/quirks.h randombytes/randombytes.c \ + sodium/codecs.c sodium/core.c sodium/runtime.c sodium/utils.c \ + sodium/version.c crypto_core/ed25519/ref10/fe_51/base.h \ + crypto_core/ed25519/ref10/fe_51/base2.h \ + crypto_core/ed25519/ref10/fe_51/constants.h \ + crypto_core/ed25519/ref10/fe_51/fe.h \ + include/sodium/private/ed25519_ref10_fe_51.h \ + crypto_core/ed25519/ref10/fe_25_5/base.h \ + crypto_core/ed25519/ref10/fe_25_5/base2.h \ + crypto_core/ed25519/ref10/fe_25_5/constants.h \ + crypto_core/ed25519/ref10/fe_25_5/fe.h \ + include/sodium/private/ed25519_ref10_fe_25_5.h \ + crypto_stream/salsa20/xmm6/salsa20_xmm6-asm.S \ + crypto_stream/salsa20/xmm6/salsa20_xmm6.c \ + crypto_stream/salsa20/xmm6/salsa20_xmm6.h \ + crypto_stream/salsa20/xmm6/salsa20_xmm6-asm_namespace.h \ + crypto_stream/salsa20/ref/salsa20_ref.c \ + crypto_stream/salsa20/ref/salsa20_ref.h \ + crypto_scalarmult/curve25519/sandy2x/consts_namespace.h \ + crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.c \ + crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.h \ + crypto_scalarmult/curve25519/sandy2x/fe.h \ + crypto_scalarmult/curve25519/sandy2x/fe51.h \ + crypto_scalarmult/curve25519/sandy2x/fe51_invert.c \ + crypto_scalarmult/curve25519/sandy2x/fe51_namespace.h \ + crypto_scalarmult/curve25519/sandy2x/fe_frombytes_sandy2x.c \ + crypto_scalarmult/curve25519/sandy2x/ladder.h \ + crypto_scalarmult/curve25519/sandy2x/ladder_namespace.h \ + crypto_scalarmult/curve25519/sandy2x/sandy2x.S \ + crypto_box/curve25519xchacha20poly1305/box_curve25519xchacha20poly1305.c \ + crypto_box/curve25519xchacha20poly1305/box_seal_curve25519xchacha20poly1305.c \ + crypto_core/ed25519/core_ed25519.c \ + crypto_core/ed25519/core_ristretto255.c \ + crypto_kdf/hkdf/kdf_hkdf_sha256.c \ + crypto_kdf/hkdf/kdf_hkdf_sha512.c \ + crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c \ + crypto_pwhash/scryptsalsa208sha256/crypto_scrypt.h \ + crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c \ + crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.c \ + crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.h \ + crypto_pwhash/scryptsalsa208sha256/pwhash_scryptsalsa208sha256.c \ + crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c \ + crypto_scalarmult/ed25519/ref10/scalarmult_ed25519_ref10.c \ + crypto_scalarmult/ristretto255/ref10/scalarmult_ristretto255_ref10.c \ + crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c \ + crypto_shorthash/siphash24/shorthash_siphashx24.c \ + crypto_shorthash/siphash24/ref/shorthash_siphashx24_ref.c \ + crypto_stream/salsa2012/ref/stream_salsa2012_ref.c \ + crypto_stream/salsa2012/stream_salsa2012.c \ + crypto_stream/salsa208/ref/stream_salsa208_ref.c \ + crypto_stream/salsa208/stream_salsa208.c \ + crypto_stream/xchacha20/stream_xchacha20.c \ + randombytes/sysrandom/randombytes_sysrandom.c +am__objects_1 = +@HAVE_AMD64_ASM_TRUE@am__objects_2 = crypto_stream/salsa20/xmm6/libsodium_la-salsa20_xmm6-asm.lo \ +@HAVE_AMD64_ASM_TRUE@ crypto_stream/salsa20/xmm6/libsodium_la-salsa20_xmm6.lo +@HAVE_AMD64_ASM_FALSE@am__objects_3 = crypto_stream/salsa20/ref/libsodium_la-salsa20_ref.lo +@HAVE_AVX_ASM_TRUE@am__objects_4 = crypto_scalarmult/curve25519/sandy2x/libsodium_la-curve25519_sandy2x.lo \ +@HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/libsodium_la-fe51_invert.lo \ +@HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/libsodium_la-fe_frombytes_sandy2x.lo \ +@HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/libsodium_la-sandy2x.lo +@MINIMAL_FALSE@am__objects_5 = crypto_box/curve25519xchacha20poly1305/libsodium_la-box_curve25519xchacha20poly1305.lo \ +@MINIMAL_FALSE@ crypto_box/curve25519xchacha20poly1305/libsodium_la-box_seal_curve25519xchacha20poly1305.lo \ +@MINIMAL_FALSE@ crypto_core/ed25519/libsodium_la-core_ed25519.lo \ +@MINIMAL_FALSE@ crypto_core/ed25519/libsodium_la-core_ristretto255.lo \ +@MINIMAL_FALSE@ crypto_kdf/hkdf/libsodium_la-kdf_hkdf_sha256.lo \ +@MINIMAL_FALSE@ crypto_kdf/hkdf/libsodium_la-kdf_hkdf_sha512.lo \ +@MINIMAL_FALSE@ crypto_pwhash/scryptsalsa208sha256/libsodium_la-crypto_scrypt-common.lo \ +@MINIMAL_FALSE@ crypto_pwhash/scryptsalsa208sha256/libsodium_la-scrypt_platform.lo \ +@MINIMAL_FALSE@ crypto_pwhash/scryptsalsa208sha256/libsodium_la-pbkdf2-sha256.lo \ +@MINIMAL_FALSE@ crypto_pwhash/scryptsalsa208sha256/libsodium_la-pwhash_scryptsalsa208sha256.lo \ +@MINIMAL_FALSE@ crypto_pwhash/scryptsalsa208sha256/nosse/libsodium_la-pwhash_scryptsalsa208sha256_nosse.lo \ +@MINIMAL_FALSE@ crypto_scalarmult/ed25519/ref10/libsodium_la-scalarmult_ed25519_ref10.lo \ +@MINIMAL_FALSE@ crypto_scalarmult/ristretto255/ref10/libsodium_la-scalarmult_ristretto255_ref10.lo \ +@MINIMAL_FALSE@ crypto_secretbox/xchacha20poly1305/libsodium_la-secretbox_xchacha20poly1305.lo \ +@MINIMAL_FALSE@ crypto_shorthash/siphash24/libsodium_la-shorthash_siphashx24.lo \ +@MINIMAL_FALSE@ crypto_shorthash/siphash24/ref/libsodium_la-shorthash_siphashx24_ref.lo \ +@MINIMAL_FALSE@ crypto_stream/salsa2012/ref/libsodium_la-stream_salsa2012_ref.lo \ +@MINIMAL_FALSE@ crypto_stream/salsa2012/libsodium_la-stream_salsa2012.lo \ +@MINIMAL_FALSE@ crypto_stream/salsa208/ref/libsodium_la-stream_salsa208_ref.lo \ +@MINIMAL_FALSE@ crypto_stream/salsa208/libsodium_la-stream_salsa208.lo \ +@MINIMAL_FALSE@ crypto_stream/xchacha20/libsodium_la-stream_xchacha20.lo +@EMSCRIPTEN_FALSE@am__objects_6 = randombytes/sysrandom/libsodium_la-randombytes_sysrandom.lo +am_libsodium_la_OBJECTS = \ + crypto_aead/aegis256/libsodium_la-aead_aegis256.lo \ + crypto_aead/chacha20poly1305/sodium/libsodium_la-aead_chacha20poly1305.lo \ + crypto_aead/xchacha20poly1305/sodium/libsodium_la-aead_xchacha20poly1305.lo \ + crypto_auth/libsodium_la-crypto_auth.lo \ + crypto_auth/hmacsha256/libsodium_la-auth_hmacsha256.lo \ + crypto_auth/hmacsha512/libsodium_la-auth_hmacsha512.lo \ + crypto_auth/hmacsha512256/libsodium_la-auth_hmacsha512256.lo \ + crypto_box/libsodium_la-crypto_box.lo \ + crypto_box/libsodium_la-crypto_box_easy.lo \ + crypto_box/libsodium_la-crypto_box_seal.lo \ + crypto_box/curve25519xsalsa20poly1305/libsodium_la-box_curve25519xsalsa20poly1305.lo \ + crypto_core/ed25519/ref10/libsodium_la-ed25519_ref10.lo \ + crypto_core/hchacha20/libsodium_la-core_hchacha20.lo \ + crypto_core/hsalsa20/ref2/libsodium_la-core_hsalsa20_ref2.lo \ + crypto_core/hsalsa20/libsodium_la-core_hsalsa20.lo \ + crypto_core/salsa/ref/libsodium_la-core_salsa_ref.lo \ + crypto_generichash/libsodium_la-crypto_generichash.lo \ + crypto_generichash/blake2b/libsodium_la-generichash_blake2.lo \ + crypto_generichash/blake2b/ref/libsodium_la-blake2b-compress-ref.lo \ + crypto_generichash/blake2b/ref/libsodium_la-blake2b-ref.lo \ + crypto_generichash/blake2b/ref/libsodium_la-generichash_blake2b.lo \ + crypto_hash/libsodium_la-crypto_hash.lo \ + crypto_hash/sha256/libsodium_la-hash_sha256.lo \ + crypto_hash/sha256/cp/libsodium_la-hash_sha256_cp.lo \ + crypto_hash/sha512/libsodium_la-hash_sha512.lo \ + crypto_hash/sha512/cp/libsodium_la-hash_sha512_cp.lo \ + crypto_kdf/blake2b/libsodium_la-kdf_blake2b.lo \ + crypto_kdf/libsodium_la-crypto_kdf.lo \ + crypto_kx/libsodium_la-crypto_kx.lo \ + crypto_onetimeauth/libsodium_la-crypto_onetimeauth.lo \ + crypto_onetimeauth/poly1305/libsodium_la-onetimeauth_poly1305.lo \ + crypto_onetimeauth/poly1305/donna/libsodium_la-poly1305_donna.lo \ + crypto_pwhash/argon2/libsodium_la-argon2-core.lo \ + crypto_pwhash/argon2/libsodium_la-argon2-encoding.lo \ + crypto_pwhash/argon2/libsodium_la-argon2-fill-block-ref.lo \ + crypto_pwhash/argon2/libsodium_la-argon2.lo \ + crypto_pwhash/argon2/libsodium_la-blake2b-long.lo \ + crypto_pwhash/argon2/libsodium_la-pwhash_argon2i.lo \ + crypto_pwhash/argon2/libsodium_la-pwhash_argon2id.lo \ + crypto_pwhash/libsodium_la-crypto_pwhash.lo \ + crypto_scalarmult/libsodium_la-crypto_scalarmult.lo \ + crypto_scalarmult/curve25519/ref10/libsodium_la-x25519_ref10.lo \ + crypto_scalarmult/curve25519/libsodium_la-scalarmult_curve25519.lo \ + crypto_secretbox/libsodium_la-crypto_secretbox.lo \ + crypto_secretbox/libsodium_la-crypto_secretbox_easy.lo \ + crypto_secretbox/xsalsa20poly1305/libsodium_la-secretbox_xsalsa20poly1305.lo \ + crypto_secretstream/xchacha20poly1305/libsodium_la-secretstream_xchacha20poly1305.lo \ + crypto_shorthash/libsodium_la-crypto_shorthash.lo \ + crypto_shorthash/siphash24/libsodium_la-shorthash_siphash24.lo \ + crypto_shorthash/siphash24/ref/libsodium_la-shorthash_siphash24_ref.lo \ + crypto_sign/libsodium_la-crypto_sign.lo \ + crypto_sign/ed25519/libsodium_la-sign_ed25519.lo \ + crypto_sign/ed25519/ref10/libsodium_la-keypair.lo \ + crypto_sign/ed25519/ref10/libsodium_la-open.lo \ + crypto_sign/ed25519/ref10/libsodium_la-sign.lo \ + crypto_stream/chacha20/libsodium_la-stream_chacha20.lo \ + crypto_stream/chacha20/ref/libsodium_la-chacha20_ref.lo \ + crypto_stream/libsodium_la-crypto_stream.lo \ + crypto_stream/salsa20/libsodium_la-stream_salsa20.lo \ + crypto_stream/xsalsa20/libsodium_la-stream_xsalsa20.lo \ + crypto_verify/sodium/libsodium_la-verify.lo \ + randombytes/libsodium_la-randombytes.lo \ + sodium/libsodium_la-codecs.lo sodium/libsodium_la-core.lo \ + sodium/libsodium_la-runtime.lo sodium/libsodium_la-utils.lo \ + sodium/libsodium_la-version.lo $(am__objects_1) \ + $(am__objects_1) $(am__objects_2) $(am__objects_3) \ + $(am__objects_4) $(am__objects_5) $(am__objects_6) +libsodium_la_OBJECTS = $(am_libsodium_la_OBJECTS) +libsodium_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(libsodium_la_LDFLAGS) $(LDFLAGS) -o $@ +libsse2_la_LIBADD = +am__libsse2_la_SOURCES_DIST = \ + crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c \ + crypto_onetimeauth/poly1305/sse2/poly1305_sse2.h \ + crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c \ + crypto_stream/salsa20/xmm6int/salsa20_xmm6int-sse2.c \ + crypto_stream/salsa20/xmm6int/salsa20_xmm6int-sse2.h \ + crypto_stream/salsa20/xmm6int/u0.h \ + crypto_stream/salsa20/xmm6int/u1.h \ + crypto_stream/salsa20/xmm6int/u4.h +@MINIMAL_FALSE@am__objects_7 = crypto_pwhash/scryptsalsa208sha256/sse/libsse2_la-pwhash_scryptsalsa208sha256_sse.lo +@HAVE_AMD64_ASM_FALSE@am__objects_8 = crypto_stream/salsa20/xmm6int/libsse2_la-salsa20_xmm6int-sse2.lo +am_libsse2_la_OBJECTS = \ + crypto_onetimeauth/poly1305/sse2/libsse2_la-poly1305_sse2.lo \ + $(am__objects_7) $(am__objects_8) +libsse2_la_OBJECTS = $(am_libsse2_la_OBJECTS) +libsse2_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(libsse2_la_LDFLAGS) $(LDFLAGS) -o $@ +libsse41_la_LIBADD = +am_libsse41_la_OBJECTS = crypto_generichash/blake2b/ref/libsse41_la-blake2b-compress-sse41.lo +libsse41_la_OBJECTS = $(am_libsse41_la_OBJECTS) +libsse41_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(libsse41_la_LDFLAGS) $(LDFLAGS) -o $@ +libssse3_la_LIBADD = +am_libssse3_la_OBJECTS = crypto_generichash/blake2b/ref/libssse3_la-blake2b-compress-ssse3.lo \ + crypto_pwhash/argon2/libssse3_la-argon2-fill-block-ssse3.lo \ + crypto_stream/chacha20/dolbeau/libssse3_la-chacha20_dolbeau-ssse3.lo +libssse3_la_OBJECTS = $(am_libssse3_la_OBJECTS) +libssse3_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(libssse3_la_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ +depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CPPASCOMPILE = $(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CCASFLAGS) $(CCASFLAGS) +LTCPPASCOMPILE = $(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CCAS) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CCASFLAGS) $(CCASFLAGS) +AM_V_CPPAS = $(am__v_CPPAS_@AM_V@) +am__v_CPPAS_ = $(am__v_CPPAS_@AM_DEFAULT_V@) +am__v_CPPAS_0 = @echo " CPPAS " $@; +am__v_CPPAS_1 = +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(libaesni_la_SOURCES) $(libarmcrypto_la_SOURCES) \ + $(libavx2_la_SOURCES) $(libavx512f_la_SOURCES) \ + $(librdrand_la_SOURCES) $(libsodium_la_SOURCES) \ + $(libsse2_la_SOURCES) $(libsse41_la_SOURCES) \ + $(libssse3_la_SOURCES) +DIST_SOURCES = $(libaesni_la_SOURCES) $(libarmcrypto_la_SOURCES) \ + $(libavx2_la_SOURCES) $(libavx512f_la_SOURCES) \ + $(librdrand_la_SOURCES) $(am__libsodium_la_SOURCES_DIST) \ + $(am__libsse2_la_SOURCES_DIST) $(libsse41_la_SOURCES) \ + $(libssse3_la_SOURCES) +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +DATA = $(defexec_DATA) +HEADERS = $(noinst_HEADERS) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +am__DIST_COMMON = $(srcdir)/Makefile.in \ + $(top_srcdir)/build-aux/depcomp +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALLOCA = @ALLOCA@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AS = @AS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCAS = @CCAS@ +CCASDEPMODE = @CCASDEPMODE@ +CCASFLAGS = @CCASFLAGS@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CFLAGS_AESNI = @CFLAGS_AESNI@ +CFLAGS_ARMCRYPTO = @CFLAGS_ARMCRYPTO@ +CFLAGS_AVX = @CFLAGS_AVX@ +CFLAGS_AVX2 = @CFLAGS_AVX2@ +CFLAGS_AVX512F = @CFLAGS_AVX512F@ +CFLAGS_MMX = @CFLAGS_MMX@ +CFLAGS_PCLMUL = @CFLAGS_PCLMUL@ +CFLAGS_RDRAND = @CFLAGS_RDRAND@ +CFLAGS_SSE2 = @CFLAGS_SSE2@ +CFLAGS_SSE3 = @CFLAGS_SSE3@ +CFLAGS_SSE41 = @CFLAGS_SSE41@ +CFLAGS_SSSE3 = @CFLAGS_SSSE3@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CWFLAGS = @CWFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DLLTOOL = @DLLTOOL@ +DLL_VERSION = @DLL_VERSION@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENABLE_VALGRIND_drd = @ENABLE_VALGRIND_drd@ +ENABLE_VALGRIND_helgrind = @ENABLE_VALGRIND_helgrind@ +ENABLE_VALGRIND_memcheck = @ENABLE_VALGRIND_memcheck@ +ENABLE_VALGRIND_sgcheck = @ENABLE_VALGRIND_sgcheck@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GREP = @GREP@ +HAVE_AMD64_ASM_V = @HAVE_AMD64_ASM_V@ +HAVE_AVX_ASM_V = @HAVE_AVX_ASM_V@ +HAVE_CPUID_V = @HAVE_CPUID_V@ +HAVE_TI_MODE_V = @HAVE_TI_MODE_V@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBTOOL_DEPS = @LIBTOOL_DEPS@ +LIBTOOL_EXTRA_FLAGS = @LIBTOOL_EXTRA_FLAGS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ +MAINT = @MAINT@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKGCONFIG_LIBS_PRIVATE = @PKGCONFIG_LIBS_PRIVATE@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ +RANLIB = @RANLIB@ +SAFECODE_HOME = @SAFECODE_HOME@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +SODIUM_LIBRARY_MINIMAL_DEF = @SODIUM_LIBRARY_MINIMAL_DEF@ +SODIUM_LIBRARY_VERSION = @SODIUM_LIBRARY_VERSION@ +SODIUM_LIBRARY_VERSION_MAJOR = @SODIUM_LIBRARY_VERSION_MAJOR@ +SODIUM_LIBRARY_VERSION_MINOR = @SODIUM_LIBRARY_VERSION_MINOR@ +STRIP = @STRIP@ +TEST_LDFLAGS = @TEST_LDFLAGS@ +VALGRIND = @VALGRIND@ +VALGRIND_ENABLED = @VALGRIND_ENABLED@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +runstatedir = @runstatedir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +valgrind_enabled_tools = @valgrind_enabled_tools@ +valgrind_tools = @valgrind_tools@ +lib_LTLIBRARIES = \ + libsodium.la + +libsodium_la_SOURCES = crypto_aead/aegis256/aead_aegis256.c \ + crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c \ + crypto_aead/xchacha20poly1305/sodium/aead_xchacha20poly1305.c \ + crypto_auth/crypto_auth.c \ + crypto_auth/hmacsha256/auth_hmacsha256.c \ + crypto_auth/hmacsha512/auth_hmacsha512.c \ + crypto_auth/hmacsha512256/auth_hmacsha512256.c \ + crypto_box/crypto_box.c crypto_box/crypto_box_easy.c \ + crypto_box/crypto_box_seal.c \ + crypto_box/curve25519xsalsa20poly1305/box_curve25519xsalsa20poly1305.c \ + crypto_core/ed25519/ref10/ed25519_ref10.c \ + crypto_core/hchacha20/core_hchacha20.c \ + crypto_core/hsalsa20/ref2/core_hsalsa20_ref2.c \ + crypto_core/hsalsa20/core_hsalsa20.c \ + crypto_core/salsa/ref/core_salsa_ref.c \ + crypto_generichash/crypto_generichash.c \ + crypto_generichash/blake2b/generichash_blake2.c \ + crypto_generichash/blake2b/ref/blake2.h \ + crypto_generichash/blake2b/ref/blake2b-compress-ref.c \ + crypto_generichash/blake2b/ref/blake2b-load-sse2.h \ + crypto_generichash/blake2b/ref/blake2b-load-sse41.h \ + crypto_generichash/blake2b/ref/blake2b-load-avx2.h \ + crypto_generichash/blake2b/ref/blake2b-ref.c \ + crypto_generichash/blake2b/ref/generichash_blake2b.c \ + crypto_hash/crypto_hash.c crypto_hash/sha256/hash_sha256.c \ + crypto_hash/sha256/cp/hash_sha256_cp.c \ + crypto_hash/sha512/hash_sha512.c \ + crypto_hash/sha512/cp/hash_sha512_cp.c \ + crypto_kdf/blake2b/kdf_blake2b.c crypto_kdf/crypto_kdf.c \ + crypto_kx/crypto_kx.c crypto_onetimeauth/crypto_onetimeauth.c \ + crypto_onetimeauth/poly1305/onetimeauth_poly1305.c \ + crypto_onetimeauth/poly1305/onetimeauth_poly1305.h \ + crypto_onetimeauth/poly1305/donna/poly1305_donna.h \ + crypto_onetimeauth/poly1305/donna/poly1305_donna32.h \ + crypto_onetimeauth/poly1305/donna/poly1305_donna64.h \ + crypto_onetimeauth/poly1305/donna/poly1305_donna.c \ + crypto_pwhash/argon2/argon2-core.c \ + crypto_pwhash/argon2/argon2-core.h \ + crypto_pwhash/argon2/argon2-encoding.c \ + crypto_pwhash/argon2/argon2-encoding.h \ + crypto_pwhash/argon2/argon2-fill-block-ref.c \ + crypto_pwhash/argon2/argon2.c crypto_pwhash/argon2/argon2.h \ + crypto_pwhash/argon2/blake2b-long.c \ + crypto_pwhash/argon2/blake2b-long.h \ + crypto_pwhash/argon2/blamka-round-ref.h \ + crypto_pwhash/argon2/pwhash_argon2i.c \ + crypto_pwhash/argon2/pwhash_argon2id.c \ + crypto_pwhash/crypto_pwhash.c \ + crypto_scalarmult/crypto_scalarmult.c \ + crypto_scalarmult/curve25519/ref10/x25519_ref10.c \ + crypto_scalarmult/curve25519/ref10/x25519_ref10.h \ + crypto_scalarmult/curve25519/scalarmult_curve25519.c \ + crypto_scalarmult/curve25519/scalarmult_curve25519.h \ + crypto_secretbox/crypto_secretbox.c \ + crypto_secretbox/crypto_secretbox_easy.c \ + crypto_secretbox/xsalsa20poly1305/secretbox_xsalsa20poly1305.c \ + crypto_secretstream/xchacha20poly1305/secretstream_xchacha20poly1305.c \ + crypto_shorthash/crypto_shorthash.c \ + crypto_shorthash/siphash24/shorthash_siphash24.c \ + crypto_shorthash/siphash24/ref/shorthash_siphash24_ref.c \ + crypto_shorthash/siphash24/ref/shorthash_siphash_ref.h \ + crypto_sign/crypto_sign.c crypto_sign/ed25519/sign_ed25519.c \ + crypto_sign/ed25519/ref10/keypair.c \ + crypto_sign/ed25519/ref10/open.c \ + crypto_sign/ed25519/ref10/sign.c \ + crypto_sign/ed25519/ref10/sign_ed25519_ref10.h \ + crypto_stream/chacha20/stream_chacha20.c \ + crypto_stream/chacha20/stream_chacha20.h \ + crypto_stream/chacha20/ref/chacha20_ref.h \ + crypto_stream/chacha20/ref/chacha20_ref.c \ + crypto_stream/crypto_stream.c \ + crypto_stream/salsa20/stream_salsa20.c \ + crypto_stream/salsa20/stream_salsa20.h \ + crypto_stream/xsalsa20/stream_xsalsa20.c \ + crypto_verify/sodium/verify.c \ + include/sodium/private/chacha20_ietf_ext.h \ + include/sodium/private/common.h \ + include/sodium/private/ed25519_ref10.h \ + include/sodium/private/implementations.h \ + include/sodium/private/mutex.h \ + include/sodium/private/sse2_64_32.h \ + include/sodium/private/quirks.h randombytes/randombytes.c \ + sodium/codecs.c sodium/core.c sodium/runtime.c sodium/utils.c \ + sodium/version.c $(am__append_1) $(am__append_2) \ + $(am__append_3) $(am__append_4) $(am__append_5) \ + $(am__append_6) $(am__append_10) +noinst_HEADERS = \ + crypto_scalarmult/curve25519/sandy2x/consts.S \ + crypto_scalarmult/curve25519/sandy2x/fe51_mul.S \ + crypto_scalarmult/curve25519/sandy2x/fe51_nsquare.S \ + crypto_scalarmult/curve25519/sandy2x/fe51_pack.S \ + crypto_scalarmult/curve25519/sandy2x/ladder.S + +randombytes_internal_randombytes_internal_random_CFLAGS = @CFLAGS_RDRAND@ +libsodium_la_LDFLAGS = $(AM_LDFLAGS) -export-dynamic -no-undefined \ + $(LIBTOOL_EXTRA_FLAGS) $(am__append_7) +libsodium_la_CPPFLAGS = \ + $(LTDLINCL) \ + -I$(srcdir)/include/sodium \ + -I$(builddir)/include/sodium + +@HAVE_LD_OUTPUT_DEF_TRUE@defexecdir = $(bindir) +@HAVE_LD_OUTPUT_DEF_TRUE@defexec_DATA = libsodium-$(DLL_VERSION).def +@HAVE_LD_OUTPUT_DEF_TRUE@CLEANFILES = $(defexec_DATA) +SUBDIRS = \ + include + +libsodium_la_LIBADD = libaesni.la libarmcrypto.la libsse2.la \ + libssse3.la libsse41.la libavx2.la libavx512f.la \ + $(am__append_8) +noinst_LTLIBRARIES = libaesni.la libarmcrypto.la libsse2.la \ + libssse3.la libsse41.la libavx2.la libavx512f.la \ + $(am__append_9) +librdrand_la_LDFLAGS = $(libsodium_la_LDFLAGS) +librdrand_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \ + @CFLAGS_RDRAND@ + +librdrand_la_SOURCES = \ + randombytes/internal/randombytes_internal_random.c + +libarmcrypto_la_LDFLAGS = $(libsodium_la_LDFLAGS) +libarmcrypto_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \ + @CFLAGS_ARMCRYPTO@ + +libarmcrypto_la_SOURCES = \ + crypto_aead/aegis256/armcrypto/aead_aegis256_armcrypto.c + +libaesni_la_LDFLAGS = $(libsodium_la_LDFLAGS) +libaesni_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \ + @CFLAGS_SSE2@ @CFLAGS_SSSE3@ @CFLAGS_AESNI@ @CFLAGS_PCLMUL@ + +libaesni_la_SOURCES = \ + crypto_aead/aes256gcm/aesni/aead_aes256gcm_aesni.c \ + crypto_aead/aegis256/aesni/aead_aegis256_aesni.c + +libsse2_la_LDFLAGS = $(libsodium_la_LDFLAGS) +libsse2_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \ + @CFLAGS_SSE2@ + +libsse2_la_SOURCES = crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c \ + crypto_onetimeauth/poly1305/sse2/poly1305_sse2.h \ + $(am__append_11) $(am__append_12) +libssse3_la_LDFLAGS = $(libsodium_la_LDFLAGS) +libssse3_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \ + @CFLAGS_SSE2@ @CFLAGS_SSSE3@ + +libssse3_la_SOURCES = \ + crypto_generichash/blake2b/ref/blake2b-compress-ssse3.c \ + crypto_generichash/blake2b/ref/blake2b-compress-ssse3.h \ + crypto_pwhash/argon2/argon2-fill-block-ssse3.c \ + crypto_pwhash/argon2/blamka-round-ssse3.h \ + crypto_stream/chacha20/dolbeau/chacha20_dolbeau-ssse3.c \ + crypto_stream/chacha20/dolbeau/chacha20_dolbeau-ssse3.h \ + crypto_stream/chacha20/dolbeau/u0.h \ + crypto_stream/chacha20/dolbeau/u1.h \ + crypto_stream/chacha20/dolbeau/u4.h + +libsse41_la_LDFLAGS = $(libsodium_la_LDFLAGS) +libsse41_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \ + @CFLAGS_SSE2@ @CFLAGS_SSSE3@ @CFLAGS_SSE41@ + +libsse41_la_SOURCES = \ + crypto_generichash/blake2b/ref/blake2b-compress-sse41.c \ + crypto_generichash/blake2b/ref/blake2b-compress-sse41.h + +libavx2_la_LDFLAGS = $(libsodium_la_LDFLAGS) +libavx2_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \ + @CFLAGS_SSE2@ @CFLAGS_SSSE3@ @CFLAGS_SSE41@ @CFLAGS_AVX@ @CFLAGS_AVX2@ + +libavx2_la_SOURCES = \ + crypto_generichash/blake2b/ref/blake2b-compress-avx2.c \ + crypto_generichash/blake2b/ref/blake2b-compress-avx2.h \ + crypto_pwhash/argon2/argon2-fill-block-avx2.c \ + crypto_pwhash/argon2/blamka-round-avx2.h \ + crypto_stream/chacha20/dolbeau/chacha20_dolbeau-avx2.c \ + crypto_stream/chacha20/dolbeau/chacha20_dolbeau-avx2.h \ + crypto_stream/chacha20/dolbeau/u8.h \ + crypto_stream/salsa20/xmm6int/salsa20_xmm6int-avx2.c \ + crypto_stream/salsa20/xmm6int/salsa20_xmm6int-avx2.h \ + crypto_stream/salsa20/xmm6int/u0.h \ + crypto_stream/salsa20/xmm6int/u1.h \ + crypto_stream/salsa20/xmm6int/u4.h \ + crypto_stream/salsa20/xmm6int/u8.h + +libavx512f_la_LDFLAGS = $(libsodium_la_LDFLAGS) +libavx512f_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \ + @CFLAGS_SSE2@ @CFLAGS_SSSE3@ @CFLAGS_SSE41@ @CFLAGS_AVX@ @CFLAGS_AVX2@ @CFLAGS_AVX512F@ + +libavx512f_la_SOURCES = \ + crypto_pwhash/argon2/argon2-fill-block-avx512f.c \ + crypto_pwhash/argon2/blamka-round-avx512f.h + +all: all-recursive + +.SUFFIXES: +.SUFFIXES: .S .c .lo .o .obj +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/libsodium/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign src/libsodium/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-libLTLIBRARIES: $(lib_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ + } + +uninstall-libLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ + done + +clean-libLTLIBRARIES: + -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) + @list='$(lib_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +clean-noinstLTLIBRARIES: + -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) + @list='$(noinst_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } +crypto_aead/aes256gcm/aesni/$(am__dirstamp): + @$(MKDIR_P) crypto_aead/aes256gcm/aesni + @: > crypto_aead/aes256gcm/aesni/$(am__dirstamp) +crypto_aead/aes256gcm/aesni/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_aead/aes256gcm/aesni/$(DEPDIR) + @: > crypto_aead/aes256gcm/aesni/$(DEPDIR)/$(am__dirstamp) +crypto_aead/aes256gcm/aesni/libaesni_la-aead_aes256gcm_aesni.lo: \ + crypto_aead/aes256gcm/aesni/$(am__dirstamp) \ + crypto_aead/aes256gcm/aesni/$(DEPDIR)/$(am__dirstamp) +crypto_aead/aegis256/aesni/$(am__dirstamp): + @$(MKDIR_P) crypto_aead/aegis256/aesni + @: > crypto_aead/aegis256/aesni/$(am__dirstamp) +crypto_aead/aegis256/aesni/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_aead/aegis256/aesni/$(DEPDIR) + @: > crypto_aead/aegis256/aesni/$(DEPDIR)/$(am__dirstamp) +crypto_aead/aegis256/aesni/libaesni_la-aead_aegis256_aesni.lo: \ + crypto_aead/aegis256/aesni/$(am__dirstamp) \ + crypto_aead/aegis256/aesni/$(DEPDIR)/$(am__dirstamp) + +libaesni.la: $(libaesni_la_OBJECTS) $(libaesni_la_DEPENDENCIES) $(EXTRA_libaesni_la_DEPENDENCIES) + $(AM_V_CCLD)$(libaesni_la_LINK) $(libaesni_la_OBJECTS) $(libaesni_la_LIBADD) $(LIBS) +crypto_aead/aegis256/armcrypto/$(am__dirstamp): + @$(MKDIR_P) crypto_aead/aegis256/armcrypto + @: > crypto_aead/aegis256/armcrypto/$(am__dirstamp) +crypto_aead/aegis256/armcrypto/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_aead/aegis256/armcrypto/$(DEPDIR) + @: > crypto_aead/aegis256/armcrypto/$(DEPDIR)/$(am__dirstamp) +crypto_aead/aegis256/armcrypto/libarmcrypto_la-aead_aegis256_armcrypto.lo: \ + crypto_aead/aegis256/armcrypto/$(am__dirstamp) \ + crypto_aead/aegis256/armcrypto/$(DEPDIR)/$(am__dirstamp) + +libarmcrypto.la: $(libarmcrypto_la_OBJECTS) $(libarmcrypto_la_DEPENDENCIES) $(EXTRA_libarmcrypto_la_DEPENDENCIES) + $(AM_V_CCLD)$(libarmcrypto_la_LINK) $(libarmcrypto_la_OBJECTS) $(libarmcrypto_la_LIBADD) $(LIBS) +crypto_generichash/blake2b/ref/$(am__dirstamp): + @$(MKDIR_P) crypto_generichash/blake2b/ref + @: > crypto_generichash/blake2b/ref/$(am__dirstamp) +crypto_generichash/blake2b/ref/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_generichash/blake2b/ref/$(DEPDIR) + @: > crypto_generichash/blake2b/ref/$(DEPDIR)/$(am__dirstamp) +crypto_generichash/blake2b/ref/libavx2_la-blake2b-compress-avx2.lo: \ + crypto_generichash/blake2b/ref/$(am__dirstamp) \ + crypto_generichash/blake2b/ref/$(DEPDIR)/$(am__dirstamp) +crypto_pwhash/argon2/$(am__dirstamp): + @$(MKDIR_P) crypto_pwhash/argon2 + @: > crypto_pwhash/argon2/$(am__dirstamp) +crypto_pwhash/argon2/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_pwhash/argon2/$(DEPDIR) + @: > crypto_pwhash/argon2/$(DEPDIR)/$(am__dirstamp) +crypto_pwhash/argon2/libavx2_la-argon2-fill-block-avx2.lo: \ + crypto_pwhash/argon2/$(am__dirstamp) \ + crypto_pwhash/argon2/$(DEPDIR)/$(am__dirstamp) +crypto_stream/chacha20/dolbeau/$(am__dirstamp): + @$(MKDIR_P) crypto_stream/chacha20/dolbeau + @: > crypto_stream/chacha20/dolbeau/$(am__dirstamp) +crypto_stream/chacha20/dolbeau/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_stream/chacha20/dolbeau/$(DEPDIR) + @: > crypto_stream/chacha20/dolbeau/$(DEPDIR)/$(am__dirstamp) +crypto_stream/chacha20/dolbeau/libavx2_la-chacha20_dolbeau-avx2.lo: \ + crypto_stream/chacha20/dolbeau/$(am__dirstamp) \ + crypto_stream/chacha20/dolbeau/$(DEPDIR)/$(am__dirstamp) +crypto_stream/salsa20/xmm6int/$(am__dirstamp): + @$(MKDIR_P) crypto_stream/salsa20/xmm6int + @: > crypto_stream/salsa20/xmm6int/$(am__dirstamp) +crypto_stream/salsa20/xmm6int/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_stream/salsa20/xmm6int/$(DEPDIR) + @: > crypto_stream/salsa20/xmm6int/$(DEPDIR)/$(am__dirstamp) +crypto_stream/salsa20/xmm6int/libavx2_la-salsa20_xmm6int-avx2.lo: \ + crypto_stream/salsa20/xmm6int/$(am__dirstamp) \ + crypto_stream/salsa20/xmm6int/$(DEPDIR)/$(am__dirstamp) + +libavx2.la: $(libavx2_la_OBJECTS) $(libavx2_la_DEPENDENCIES) $(EXTRA_libavx2_la_DEPENDENCIES) + $(AM_V_CCLD)$(libavx2_la_LINK) $(libavx2_la_OBJECTS) $(libavx2_la_LIBADD) $(LIBS) +crypto_pwhash/argon2/libavx512f_la-argon2-fill-block-avx512f.lo: \ + crypto_pwhash/argon2/$(am__dirstamp) \ + crypto_pwhash/argon2/$(DEPDIR)/$(am__dirstamp) + +libavx512f.la: $(libavx512f_la_OBJECTS) $(libavx512f_la_DEPENDENCIES) $(EXTRA_libavx512f_la_DEPENDENCIES) + $(AM_V_CCLD)$(libavx512f_la_LINK) $(libavx512f_la_OBJECTS) $(libavx512f_la_LIBADD) $(LIBS) +randombytes/internal/$(am__dirstamp): + @$(MKDIR_P) randombytes/internal + @: > randombytes/internal/$(am__dirstamp) +randombytes/internal/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) randombytes/internal/$(DEPDIR) + @: > randombytes/internal/$(DEPDIR)/$(am__dirstamp) +randombytes/internal/librdrand_la-randombytes_internal_random.lo: \ + randombytes/internal/$(am__dirstamp) \ + randombytes/internal/$(DEPDIR)/$(am__dirstamp) + +librdrand.la: $(librdrand_la_OBJECTS) $(librdrand_la_DEPENDENCIES) $(EXTRA_librdrand_la_DEPENDENCIES) + $(AM_V_CCLD)$(librdrand_la_LINK) $(am_librdrand_la_rpath) $(librdrand_la_OBJECTS) $(librdrand_la_LIBADD) $(LIBS) +crypto_aead/aegis256/$(am__dirstamp): + @$(MKDIR_P) crypto_aead/aegis256 + @: > crypto_aead/aegis256/$(am__dirstamp) +crypto_aead/aegis256/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_aead/aegis256/$(DEPDIR) + @: > crypto_aead/aegis256/$(DEPDIR)/$(am__dirstamp) +crypto_aead/aegis256/libsodium_la-aead_aegis256.lo: \ + crypto_aead/aegis256/$(am__dirstamp) \ + crypto_aead/aegis256/$(DEPDIR)/$(am__dirstamp) +crypto_aead/chacha20poly1305/sodium/$(am__dirstamp): + @$(MKDIR_P) crypto_aead/chacha20poly1305/sodium + @: > crypto_aead/chacha20poly1305/sodium/$(am__dirstamp) +crypto_aead/chacha20poly1305/sodium/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_aead/chacha20poly1305/sodium/$(DEPDIR) + @: > crypto_aead/chacha20poly1305/sodium/$(DEPDIR)/$(am__dirstamp) +crypto_aead/chacha20poly1305/sodium/libsodium_la-aead_chacha20poly1305.lo: \ + crypto_aead/chacha20poly1305/sodium/$(am__dirstamp) \ + crypto_aead/chacha20poly1305/sodium/$(DEPDIR)/$(am__dirstamp) +crypto_aead/xchacha20poly1305/sodium/$(am__dirstamp): + @$(MKDIR_P) crypto_aead/xchacha20poly1305/sodium + @: > crypto_aead/xchacha20poly1305/sodium/$(am__dirstamp) +crypto_aead/xchacha20poly1305/sodium/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_aead/xchacha20poly1305/sodium/$(DEPDIR) + @: > crypto_aead/xchacha20poly1305/sodium/$(DEPDIR)/$(am__dirstamp) +crypto_aead/xchacha20poly1305/sodium/libsodium_la-aead_xchacha20poly1305.lo: \ + crypto_aead/xchacha20poly1305/sodium/$(am__dirstamp) \ + crypto_aead/xchacha20poly1305/sodium/$(DEPDIR)/$(am__dirstamp) +crypto_auth/$(am__dirstamp): + @$(MKDIR_P) crypto_auth + @: > crypto_auth/$(am__dirstamp) +crypto_auth/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_auth/$(DEPDIR) + @: > crypto_auth/$(DEPDIR)/$(am__dirstamp) +crypto_auth/libsodium_la-crypto_auth.lo: crypto_auth/$(am__dirstamp) \ + crypto_auth/$(DEPDIR)/$(am__dirstamp) +crypto_auth/hmacsha256/$(am__dirstamp): + @$(MKDIR_P) crypto_auth/hmacsha256 + @: > crypto_auth/hmacsha256/$(am__dirstamp) +crypto_auth/hmacsha256/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_auth/hmacsha256/$(DEPDIR) + @: > crypto_auth/hmacsha256/$(DEPDIR)/$(am__dirstamp) +crypto_auth/hmacsha256/libsodium_la-auth_hmacsha256.lo: \ + crypto_auth/hmacsha256/$(am__dirstamp) \ + crypto_auth/hmacsha256/$(DEPDIR)/$(am__dirstamp) +crypto_auth/hmacsha512/$(am__dirstamp): + @$(MKDIR_P) crypto_auth/hmacsha512 + @: > crypto_auth/hmacsha512/$(am__dirstamp) +crypto_auth/hmacsha512/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_auth/hmacsha512/$(DEPDIR) + @: > crypto_auth/hmacsha512/$(DEPDIR)/$(am__dirstamp) +crypto_auth/hmacsha512/libsodium_la-auth_hmacsha512.lo: \ + crypto_auth/hmacsha512/$(am__dirstamp) \ + crypto_auth/hmacsha512/$(DEPDIR)/$(am__dirstamp) +crypto_auth/hmacsha512256/$(am__dirstamp): + @$(MKDIR_P) crypto_auth/hmacsha512256 + @: > crypto_auth/hmacsha512256/$(am__dirstamp) +crypto_auth/hmacsha512256/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_auth/hmacsha512256/$(DEPDIR) + @: > crypto_auth/hmacsha512256/$(DEPDIR)/$(am__dirstamp) +crypto_auth/hmacsha512256/libsodium_la-auth_hmacsha512256.lo: \ + crypto_auth/hmacsha512256/$(am__dirstamp) \ + crypto_auth/hmacsha512256/$(DEPDIR)/$(am__dirstamp) +crypto_box/$(am__dirstamp): + @$(MKDIR_P) crypto_box + @: > crypto_box/$(am__dirstamp) +crypto_box/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_box/$(DEPDIR) + @: > crypto_box/$(DEPDIR)/$(am__dirstamp) +crypto_box/libsodium_la-crypto_box.lo: crypto_box/$(am__dirstamp) \ + crypto_box/$(DEPDIR)/$(am__dirstamp) +crypto_box/libsodium_la-crypto_box_easy.lo: \ + crypto_box/$(am__dirstamp) \ + crypto_box/$(DEPDIR)/$(am__dirstamp) +crypto_box/libsodium_la-crypto_box_seal.lo: \ + crypto_box/$(am__dirstamp) \ + crypto_box/$(DEPDIR)/$(am__dirstamp) +crypto_box/curve25519xsalsa20poly1305/$(am__dirstamp): + @$(MKDIR_P) crypto_box/curve25519xsalsa20poly1305 + @: > crypto_box/curve25519xsalsa20poly1305/$(am__dirstamp) +crypto_box/curve25519xsalsa20poly1305/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_box/curve25519xsalsa20poly1305/$(DEPDIR) + @: > crypto_box/curve25519xsalsa20poly1305/$(DEPDIR)/$(am__dirstamp) +crypto_box/curve25519xsalsa20poly1305/libsodium_la-box_curve25519xsalsa20poly1305.lo: \ + crypto_box/curve25519xsalsa20poly1305/$(am__dirstamp) \ + crypto_box/curve25519xsalsa20poly1305/$(DEPDIR)/$(am__dirstamp) +crypto_core/ed25519/ref10/$(am__dirstamp): + @$(MKDIR_P) crypto_core/ed25519/ref10 + @: > crypto_core/ed25519/ref10/$(am__dirstamp) +crypto_core/ed25519/ref10/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_core/ed25519/ref10/$(DEPDIR) + @: > crypto_core/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) +crypto_core/ed25519/ref10/libsodium_la-ed25519_ref10.lo: \ + crypto_core/ed25519/ref10/$(am__dirstamp) \ + crypto_core/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) +crypto_core/hchacha20/$(am__dirstamp): + @$(MKDIR_P) crypto_core/hchacha20 + @: > crypto_core/hchacha20/$(am__dirstamp) +crypto_core/hchacha20/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_core/hchacha20/$(DEPDIR) + @: > crypto_core/hchacha20/$(DEPDIR)/$(am__dirstamp) +crypto_core/hchacha20/libsodium_la-core_hchacha20.lo: \ + crypto_core/hchacha20/$(am__dirstamp) \ + crypto_core/hchacha20/$(DEPDIR)/$(am__dirstamp) +crypto_core/hsalsa20/ref2/$(am__dirstamp): + @$(MKDIR_P) crypto_core/hsalsa20/ref2 + @: > crypto_core/hsalsa20/ref2/$(am__dirstamp) +crypto_core/hsalsa20/ref2/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_core/hsalsa20/ref2/$(DEPDIR) + @: > crypto_core/hsalsa20/ref2/$(DEPDIR)/$(am__dirstamp) +crypto_core/hsalsa20/ref2/libsodium_la-core_hsalsa20_ref2.lo: \ + crypto_core/hsalsa20/ref2/$(am__dirstamp) \ + crypto_core/hsalsa20/ref2/$(DEPDIR)/$(am__dirstamp) +crypto_core/hsalsa20/$(am__dirstamp): + @$(MKDIR_P) crypto_core/hsalsa20 + @: > crypto_core/hsalsa20/$(am__dirstamp) +crypto_core/hsalsa20/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_core/hsalsa20/$(DEPDIR) + @: > crypto_core/hsalsa20/$(DEPDIR)/$(am__dirstamp) +crypto_core/hsalsa20/libsodium_la-core_hsalsa20.lo: \ + crypto_core/hsalsa20/$(am__dirstamp) \ + crypto_core/hsalsa20/$(DEPDIR)/$(am__dirstamp) +crypto_core/salsa/ref/$(am__dirstamp): + @$(MKDIR_P) crypto_core/salsa/ref + @: > crypto_core/salsa/ref/$(am__dirstamp) +crypto_core/salsa/ref/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_core/salsa/ref/$(DEPDIR) + @: > crypto_core/salsa/ref/$(DEPDIR)/$(am__dirstamp) +crypto_core/salsa/ref/libsodium_la-core_salsa_ref.lo: \ + crypto_core/salsa/ref/$(am__dirstamp) \ + crypto_core/salsa/ref/$(DEPDIR)/$(am__dirstamp) +crypto_generichash/$(am__dirstamp): + @$(MKDIR_P) crypto_generichash + @: > crypto_generichash/$(am__dirstamp) +crypto_generichash/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_generichash/$(DEPDIR) + @: > crypto_generichash/$(DEPDIR)/$(am__dirstamp) +crypto_generichash/libsodium_la-crypto_generichash.lo: \ + crypto_generichash/$(am__dirstamp) \ + crypto_generichash/$(DEPDIR)/$(am__dirstamp) +crypto_generichash/blake2b/$(am__dirstamp): + @$(MKDIR_P) crypto_generichash/blake2b + @: > crypto_generichash/blake2b/$(am__dirstamp) +crypto_generichash/blake2b/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_generichash/blake2b/$(DEPDIR) + @: > crypto_generichash/blake2b/$(DEPDIR)/$(am__dirstamp) +crypto_generichash/blake2b/libsodium_la-generichash_blake2.lo: \ + crypto_generichash/blake2b/$(am__dirstamp) \ + crypto_generichash/blake2b/$(DEPDIR)/$(am__dirstamp) +crypto_generichash/blake2b/ref/libsodium_la-blake2b-compress-ref.lo: \ + crypto_generichash/blake2b/ref/$(am__dirstamp) \ + crypto_generichash/blake2b/ref/$(DEPDIR)/$(am__dirstamp) +crypto_generichash/blake2b/ref/libsodium_la-blake2b-ref.lo: \ + crypto_generichash/blake2b/ref/$(am__dirstamp) \ + crypto_generichash/blake2b/ref/$(DEPDIR)/$(am__dirstamp) +crypto_generichash/blake2b/ref/libsodium_la-generichash_blake2b.lo: \ + crypto_generichash/blake2b/ref/$(am__dirstamp) \ + crypto_generichash/blake2b/ref/$(DEPDIR)/$(am__dirstamp) +crypto_hash/$(am__dirstamp): + @$(MKDIR_P) crypto_hash + @: > crypto_hash/$(am__dirstamp) +crypto_hash/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_hash/$(DEPDIR) + @: > crypto_hash/$(DEPDIR)/$(am__dirstamp) +crypto_hash/libsodium_la-crypto_hash.lo: crypto_hash/$(am__dirstamp) \ + crypto_hash/$(DEPDIR)/$(am__dirstamp) +crypto_hash/sha256/$(am__dirstamp): + @$(MKDIR_P) crypto_hash/sha256 + @: > crypto_hash/sha256/$(am__dirstamp) +crypto_hash/sha256/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_hash/sha256/$(DEPDIR) + @: > crypto_hash/sha256/$(DEPDIR)/$(am__dirstamp) +crypto_hash/sha256/libsodium_la-hash_sha256.lo: \ + crypto_hash/sha256/$(am__dirstamp) \ + crypto_hash/sha256/$(DEPDIR)/$(am__dirstamp) +crypto_hash/sha256/cp/$(am__dirstamp): + @$(MKDIR_P) crypto_hash/sha256/cp + @: > crypto_hash/sha256/cp/$(am__dirstamp) +crypto_hash/sha256/cp/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_hash/sha256/cp/$(DEPDIR) + @: > crypto_hash/sha256/cp/$(DEPDIR)/$(am__dirstamp) +crypto_hash/sha256/cp/libsodium_la-hash_sha256_cp.lo: \ + crypto_hash/sha256/cp/$(am__dirstamp) \ + crypto_hash/sha256/cp/$(DEPDIR)/$(am__dirstamp) +crypto_hash/sha512/$(am__dirstamp): + @$(MKDIR_P) crypto_hash/sha512 + @: > crypto_hash/sha512/$(am__dirstamp) +crypto_hash/sha512/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_hash/sha512/$(DEPDIR) + @: > crypto_hash/sha512/$(DEPDIR)/$(am__dirstamp) +crypto_hash/sha512/libsodium_la-hash_sha512.lo: \ + crypto_hash/sha512/$(am__dirstamp) \ + crypto_hash/sha512/$(DEPDIR)/$(am__dirstamp) +crypto_hash/sha512/cp/$(am__dirstamp): + @$(MKDIR_P) crypto_hash/sha512/cp + @: > crypto_hash/sha512/cp/$(am__dirstamp) +crypto_hash/sha512/cp/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_hash/sha512/cp/$(DEPDIR) + @: > crypto_hash/sha512/cp/$(DEPDIR)/$(am__dirstamp) +crypto_hash/sha512/cp/libsodium_la-hash_sha512_cp.lo: \ + crypto_hash/sha512/cp/$(am__dirstamp) \ + crypto_hash/sha512/cp/$(DEPDIR)/$(am__dirstamp) +crypto_kdf/blake2b/$(am__dirstamp): + @$(MKDIR_P) crypto_kdf/blake2b + @: > crypto_kdf/blake2b/$(am__dirstamp) +crypto_kdf/blake2b/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_kdf/blake2b/$(DEPDIR) + @: > crypto_kdf/blake2b/$(DEPDIR)/$(am__dirstamp) +crypto_kdf/blake2b/libsodium_la-kdf_blake2b.lo: \ + crypto_kdf/blake2b/$(am__dirstamp) \ + crypto_kdf/blake2b/$(DEPDIR)/$(am__dirstamp) +crypto_kdf/$(am__dirstamp): + @$(MKDIR_P) crypto_kdf + @: > crypto_kdf/$(am__dirstamp) +crypto_kdf/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_kdf/$(DEPDIR) + @: > crypto_kdf/$(DEPDIR)/$(am__dirstamp) +crypto_kdf/libsodium_la-crypto_kdf.lo: crypto_kdf/$(am__dirstamp) \ + crypto_kdf/$(DEPDIR)/$(am__dirstamp) +crypto_kx/$(am__dirstamp): + @$(MKDIR_P) crypto_kx + @: > crypto_kx/$(am__dirstamp) +crypto_kx/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_kx/$(DEPDIR) + @: > crypto_kx/$(DEPDIR)/$(am__dirstamp) +crypto_kx/libsodium_la-crypto_kx.lo: crypto_kx/$(am__dirstamp) \ + crypto_kx/$(DEPDIR)/$(am__dirstamp) +crypto_onetimeauth/$(am__dirstamp): + @$(MKDIR_P) crypto_onetimeauth + @: > crypto_onetimeauth/$(am__dirstamp) +crypto_onetimeauth/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_onetimeauth/$(DEPDIR) + @: > crypto_onetimeauth/$(DEPDIR)/$(am__dirstamp) +crypto_onetimeauth/libsodium_la-crypto_onetimeauth.lo: \ + crypto_onetimeauth/$(am__dirstamp) \ + crypto_onetimeauth/$(DEPDIR)/$(am__dirstamp) +crypto_onetimeauth/poly1305/$(am__dirstamp): + @$(MKDIR_P) crypto_onetimeauth/poly1305 + @: > crypto_onetimeauth/poly1305/$(am__dirstamp) +crypto_onetimeauth/poly1305/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_onetimeauth/poly1305/$(DEPDIR) + @: > crypto_onetimeauth/poly1305/$(DEPDIR)/$(am__dirstamp) +crypto_onetimeauth/poly1305/libsodium_la-onetimeauth_poly1305.lo: \ + crypto_onetimeauth/poly1305/$(am__dirstamp) \ + crypto_onetimeauth/poly1305/$(DEPDIR)/$(am__dirstamp) +crypto_onetimeauth/poly1305/donna/$(am__dirstamp): + @$(MKDIR_P) crypto_onetimeauth/poly1305/donna + @: > crypto_onetimeauth/poly1305/donna/$(am__dirstamp) +crypto_onetimeauth/poly1305/donna/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_onetimeauth/poly1305/donna/$(DEPDIR) + @: > crypto_onetimeauth/poly1305/donna/$(DEPDIR)/$(am__dirstamp) +crypto_onetimeauth/poly1305/donna/libsodium_la-poly1305_donna.lo: \ + crypto_onetimeauth/poly1305/donna/$(am__dirstamp) \ + crypto_onetimeauth/poly1305/donna/$(DEPDIR)/$(am__dirstamp) +crypto_pwhash/argon2/libsodium_la-argon2-core.lo: \ + crypto_pwhash/argon2/$(am__dirstamp) \ + crypto_pwhash/argon2/$(DEPDIR)/$(am__dirstamp) +crypto_pwhash/argon2/libsodium_la-argon2-encoding.lo: \ + crypto_pwhash/argon2/$(am__dirstamp) \ + crypto_pwhash/argon2/$(DEPDIR)/$(am__dirstamp) +crypto_pwhash/argon2/libsodium_la-argon2-fill-block-ref.lo: \ + crypto_pwhash/argon2/$(am__dirstamp) \ + crypto_pwhash/argon2/$(DEPDIR)/$(am__dirstamp) +crypto_pwhash/argon2/libsodium_la-argon2.lo: \ + crypto_pwhash/argon2/$(am__dirstamp) \ + crypto_pwhash/argon2/$(DEPDIR)/$(am__dirstamp) +crypto_pwhash/argon2/libsodium_la-blake2b-long.lo: \ + crypto_pwhash/argon2/$(am__dirstamp) \ + crypto_pwhash/argon2/$(DEPDIR)/$(am__dirstamp) +crypto_pwhash/argon2/libsodium_la-pwhash_argon2i.lo: \ + crypto_pwhash/argon2/$(am__dirstamp) \ + crypto_pwhash/argon2/$(DEPDIR)/$(am__dirstamp) +crypto_pwhash/argon2/libsodium_la-pwhash_argon2id.lo: \ + crypto_pwhash/argon2/$(am__dirstamp) \ + crypto_pwhash/argon2/$(DEPDIR)/$(am__dirstamp) +crypto_pwhash/$(am__dirstamp): + @$(MKDIR_P) crypto_pwhash + @: > crypto_pwhash/$(am__dirstamp) +crypto_pwhash/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_pwhash/$(DEPDIR) + @: > crypto_pwhash/$(DEPDIR)/$(am__dirstamp) +crypto_pwhash/libsodium_la-crypto_pwhash.lo: \ + crypto_pwhash/$(am__dirstamp) \ + crypto_pwhash/$(DEPDIR)/$(am__dirstamp) +crypto_scalarmult/$(am__dirstamp): + @$(MKDIR_P) crypto_scalarmult + @: > crypto_scalarmult/$(am__dirstamp) +crypto_scalarmult/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_scalarmult/$(DEPDIR) + @: > crypto_scalarmult/$(DEPDIR)/$(am__dirstamp) +crypto_scalarmult/libsodium_la-crypto_scalarmult.lo: \ + crypto_scalarmult/$(am__dirstamp) \ + crypto_scalarmult/$(DEPDIR)/$(am__dirstamp) +crypto_scalarmult/curve25519/ref10/$(am__dirstamp): + @$(MKDIR_P) crypto_scalarmult/curve25519/ref10 + @: > crypto_scalarmult/curve25519/ref10/$(am__dirstamp) +crypto_scalarmult/curve25519/ref10/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_scalarmult/curve25519/ref10/$(DEPDIR) + @: > crypto_scalarmult/curve25519/ref10/$(DEPDIR)/$(am__dirstamp) +crypto_scalarmult/curve25519/ref10/libsodium_la-x25519_ref10.lo: \ + crypto_scalarmult/curve25519/ref10/$(am__dirstamp) \ + crypto_scalarmult/curve25519/ref10/$(DEPDIR)/$(am__dirstamp) +crypto_scalarmult/curve25519/$(am__dirstamp): + @$(MKDIR_P) crypto_scalarmult/curve25519 + @: > crypto_scalarmult/curve25519/$(am__dirstamp) +crypto_scalarmult/curve25519/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_scalarmult/curve25519/$(DEPDIR) + @: > crypto_scalarmult/curve25519/$(DEPDIR)/$(am__dirstamp) +crypto_scalarmult/curve25519/libsodium_la-scalarmult_curve25519.lo: \ + crypto_scalarmult/curve25519/$(am__dirstamp) \ + crypto_scalarmult/curve25519/$(DEPDIR)/$(am__dirstamp) +crypto_secretbox/$(am__dirstamp): + @$(MKDIR_P) crypto_secretbox + @: > crypto_secretbox/$(am__dirstamp) +crypto_secretbox/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_secretbox/$(DEPDIR) + @: > crypto_secretbox/$(DEPDIR)/$(am__dirstamp) +crypto_secretbox/libsodium_la-crypto_secretbox.lo: \ + crypto_secretbox/$(am__dirstamp) \ + crypto_secretbox/$(DEPDIR)/$(am__dirstamp) +crypto_secretbox/libsodium_la-crypto_secretbox_easy.lo: \ + crypto_secretbox/$(am__dirstamp) \ + crypto_secretbox/$(DEPDIR)/$(am__dirstamp) +crypto_secretbox/xsalsa20poly1305/$(am__dirstamp): + @$(MKDIR_P) crypto_secretbox/xsalsa20poly1305 + @: > crypto_secretbox/xsalsa20poly1305/$(am__dirstamp) +crypto_secretbox/xsalsa20poly1305/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_secretbox/xsalsa20poly1305/$(DEPDIR) + @: > crypto_secretbox/xsalsa20poly1305/$(DEPDIR)/$(am__dirstamp) +crypto_secretbox/xsalsa20poly1305/libsodium_la-secretbox_xsalsa20poly1305.lo: \ + crypto_secretbox/xsalsa20poly1305/$(am__dirstamp) \ + crypto_secretbox/xsalsa20poly1305/$(DEPDIR)/$(am__dirstamp) +crypto_secretstream/xchacha20poly1305/$(am__dirstamp): + @$(MKDIR_P) crypto_secretstream/xchacha20poly1305 + @: > crypto_secretstream/xchacha20poly1305/$(am__dirstamp) +crypto_secretstream/xchacha20poly1305/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_secretstream/xchacha20poly1305/$(DEPDIR) + @: > crypto_secretstream/xchacha20poly1305/$(DEPDIR)/$(am__dirstamp) +crypto_secretstream/xchacha20poly1305/libsodium_la-secretstream_xchacha20poly1305.lo: \ + crypto_secretstream/xchacha20poly1305/$(am__dirstamp) \ + crypto_secretstream/xchacha20poly1305/$(DEPDIR)/$(am__dirstamp) +crypto_shorthash/$(am__dirstamp): + @$(MKDIR_P) crypto_shorthash + @: > crypto_shorthash/$(am__dirstamp) +crypto_shorthash/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_shorthash/$(DEPDIR) + @: > crypto_shorthash/$(DEPDIR)/$(am__dirstamp) +crypto_shorthash/libsodium_la-crypto_shorthash.lo: \ + crypto_shorthash/$(am__dirstamp) \ + crypto_shorthash/$(DEPDIR)/$(am__dirstamp) +crypto_shorthash/siphash24/$(am__dirstamp): + @$(MKDIR_P) crypto_shorthash/siphash24 + @: > crypto_shorthash/siphash24/$(am__dirstamp) +crypto_shorthash/siphash24/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_shorthash/siphash24/$(DEPDIR) + @: > crypto_shorthash/siphash24/$(DEPDIR)/$(am__dirstamp) +crypto_shorthash/siphash24/libsodium_la-shorthash_siphash24.lo: \ + crypto_shorthash/siphash24/$(am__dirstamp) \ + crypto_shorthash/siphash24/$(DEPDIR)/$(am__dirstamp) +crypto_shorthash/siphash24/ref/$(am__dirstamp): + @$(MKDIR_P) crypto_shorthash/siphash24/ref + @: > crypto_shorthash/siphash24/ref/$(am__dirstamp) +crypto_shorthash/siphash24/ref/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_shorthash/siphash24/ref/$(DEPDIR) + @: > crypto_shorthash/siphash24/ref/$(DEPDIR)/$(am__dirstamp) +crypto_shorthash/siphash24/ref/libsodium_la-shorthash_siphash24_ref.lo: \ + crypto_shorthash/siphash24/ref/$(am__dirstamp) \ + crypto_shorthash/siphash24/ref/$(DEPDIR)/$(am__dirstamp) +crypto_sign/$(am__dirstamp): + @$(MKDIR_P) crypto_sign + @: > crypto_sign/$(am__dirstamp) +crypto_sign/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_sign/$(DEPDIR) + @: > crypto_sign/$(DEPDIR)/$(am__dirstamp) +crypto_sign/libsodium_la-crypto_sign.lo: crypto_sign/$(am__dirstamp) \ + crypto_sign/$(DEPDIR)/$(am__dirstamp) +crypto_sign/ed25519/$(am__dirstamp): + @$(MKDIR_P) crypto_sign/ed25519 + @: > crypto_sign/ed25519/$(am__dirstamp) +crypto_sign/ed25519/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_sign/ed25519/$(DEPDIR) + @: > crypto_sign/ed25519/$(DEPDIR)/$(am__dirstamp) +crypto_sign/ed25519/libsodium_la-sign_ed25519.lo: \ + crypto_sign/ed25519/$(am__dirstamp) \ + crypto_sign/ed25519/$(DEPDIR)/$(am__dirstamp) +crypto_sign/ed25519/ref10/$(am__dirstamp): + @$(MKDIR_P) crypto_sign/ed25519/ref10 + @: > crypto_sign/ed25519/ref10/$(am__dirstamp) +crypto_sign/ed25519/ref10/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_sign/ed25519/ref10/$(DEPDIR) + @: > crypto_sign/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) +crypto_sign/ed25519/ref10/libsodium_la-keypair.lo: \ + crypto_sign/ed25519/ref10/$(am__dirstamp) \ + crypto_sign/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) +crypto_sign/ed25519/ref10/libsodium_la-open.lo: \ + crypto_sign/ed25519/ref10/$(am__dirstamp) \ + crypto_sign/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) +crypto_sign/ed25519/ref10/libsodium_la-sign.lo: \ + crypto_sign/ed25519/ref10/$(am__dirstamp) \ + crypto_sign/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) +crypto_stream/chacha20/$(am__dirstamp): + @$(MKDIR_P) crypto_stream/chacha20 + @: > crypto_stream/chacha20/$(am__dirstamp) +crypto_stream/chacha20/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_stream/chacha20/$(DEPDIR) + @: > crypto_stream/chacha20/$(DEPDIR)/$(am__dirstamp) +crypto_stream/chacha20/libsodium_la-stream_chacha20.lo: \ + crypto_stream/chacha20/$(am__dirstamp) \ + crypto_stream/chacha20/$(DEPDIR)/$(am__dirstamp) +crypto_stream/chacha20/ref/$(am__dirstamp): + @$(MKDIR_P) crypto_stream/chacha20/ref + @: > crypto_stream/chacha20/ref/$(am__dirstamp) +crypto_stream/chacha20/ref/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_stream/chacha20/ref/$(DEPDIR) + @: > crypto_stream/chacha20/ref/$(DEPDIR)/$(am__dirstamp) +crypto_stream/chacha20/ref/libsodium_la-chacha20_ref.lo: \ + crypto_stream/chacha20/ref/$(am__dirstamp) \ + crypto_stream/chacha20/ref/$(DEPDIR)/$(am__dirstamp) +crypto_stream/$(am__dirstamp): + @$(MKDIR_P) crypto_stream + @: > crypto_stream/$(am__dirstamp) +crypto_stream/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_stream/$(DEPDIR) + @: > crypto_stream/$(DEPDIR)/$(am__dirstamp) +crypto_stream/libsodium_la-crypto_stream.lo: \ + crypto_stream/$(am__dirstamp) \ + crypto_stream/$(DEPDIR)/$(am__dirstamp) +crypto_stream/salsa20/$(am__dirstamp): + @$(MKDIR_P) crypto_stream/salsa20 + @: > crypto_stream/salsa20/$(am__dirstamp) +crypto_stream/salsa20/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_stream/salsa20/$(DEPDIR) + @: > crypto_stream/salsa20/$(DEPDIR)/$(am__dirstamp) +crypto_stream/salsa20/libsodium_la-stream_salsa20.lo: \ + crypto_stream/salsa20/$(am__dirstamp) \ + crypto_stream/salsa20/$(DEPDIR)/$(am__dirstamp) +crypto_stream/xsalsa20/$(am__dirstamp): + @$(MKDIR_P) crypto_stream/xsalsa20 + @: > crypto_stream/xsalsa20/$(am__dirstamp) +crypto_stream/xsalsa20/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_stream/xsalsa20/$(DEPDIR) + @: > crypto_stream/xsalsa20/$(DEPDIR)/$(am__dirstamp) +crypto_stream/xsalsa20/libsodium_la-stream_xsalsa20.lo: \ + crypto_stream/xsalsa20/$(am__dirstamp) \ + crypto_stream/xsalsa20/$(DEPDIR)/$(am__dirstamp) +crypto_verify/sodium/$(am__dirstamp): + @$(MKDIR_P) crypto_verify/sodium + @: > crypto_verify/sodium/$(am__dirstamp) +crypto_verify/sodium/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_verify/sodium/$(DEPDIR) + @: > crypto_verify/sodium/$(DEPDIR)/$(am__dirstamp) +crypto_verify/sodium/libsodium_la-verify.lo: \ + crypto_verify/sodium/$(am__dirstamp) \ + crypto_verify/sodium/$(DEPDIR)/$(am__dirstamp) +randombytes/$(am__dirstamp): + @$(MKDIR_P) randombytes + @: > randombytes/$(am__dirstamp) +randombytes/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) randombytes/$(DEPDIR) + @: > randombytes/$(DEPDIR)/$(am__dirstamp) +randombytes/libsodium_la-randombytes.lo: randombytes/$(am__dirstamp) \ + randombytes/$(DEPDIR)/$(am__dirstamp) +sodium/$(am__dirstamp): + @$(MKDIR_P) sodium + @: > sodium/$(am__dirstamp) +sodium/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) sodium/$(DEPDIR) + @: > sodium/$(DEPDIR)/$(am__dirstamp) +sodium/libsodium_la-codecs.lo: sodium/$(am__dirstamp) \ + sodium/$(DEPDIR)/$(am__dirstamp) +sodium/libsodium_la-core.lo: sodium/$(am__dirstamp) \ + sodium/$(DEPDIR)/$(am__dirstamp) +sodium/libsodium_la-runtime.lo: sodium/$(am__dirstamp) \ + sodium/$(DEPDIR)/$(am__dirstamp) +sodium/libsodium_la-utils.lo: sodium/$(am__dirstamp) \ + sodium/$(DEPDIR)/$(am__dirstamp) +sodium/libsodium_la-version.lo: sodium/$(am__dirstamp) \ + sodium/$(DEPDIR)/$(am__dirstamp) +crypto_stream/salsa20/xmm6/$(am__dirstamp): + @$(MKDIR_P) crypto_stream/salsa20/xmm6 + @: > crypto_stream/salsa20/xmm6/$(am__dirstamp) +crypto_stream/salsa20/xmm6/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_stream/salsa20/xmm6/$(DEPDIR) + @: > crypto_stream/salsa20/xmm6/$(DEPDIR)/$(am__dirstamp) +crypto_stream/salsa20/xmm6/libsodium_la-salsa20_xmm6-asm.lo: \ + crypto_stream/salsa20/xmm6/$(am__dirstamp) \ + crypto_stream/salsa20/xmm6/$(DEPDIR)/$(am__dirstamp) +crypto_stream/salsa20/xmm6/libsodium_la-salsa20_xmm6.lo: \ + crypto_stream/salsa20/xmm6/$(am__dirstamp) \ + crypto_stream/salsa20/xmm6/$(DEPDIR)/$(am__dirstamp) +crypto_stream/salsa20/ref/$(am__dirstamp): + @$(MKDIR_P) crypto_stream/salsa20/ref + @: > crypto_stream/salsa20/ref/$(am__dirstamp) +crypto_stream/salsa20/ref/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_stream/salsa20/ref/$(DEPDIR) + @: > crypto_stream/salsa20/ref/$(DEPDIR)/$(am__dirstamp) +crypto_stream/salsa20/ref/libsodium_la-salsa20_ref.lo: \ + crypto_stream/salsa20/ref/$(am__dirstamp) \ + crypto_stream/salsa20/ref/$(DEPDIR)/$(am__dirstamp) +crypto_scalarmult/curve25519/sandy2x/$(am__dirstamp): + @$(MKDIR_P) crypto_scalarmult/curve25519/sandy2x + @: > crypto_scalarmult/curve25519/sandy2x/$(am__dirstamp) +crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_scalarmult/curve25519/sandy2x/$(DEPDIR) + @: > crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/$(am__dirstamp) +crypto_scalarmult/curve25519/sandy2x/libsodium_la-curve25519_sandy2x.lo: \ + crypto_scalarmult/curve25519/sandy2x/$(am__dirstamp) \ + crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/$(am__dirstamp) +crypto_scalarmult/curve25519/sandy2x/libsodium_la-fe51_invert.lo: \ + crypto_scalarmult/curve25519/sandy2x/$(am__dirstamp) \ + crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/$(am__dirstamp) +crypto_scalarmult/curve25519/sandy2x/libsodium_la-fe_frombytes_sandy2x.lo: \ + crypto_scalarmult/curve25519/sandy2x/$(am__dirstamp) \ + crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/$(am__dirstamp) +crypto_scalarmult/curve25519/sandy2x/libsodium_la-sandy2x.lo: \ + crypto_scalarmult/curve25519/sandy2x/$(am__dirstamp) \ + crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/$(am__dirstamp) +crypto_box/curve25519xchacha20poly1305/$(am__dirstamp): + @$(MKDIR_P) crypto_box/curve25519xchacha20poly1305 + @: > crypto_box/curve25519xchacha20poly1305/$(am__dirstamp) +crypto_box/curve25519xchacha20poly1305/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_box/curve25519xchacha20poly1305/$(DEPDIR) + @: > crypto_box/curve25519xchacha20poly1305/$(DEPDIR)/$(am__dirstamp) +crypto_box/curve25519xchacha20poly1305/libsodium_la-box_curve25519xchacha20poly1305.lo: \ + crypto_box/curve25519xchacha20poly1305/$(am__dirstamp) \ + crypto_box/curve25519xchacha20poly1305/$(DEPDIR)/$(am__dirstamp) +crypto_box/curve25519xchacha20poly1305/libsodium_la-box_seal_curve25519xchacha20poly1305.lo: \ + crypto_box/curve25519xchacha20poly1305/$(am__dirstamp) \ + crypto_box/curve25519xchacha20poly1305/$(DEPDIR)/$(am__dirstamp) +crypto_core/ed25519/$(am__dirstamp): + @$(MKDIR_P) crypto_core/ed25519 + @: > crypto_core/ed25519/$(am__dirstamp) +crypto_core/ed25519/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_core/ed25519/$(DEPDIR) + @: > crypto_core/ed25519/$(DEPDIR)/$(am__dirstamp) +crypto_core/ed25519/libsodium_la-core_ed25519.lo: \ + crypto_core/ed25519/$(am__dirstamp) \ + crypto_core/ed25519/$(DEPDIR)/$(am__dirstamp) +crypto_core/ed25519/libsodium_la-core_ristretto255.lo: \ + crypto_core/ed25519/$(am__dirstamp) \ + crypto_core/ed25519/$(DEPDIR)/$(am__dirstamp) +crypto_kdf/hkdf/$(am__dirstamp): + @$(MKDIR_P) crypto_kdf/hkdf + @: > crypto_kdf/hkdf/$(am__dirstamp) +crypto_kdf/hkdf/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_kdf/hkdf/$(DEPDIR) + @: > crypto_kdf/hkdf/$(DEPDIR)/$(am__dirstamp) +crypto_kdf/hkdf/libsodium_la-kdf_hkdf_sha256.lo: \ + crypto_kdf/hkdf/$(am__dirstamp) \ + crypto_kdf/hkdf/$(DEPDIR)/$(am__dirstamp) +crypto_kdf/hkdf/libsodium_la-kdf_hkdf_sha512.lo: \ + crypto_kdf/hkdf/$(am__dirstamp) \ + crypto_kdf/hkdf/$(DEPDIR)/$(am__dirstamp) +crypto_pwhash/scryptsalsa208sha256/$(am__dirstamp): + @$(MKDIR_P) crypto_pwhash/scryptsalsa208sha256 + @: > crypto_pwhash/scryptsalsa208sha256/$(am__dirstamp) +crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_pwhash/scryptsalsa208sha256/$(DEPDIR) + @: > crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/$(am__dirstamp) +crypto_pwhash/scryptsalsa208sha256/libsodium_la-crypto_scrypt-common.lo: \ + crypto_pwhash/scryptsalsa208sha256/$(am__dirstamp) \ + crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/$(am__dirstamp) +crypto_pwhash/scryptsalsa208sha256/libsodium_la-scrypt_platform.lo: \ + crypto_pwhash/scryptsalsa208sha256/$(am__dirstamp) \ + crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/$(am__dirstamp) +crypto_pwhash/scryptsalsa208sha256/libsodium_la-pbkdf2-sha256.lo: \ + crypto_pwhash/scryptsalsa208sha256/$(am__dirstamp) \ + crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/$(am__dirstamp) +crypto_pwhash/scryptsalsa208sha256/libsodium_la-pwhash_scryptsalsa208sha256.lo: \ + crypto_pwhash/scryptsalsa208sha256/$(am__dirstamp) \ + crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/$(am__dirstamp) +crypto_pwhash/scryptsalsa208sha256/nosse/$(am__dirstamp): + @$(MKDIR_P) crypto_pwhash/scryptsalsa208sha256/nosse + @: > crypto_pwhash/scryptsalsa208sha256/nosse/$(am__dirstamp) +crypto_pwhash/scryptsalsa208sha256/nosse/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_pwhash/scryptsalsa208sha256/nosse/$(DEPDIR) + @: > crypto_pwhash/scryptsalsa208sha256/nosse/$(DEPDIR)/$(am__dirstamp) +crypto_pwhash/scryptsalsa208sha256/nosse/libsodium_la-pwhash_scryptsalsa208sha256_nosse.lo: \ + crypto_pwhash/scryptsalsa208sha256/nosse/$(am__dirstamp) \ + crypto_pwhash/scryptsalsa208sha256/nosse/$(DEPDIR)/$(am__dirstamp) +crypto_scalarmult/ed25519/ref10/$(am__dirstamp): + @$(MKDIR_P) crypto_scalarmult/ed25519/ref10 + @: > crypto_scalarmult/ed25519/ref10/$(am__dirstamp) +crypto_scalarmult/ed25519/ref10/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_scalarmult/ed25519/ref10/$(DEPDIR) + @: > crypto_scalarmult/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) +crypto_scalarmult/ed25519/ref10/libsodium_la-scalarmult_ed25519_ref10.lo: \ + crypto_scalarmult/ed25519/ref10/$(am__dirstamp) \ + crypto_scalarmult/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) +crypto_scalarmult/ristretto255/ref10/$(am__dirstamp): + @$(MKDIR_P) crypto_scalarmult/ristretto255/ref10 + @: > crypto_scalarmult/ristretto255/ref10/$(am__dirstamp) +crypto_scalarmult/ristretto255/ref10/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_scalarmult/ristretto255/ref10/$(DEPDIR) + @: > crypto_scalarmult/ristretto255/ref10/$(DEPDIR)/$(am__dirstamp) +crypto_scalarmult/ristretto255/ref10/libsodium_la-scalarmult_ristretto255_ref10.lo: \ + crypto_scalarmult/ristretto255/ref10/$(am__dirstamp) \ + crypto_scalarmult/ristretto255/ref10/$(DEPDIR)/$(am__dirstamp) +crypto_secretbox/xchacha20poly1305/$(am__dirstamp): + @$(MKDIR_P) crypto_secretbox/xchacha20poly1305 + @: > crypto_secretbox/xchacha20poly1305/$(am__dirstamp) +crypto_secretbox/xchacha20poly1305/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_secretbox/xchacha20poly1305/$(DEPDIR) + @: > crypto_secretbox/xchacha20poly1305/$(DEPDIR)/$(am__dirstamp) +crypto_secretbox/xchacha20poly1305/libsodium_la-secretbox_xchacha20poly1305.lo: \ + crypto_secretbox/xchacha20poly1305/$(am__dirstamp) \ + crypto_secretbox/xchacha20poly1305/$(DEPDIR)/$(am__dirstamp) +crypto_shorthash/siphash24/libsodium_la-shorthash_siphashx24.lo: \ + crypto_shorthash/siphash24/$(am__dirstamp) \ + crypto_shorthash/siphash24/$(DEPDIR)/$(am__dirstamp) +crypto_shorthash/siphash24/ref/libsodium_la-shorthash_siphashx24_ref.lo: \ + crypto_shorthash/siphash24/ref/$(am__dirstamp) \ + crypto_shorthash/siphash24/ref/$(DEPDIR)/$(am__dirstamp) +crypto_stream/salsa2012/ref/$(am__dirstamp): + @$(MKDIR_P) crypto_stream/salsa2012/ref + @: > crypto_stream/salsa2012/ref/$(am__dirstamp) +crypto_stream/salsa2012/ref/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_stream/salsa2012/ref/$(DEPDIR) + @: > crypto_stream/salsa2012/ref/$(DEPDIR)/$(am__dirstamp) +crypto_stream/salsa2012/ref/libsodium_la-stream_salsa2012_ref.lo: \ + crypto_stream/salsa2012/ref/$(am__dirstamp) \ + crypto_stream/salsa2012/ref/$(DEPDIR)/$(am__dirstamp) +crypto_stream/salsa2012/$(am__dirstamp): + @$(MKDIR_P) crypto_stream/salsa2012 + @: > crypto_stream/salsa2012/$(am__dirstamp) +crypto_stream/salsa2012/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_stream/salsa2012/$(DEPDIR) + @: > crypto_stream/salsa2012/$(DEPDIR)/$(am__dirstamp) +crypto_stream/salsa2012/libsodium_la-stream_salsa2012.lo: \ + crypto_stream/salsa2012/$(am__dirstamp) \ + crypto_stream/salsa2012/$(DEPDIR)/$(am__dirstamp) +crypto_stream/salsa208/ref/$(am__dirstamp): + @$(MKDIR_P) crypto_stream/salsa208/ref + @: > crypto_stream/salsa208/ref/$(am__dirstamp) +crypto_stream/salsa208/ref/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_stream/salsa208/ref/$(DEPDIR) + @: > crypto_stream/salsa208/ref/$(DEPDIR)/$(am__dirstamp) +crypto_stream/salsa208/ref/libsodium_la-stream_salsa208_ref.lo: \ + crypto_stream/salsa208/ref/$(am__dirstamp) \ + crypto_stream/salsa208/ref/$(DEPDIR)/$(am__dirstamp) +crypto_stream/salsa208/$(am__dirstamp): + @$(MKDIR_P) crypto_stream/salsa208 + @: > crypto_stream/salsa208/$(am__dirstamp) +crypto_stream/salsa208/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_stream/salsa208/$(DEPDIR) + @: > crypto_stream/salsa208/$(DEPDIR)/$(am__dirstamp) +crypto_stream/salsa208/libsodium_la-stream_salsa208.lo: \ + crypto_stream/salsa208/$(am__dirstamp) \ + crypto_stream/salsa208/$(DEPDIR)/$(am__dirstamp) +crypto_stream/xchacha20/$(am__dirstamp): + @$(MKDIR_P) crypto_stream/xchacha20 + @: > crypto_stream/xchacha20/$(am__dirstamp) +crypto_stream/xchacha20/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_stream/xchacha20/$(DEPDIR) + @: > crypto_stream/xchacha20/$(DEPDIR)/$(am__dirstamp) +crypto_stream/xchacha20/libsodium_la-stream_xchacha20.lo: \ + crypto_stream/xchacha20/$(am__dirstamp) \ + crypto_stream/xchacha20/$(DEPDIR)/$(am__dirstamp) +randombytes/sysrandom/$(am__dirstamp): + @$(MKDIR_P) randombytes/sysrandom + @: > randombytes/sysrandom/$(am__dirstamp) +randombytes/sysrandom/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) randombytes/sysrandom/$(DEPDIR) + @: > randombytes/sysrandom/$(DEPDIR)/$(am__dirstamp) +randombytes/sysrandom/libsodium_la-randombytes_sysrandom.lo: \ + randombytes/sysrandom/$(am__dirstamp) \ + randombytes/sysrandom/$(DEPDIR)/$(am__dirstamp) + +libsodium.la: $(libsodium_la_OBJECTS) $(libsodium_la_DEPENDENCIES) $(EXTRA_libsodium_la_DEPENDENCIES) + $(AM_V_CCLD)$(libsodium_la_LINK) -rpath $(libdir) $(libsodium_la_OBJECTS) $(libsodium_la_LIBADD) $(LIBS) +crypto_onetimeauth/poly1305/sse2/$(am__dirstamp): + @$(MKDIR_P) crypto_onetimeauth/poly1305/sse2 + @: > crypto_onetimeauth/poly1305/sse2/$(am__dirstamp) +crypto_onetimeauth/poly1305/sse2/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_onetimeauth/poly1305/sse2/$(DEPDIR) + @: > crypto_onetimeauth/poly1305/sse2/$(DEPDIR)/$(am__dirstamp) +crypto_onetimeauth/poly1305/sse2/libsse2_la-poly1305_sse2.lo: \ + crypto_onetimeauth/poly1305/sse2/$(am__dirstamp) \ + crypto_onetimeauth/poly1305/sse2/$(DEPDIR)/$(am__dirstamp) +crypto_pwhash/scryptsalsa208sha256/sse/$(am__dirstamp): + @$(MKDIR_P) crypto_pwhash/scryptsalsa208sha256/sse + @: > crypto_pwhash/scryptsalsa208sha256/sse/$(am__dirstamp) +crypto_pwhash/scryptsalsa208sha256/sse/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) crypto_pwhash/scryptsalsa208sha256/sse/$(DEPDIR) + @: > crypto_pwhash/scryptsalsa208sha256/sse/$(DEPDIR)/$(am__dirstamp) +crypto_pwhash/scryptsalsa208sha256/sse/libsse2_la-pwhash_scryptsalsa208sha256_sse.lo: \ + crypto_pwhash/scryptsalsa208sha256/sse/$(am__dirstamp) \ + crypto_pwhash/scryptsalsa208sha256/sse/$(DEPDIR)/$(am__dirstamp) +crypto_stream/salsa20/xmm6int/libsse2_la-salsa20_xmm6int-sse2.lo: \ + crypto_stream/salsa20/xmm6int/$(am__dirstamp) \ + crypto_stream/salsa20/xmm6int/$(DEPDIR)/$(am__dirstamp) + +libsse2.la: $(libsse2_la_OBJECTS) $(libsse2_la_DEPENDENCIES) $(EXTRA_libsse2_la_DEPENDENCIES) + $(AM_V_CCLD)$(libsse2_la_LINK) $(libsse2_la_OBJECTS) $(libsse2_la_LIBADD) $(LIBS) +crypto_generichash/blake2b/ref/libsse41_la-blake2b-compress-sse41.lo: \ + crypto_generichash/blake2b/ref/$(am__dirstamp) \ + crypto_generichash/blake2b/ref/$(DEPDIR)/$(am__dirstamp) + +libsse41.la: $(libsse41_la_OBJECTS) $(libsse41_la_DEPENDENCIES) $(EXTRA_libsse41_la_DEPENDENCIES) + $(AM_V_CCLD)$(libsse41_la_LINK) $(libsse41_la_OBJECTS) $(libsse41_la_LIBADD) $(LIBS) +crypto_generichash/blake2b/ref/libssse3_la-blake2b-compress-ssse3.lo: \ + crypto_generichash/blake2b/ref/$(am__dirstamp) \ + crypto_generichash/blake2b/ref/$(DEPDIR)/$(am__dirstamp) +crypto_pwhash/argon2/libssse3_la-argon2-fill-block-ssse3.lo: \ + crypto_pwhash/argon2/$(am__dirstamp) \ + crypto_pwhash/argon2/$(DEPDIR)/$(am__dirstamp) +crypto_stream/chacha20/dolbeau/libssse3_la-chacha20_dolbeau-ssse3.lo: \ + crypto_stream/chacha20/dolbeau/$(am__dirstamp) \ + crypto_stream/chacha20/dolbeau/$(DEPDIR)/$(am__dirstamp) + +libssse3.la: $(libssse3_la_OBJECTS) $(libssse3_la_DEPENDENCIES) $(EXTRA_libssse3_la_DEPENDENCIES) + $(AM_V_CCLD)$(libssse3_la_LINK) $(libssse3_la_OBJECTS) $(libssse3_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + -rm -f crypto_aead/aegis256/*.$(OBJEXT) + -rm -f crypto_aead/aegis256/*.lo + -rm -f crypto_aead/aegis256/aesni/*.$(OBJEXT) + -rm -f crypto_aead/aegis256/aesni/*.lo + -rm -f crypto_aead/aegis256/armcrypto/*.$(OBJEXT) + -rm -f crypto_aead/aegis256/armcrypto/*.lo + -rm -f crypto_aead/aes256gcm/aesni/*.$(OBJEXT) + -rm -f crypto_aead/aes256gcm/aesni/*.lo + -rm -f crypto_aead/chacha20poly1305/sodium/*.$(OBJEXT) + -rm -f crypto_aead/chacha20poly1305/sodium/*.lo + -rm -f crypto_aead/xchacha20poly1305/sodium/*.$(OBJEXT) + -rm -f crypto_aead/xchacha20poly1305/sodium/*.lo + -rm -f crypto_auth/*.$(OBJEXT) + -rm -f crypto_auth/*.lo + -rm -f crypto_auth/hmacsha256/*.$(OBJEXT) + -rm -f crypto_auth/hmacsha256/*.lo + -rm -f crypto_auth/hmacsha512/*.$(OBJEXT) + -rm -f crypto_auth/hmacsha512/*.lo + -rm -f crypto_auth/hmacsha512256/*.$(OBJEXT) + -rm -f crypto_auth/hmacsha512256/*.lo + -rm -f crypto_box/*.$(OBJEXT) + -rm -f crypto_box/*.lo + -rm -f crypto_box/curve25519xchacha20poly1305/*.$(OBJEXT) + -rm -f crypto_box/curve25519xchacha20poly1305/*.lo + -rm -f crypto_box/curve25519xsalsa20poly1305/*.$(OBJEXT) + -rm -f crypto_box/curve25519xsalsa20poly1305/*.lo + -rm -f crypto_core/ed25519/*.$(OBJEXT) + -rm -f crypto_core/ed25519/*.lo + -rm -f crypto_core/ed25519/ref10/*.$(OBJEXT) + -rm -f crypto_core/ed25519/ref10/*.lo + -rm -f crypto_core/hchacha20/*.$(OBJEXT) + -rm -f crypto_core/hchacha20/*.lo + -rm -f crypto_core/hsalsa20/*.$(OBJEXT) + -rm -f crypto_core/hsalsa20/*.lo + -rm -f crypto_core/hsalsa20/ref2/*.$(OBJEXT) + -rm -f crypto_core/hsalsa20/ref2/*.lo + -rm -f crypto_core/salsa/ref/*.$(OBJEXT) + -rm -f crypto_core/salsa/ref/*.lo + -rm -f crypto_generichash/*.$(OBJEXT) + -rm -f crypto_generichash/*.lo + -rm -f crypto_generichash/blake2b/*.$(OBJEXT) + -rm -f crypto_generichash/blake2b/*.lo + -rm -f crypto_generichash/blake2b/ref/*.$(OBJEXT) + -rm -f crypto_generichash/blake2b/ref/*.lo + -rm -f crypto_hash/*.$(OBJEXT) + -rm -f crypto_hash/*.lo + -rm -f crypto_hash/sha256/*.$(OBJEXT) + -rm -f crypto_hash/sha256/*.lo + -rm -f crypto_hash/sha256/cp/*.$(OBJEXT) + -rm -f crypto_hash/sha256/cp/*.lo + -rm -f crypto_hash/sha512/*.$(OBJEXT) + -rm -f crypto_hash/sha512/*.lo + -rm -f crypto_hash/sha512/cp/*.$(OBJEXT) + -rm -f crypto_hash/sha512/cp/*.lo + -rm -f crypto_kdf/*.$(OBJEXT) + -rm -f crypto_kdf/*.lo + -rm -f crypto_kdf/blake2b/*.$(OBJEXT) + -rm -f crypto_kdf/blake2b/*.lo + -rm -f crypto_kdf/hkdf/*.$(OBJEXT) + -rm -f crypto_kdf/hkdf/*.lo + -rm -f crypto_kx/*.$(OBJEXT) + -rm -f crypto_kx/*.lo + -rm -f crypto_onetimeauth/*.$(OBJEXT) + -rm -f crypto_onetimeauth/*.lo + -rm -f crypto_onetimeauth/poly1305/*.$(OBJEXT) + -rm -f crypto_onetimeauth/poly1305/*.lo + -rm -f crypto_onetimeauth/poly1305/donna/*.$(OBJEXT) + -rm -f crypto_onetimeauth/poly1305/donna/*.lo + -rm -f crypto_onetimeauth/poly1305/sse2/*.$(OBJEXT) + -rm -f crypto_onetimeauth/poly1305/sse2/*.lo + -rm -f crypto_pwhash/*.$(OBJEXT) + -rm -f crypto_pwhash/*.lo + -rm -f crypto_pwhash/argon2/*.$(OBJEXT) + -rm -f crypto_pwhash/argon2/*.lo + -rm -f crypto_pwhash/scryptsalsa208sha256/*.$(OBJEXT) + -rm -f crypto_pwhash/scryptsalsa208sha256/*.lo + -rm -f crypto_pwhash/scryptsalsa208sha256/nosse/*.$(OBJEXT) + -rm -f crypto_pwhash/scryptsalsa208sha256/nosse/*.lo + -rm -f crypto_pwhash/scryptsalsa208sha256/sse/*.$(OBJEXT) + -rm -f crypto_pwhash/scryptsalsa208sha256/sse/*.lo + -rm -f crypto_scalarmult/*.$(OBJEXT) + -rm -f crypto_scalarmult/*.lo + -rm -f crypto_scalarmult/curve25519/*.$(OBJEXT) + -rm -f crypto_scalarmult/curve25519/*.lo + -rm -f crypto_scalarmult/curve25519/ref10/*.$(OBJEXT) + -rm -f crypto_scalarmult/curve25519/ref10/*.lo + -rm -f crypto_scalarmult/curve25519/sandy2x/*.$(OBJEXT) + -rm -f crypto_scalarmult/curve25519/sandy2x/*.lo + -rm -f crypto_scalarmult/ed25519/ref10/*.$(OBJEXT) + -rm -f crypto_scalarmult/ed25519/ref10/*.lo + -rm -f crypto_scalarmult/ristretto255/ref10/*.$(OBJEXT) + -rm -f crypto_scalarmult/ristretto255/ref10/*.lo + -rm -f crypto_secretbox/*.$(OBJEXT) + -rm -f crypto_secretbox/*.lo + -rm -f crypto_secretbox/xchacha20poly1305/*.$(OBJEXT) + -rm -f crypto_secretbox/xchacha20poly1305/*.lo + -rm -f crypto_secretbox/xsalsa20poly1305/*.$(OBJEXT) + -rm -f crypto_secretbox/xsalsa20poly1305/*.lo + -rm -f crypto_secretstream/xchacha20poly1305/*.$(OBJEXT) + -rm -f crypto_secretstream/xchacha20poly1305/*.lo + -rm -f crypto_shorthash/*.$(OBJEXT) + -rm -f crypto_shorthash/*.lo + -rm -f crypto_shorthash/siphash24/*.$(OBJEXT) + -rm -f crypto_shorthash/siphash24/*.lo + -rm -f crypto_shorthash/siphash24/ref/*.$(OBJEXT) + -rm -f crypto_shorthash/siphash24/ref/*.lo + -rm -f crypto_sign/*.$(OBJEXT) + -rm -f crypto_sign/*.lo + -rm -f crypto_sign/ed25519/*.$(OBJEXT) + -rm -f crypto_sign/ed25519/*.lo + -rm -f crypto_sign/ed25519/ref10/*.$(OBJEXT) + -rm -f crypto_sign/ed25519/ref10/*.lo + -rm -f crypto_stream/*.$(OBJEXT) + -rm -f crypto_stream/*.lo + -rm -f crypto_stream/chacha20/*.$(OBJEXT) + -rm -f crypto_stream/chacha20/*.lo + -rm -f crypto_stream/chacha20/dolbeau/*.$(OBJEXT) + -rm -f crypto_stream/chacha20/dolbeau/*.lo + -rm -f crypto_stream/chacha20/ref/*.$(OBJEXT) + -rm -f crypto_stream/chacha20/ref/*.lo + -rm -f crypto_stream/salsa20/*.$(OBJEXT) + -rm -f crypto_stream/salsa20/*.lo + -rm -f crypto_stream/salsa20/ref/*.$(OBJEXT) + -rm -f crypto_stream/salsa20/ref/*.lo + -rm -f crypto_stream/salsa20/xmm6/*.$(OBJEXT) + -rm -f crypto_stream/salsa20/xmm6/*.lo + -rm -f crypto_stream/salsa20/xmm6int/*.$(OBJEXT) + -rm -f crypto_stream/salsa20/xmm6int/*.lo + -rm -f crypto_stream/salsa2012/*.$(OBJEXT) + -rm -f crypto_stream/salsa2012/*.lo + -rm -f crypto_stream/salsa2012/ref/*.$(OBJEXT) + -rm -f crypto_stream/salsa2012/ref/*.lo + -rm -f crypto_stream/salsa208/*.$(OBJEXT) + -rm -f crypto_stream/salsa208/*.lo + -rm -f crypto_stream/salsa208/ref/*.$(OBJEXT) + -rm -f crypto_stream/salsa208/ref/*.lo + -rm -f crypto_stream/xchacha20/*.$(OBJEXT) + -rm -f crypto_stream/xchacha20/*.lo + -rm -f crypto_stream/xsalsa20/*.$(OBJEXT) + -rm -f crypto_stream/xsalsa20/*.lo + -rm -f crypto_verify/sodium/*.$(OBJEXT) + -rm -f crypto_verify/sodium/*.lo + -rm -f randombytes/*.$(OBJEXT) + -rm -f randombytes/*.lo + -rm -f randombytes/internal/*.$(OBJEXT) + -rm -f randombytes/internal/*.lo + -rm -f randombytes/sysrandom/*.$(OBJEXT) + -rm -f randombytes/sysrandom/*.lo + -rm -f sodium/*.$(OBJEXT) + -rm -f sodium/*.lo + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@crypto_aead/aegis256/$(DEPDIR)/libsodium_la-aead_aegis256.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_aead/aegis256/aesni/$(DEPDIR)/libaesni_la-aead_aegis256_aesni.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_aead/aegis256/armcrypto/$(DEPDIR)/libarmcrypto_la-aead_aegis256_armcrypto.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_aead/aes256gcm/aesni/$(DEPDIR)/libaesni_la-aead_aes256gcm_aesni.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_aead/chacha20poly1305/sodium/$(DEPDIR)/libsodium_la-aead_chacha20poly1305.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_aead/xchacha20poly1305/sodium/$(DEPDIR)/libsodium_la-aead_xchacha20poly1305.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_auth/$(DEPDIR)/libsodium_la-crypto_auth.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_auth/hmacsha256/$(DEPDIR)/libsodium_la-auth_hmacsha256.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_auth/hmacsha512/$(DEPDIR)/libsodium_la-auth_hmacsha512.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_auth/hmacsha512256/$(DEPDIR)/libsodium_la-auth_hmacsha512256.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_box/$(DEPDIR)/libsodium_la-crypto_box.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_box/$(DEPDIR)/libsodium_la-crypto_box_easy.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_box/$(DEPDIR)/libsodium_la-crypto_box_seal.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_box/curve25519xchacha20poly1305/$(DEPDIR)/libsodium_la-box_curve25519xchacha20poly1305.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_box/curve25519xchacha20poly1305/$(DEPDIR)/libsodium_la-box_seal_curve25519xchacha20poly1305.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_box/curve25519xsalsa20poly1305/$(DEPDIR)/libsodium_la-box_curve25519xsalsa20poly1305.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_core/ed25519/$(DEPDIR)/libsodium_la-core_ed25519.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_core/ed25519/$(DEPDIR)/libsodium_la-core_ristretto255.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_core/ed25519/ref10/$(DEPDIR)/libsodium_la-ed25519_ref10.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_core/hchacha20/$(DEPDIR)/libsodium_la-core_hchacha20.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_core/hsalsa20/$(DEPDIR)/libsodium_la-core_hsalsa20.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_core/hsalsa20/ref2/$(DEPDIR)/libsodium_la-core_hsalsa20_ref2.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_core/salsa/ref/$(DEPDIR)/libsodium_la-core_salsa_ref.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_generichash/$(DEPDIR)/libsodium_la-crypto_generichash.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_generichash/blake2b/$(DEPDIR)/libsodium_la-generichash_blake2.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_generichash/blake2b/ref/$(DEPDIR)/libavx2_la-blake2b-compress-avx2.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_generichash/blake2b/ref/$(DEPDIR)/libsodium_la-blake2b-compress-ref.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_generichash/blake2b/ref/$(DEPDIR)/libsodium_la-blake2b-ref.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_generichash/blake2b/ref/$(DEPDIR)/libsodium_la-generichash_blake2b.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_generichash/blake2b/ref/$(DEPDIR)/libsse41_la-blake2b-compress-sse41.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_generichash/blake2b/ref/$(DEPDIR)/libssse3_la-blake2b-compress-ssse3.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_hash/$(DEPDIR)/libsodium_la-crypto_hash.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_hash/sha256/$(DEPDIR)/libsodium_la-hash_sha256.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_hash/sha256/cp/$(DEPDIR)/libsodium_la-hash_sha256_cp.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_hash/sha512/$(DEPDIR)/libsodium_la-hash_sha512.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_hash/sha512/cp/$(DEPDIR)/libsodium_la-hash_sha512_cp.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_kdf/$(DEPDIR)/libsodium_la-crypto_kdf.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_kdf/blake2b/$(DEPDIR)/libsodium_la-kdf_blake2b.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_kdf/hkdf/$(DEPDIR)/libsodium_la-kdf_hkdf_sha256.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_kdf/hkdf/$(DEPDIR)/libsodium_la-kdf_hkdf_sha512.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_kx/$(DEPDIR)/libsodium_la-crypto_kx.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_onetimeauth/$(DEPDIR)/libsodium_la-crypto_onetimeauth.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_onetimeauth/poly1305/$(DEPDIR)/libsodium_la-onetimeauth_poly1305.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_onetimeauth/poly1305/donna/$(DEPDIR)/libsodium_la-poly1305_donna.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_onetimeauth/poly1305/sse2/$(DEPDIR)/libsse2_la-poly1305_sse2.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_pwhash/$(DEPDIR)/libsodium_la-crypto_pwhash.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_pwhash/argon2/$(DEPDIR)/libavx2_la-argon2-fill-block-avx2.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_pwhash/argon2/$(DEPDIR)/libavx512f_la-argon2-fill-block-avx512f.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-argon2-core.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-argon2-encoding.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-argon2-fill-block-ref.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-argon2.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-blake2b-long.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-pwhash_argon2i.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-pwhash_argon2id.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_pwhash/argon2/$(DEPDIR)/libssse3_la-argon2-fill-block-ssse3.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/libsodium_la-crypto_scrypt-common.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/libsodium_la-pbkdf2-sha256.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/libsodium_la-pwhash_scryptsalsa208sha256.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/libsodium_la-scrypt_platform.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_pwhash/scryptsalsa208sha256/nosse/$(DEPDIR)/libsodium_la-pwhash_scryptsalsa208sha256_nosse.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_pwhash/scryptsalsa208sha256/sse/$(DEPDIR)/libsse2_la-pwhash_scryptsalsa208sha256_sse.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_scalarmult/$(DEPDIR)/libsodium_la-crypto_scalarmult.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_scalarmult/curve25519/$(DEPDIR)/libsodium_la-scalarmult_curve25519.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_scalarmult/curve25519/ref10/$(DEPDIR)/libsodium_la-x25519_ref10.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/libsodium_la-curve25519_sandy2x.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/libsodium_la-fe51_invert.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/libsodium_la-fe_frombytes_sandy2x.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/libsodium_la-sandy2x.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_scalarmult/ed25519/ref10/$(DEPDIR)/libsodium_la-scalarmult_ed25519_ref10.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_scalarmult/ristretto255/ref10/$(DEPDIR)/libsodium_la-scalarmult_ristretto255_ref10.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_secretbox/$(DEPDIR)/libsodium_la-crypto_secretbox.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_secretbox/$(DEPDIR)/libsodium_la-crypto_secretbox_easy.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_secretbox/xchacha20poly1305/$(DEPDIR)/libsodium_la-secretbox_xchacha20poly1305.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_secretbox/xsalsa20poly1305/$(DEPDIR)/libsodium_la-secretbox_xsalsa20poly1305.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_secretstream/xchacha20poly1305/$(DEPDIR)/libsodium_la-secretstream_xchacha20poly1305.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_shorthash/$(DEPDIR)/libsodium_la-crypto_shorthash.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_shorthash/siphash24/$(DEPDIR)/libsodium_la-shorthash_siphash24.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_shorthash/siphash24/$(DEPDIR)/libsodium_la-shorthash_siphashx24.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_shorthash/siphash24/ref/$(DEPDIR)/libsodium_la-shorthash_siphash24_ref.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_shorthash/siphash24/ref/$(DEPDIR)/libsodium_la-shorthash_siphashx24_ref.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_sign/$(DEPDIR)/libsodium_la-crypto_sign.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_sign/ed25519/$(DEPDIR)/libsodium_la-sign_ed25519.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_sign/ed25519/ref10/$(DEPDIR)/libsodium_la-keypair.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_sign/ed25519/ref10/$(DEPDIR)/libsodium_la-open.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_sign/ed25519/ref10/$(DEPDIR)/libsodium_la-sign.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/$(DEPDIR)/libsodium_la-crypto_stream.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/chacha20/$(DEPDIR)/libsodium_la-stream_chacha20.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/chacha20/dolbeau/$(DEPDIR)/libavx2_la-chacha20_dolbeau-avx2.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/chacha20/dolbeau/$(DEPDIR)/libssse3_la-chacha20_dolbeau-ssse3.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/chacha20/ref/$(DEPDIR)/libsodium_la-chacha20_ref.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/salsa20/$(DEPDIR)/libsodium_la-stream_salsa20.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/salsa20/ref/$(DEPDIR)/libsodium_la-salsa20_ref.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/salsa20/xmm6/$(DEPDIR)/libsodium_la-salsa20_xmm6-asm.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/salsa20/xmm6/$(DEPDIR)/libsodium_la-salsa20_xmm6.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/salsa20/xmm6int/$(DEPDIR)/libavx2_la-salsa20_xmm6int-avx2.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/salsa20/xmm6int/$(DEPDIR)/libsse2_la-salsa20_xmm6int-sse2.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/salsa2012/$(DEPDIR)/libsodium_la-stream_salsa2012.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/salsa2012/ref/$(DEPDIR)/libsodium_la-stream_salsa2012_ref.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/salsa208/$(DEPDIR)/libsodium_la-stream_salsa208.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/salsa208/ref/$(DEPDIR)/libsodium_la-stream_salsa208_ref.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/xchacha20/$(DEPDIR)/libsodium_la-stream_xchacha20.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/xsalsa20/$(DEPDIR)/libsodium_la-stream_xsalsa20.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@crypto_verify/sodium/$(DEPDIR)/libsodium_la-verify.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@randombytes/$(DEPDIR)/libsodium_la-randombytes.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@randombytes/internal/$(DEPDIR)/librdrand_la-randombytes_internal_random.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@randombytes/sysrandom/$(DEPDIR)/libsodium_la-randombytes_sysrandom.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sodium/$(DEPDIR)/libsodium_la-codecs.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sodium/$(DEPDIR)/libsodium_la-core.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sodium/$(DEPDIR)/libsodium_la-runtime.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sodium/$(DEPDIR)/libsodium_la-utils.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sodium/$(DEPDIR)/libsodium_la-version.Plo@am__quote@ + +.S.o: +@am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ +@am__fastdepCCAS_TRUE@ $(CPPASCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ +@am__fastdepCCAS_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po +@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS@am__nodep@)$(CPPASCOMPILE) -c -o $@ $< + +.S.obj: +@am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ +@am__fastdepCCAS_TRUE@ $(CPPASCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ +@am__fastdepCCAS_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po +@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS@am__nodep@)$(CPPASCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.S.lo: +@am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ +@am__fastdepCCAS_TRUE@ $(LTCPPASCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ +@am__fastdepCCAS_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo +@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS@am__nodep@)$(LTCPPASCOMPILE) -c -o $@ $< + +crypto_stream/salsa20/xmm6/libsodium_la-salsa20_xmm6-asm.lo: crypto_stream/salsa20/xmm6/salsa20_xmm6-asm.S +@am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)$(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CCASFLAGS) $(CCASFLAGS) -MT crypto_stream/salsa20/xmm6/libsodium_la-salsa20_xmm6-asm.lo -MD -MP -MF crypto_stream/salsa20/xmm6/$(DEPDIR)/libsodium_la-salsa20_xmm6-asm.Tpo -c -o crypto_stream/salsa20/xmm6/libsodium_la-salsa20_xmm6-asm.lo `test -f 'crypto_stream/salsa20/xmm6/salsa20_xmm6-asm.S' || echo '$(srcdir)/'`crypto_stream/salsa20/xmm6/salsa20_xmm6-asm.S +@am__fastdepCCAS_TRUE@ $(AM_V_at)$(am__mv) crypto_stream/salsa20/xmm6/$(DEPDIR)/libsodium_la-salsa20_xmm6-asm.Tpo crypto_stream/salsa20/xmm6/$(DEPDIR)/libsodium_la-salsa20_xmm6-asm.Plo +@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS)source='crypto_stream/salsa20/xmm6/salsa20_xmm6-asm.S' object='crypto_stream/salsa20/xmm6/libsodium_la-salsa20_xmm6-asm.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS@am__nodep@)$(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CCASFLAGS) $(CCASFLAGS) -c -o crypto_stream/salsa20/xmm6/libsodium_la-salsa20_xmm6-asm.lo `test -f 'crypto_stream/salsa20/xmm6/salsa20_xmm6-asm.S' || echo '$(srcdir)/'`crypto_stream/salsa20/xmm6/salsa20_xmm6-asm.S + +crypto_scalarmult/curve25519/sandy2x/libsodium_la-sandy2x.lo: crypto_scalarmult/curve25519/sandy2x/sandy2x.S +@am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)$(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CCASFLAGS) $(CCASFLAGS) -MT crypto_scalarmult/curve25519/sandy2x/libsodium_la-sandy2x.lo -MD -MP -MF crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/libsodium_la-sandy2x.Tpo -c -o crypto_scalarmult/curve25519/sandy2x/libsodium_la-sandy2x.lo `test -f 'crypto_scalarmult/curve25519/sandy2x/sandy2x.S' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/sandy2x/sandy2x.S +@am__fastdepCCAS_TRUE@ $(AM_V_at)$(am__mv) crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/libsodium_la-sandy2x.Tpo crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/libsodium_la-sandy2x.Plo +@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS)source='crypto_scalarmult/curve25519/sandy2x/sandy2x.S' object='crypto_scalarmult/curve25519/sandy2x/libsodium_la-sandy2x.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS@am__nodep@)$(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CCASFLAGS) $(CCASFLAGS) -c -o crypto_scalarmult/curve25519/sandy2x/libsodium_la-sandy2x.lo `test -f 'crypto_scalarmult/curve25519/sandy2x/sandy2x.S' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/sandy2x/sandy2x.S + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ +@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ +@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ +@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ +@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ +@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ +@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +crypto_aead/aes256gcm/aesni/libaesni_la-aead_aes256gcm_aesni.lo: crypto_aead/aes256gcm/aesni/aead_aes256gcm_aesni.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libaesni_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_aead/aes256gcm/aesni/libaesni_la-aead_aes256gcm_aesni.lo -MD -MP -MF crypto_aead/aes256gcm/aesni/$(DEPDIR)/libaesni_la-aead_aes256gcm_aesni.Tpo -c -o crypto_aead/aes256gcm/aesni/libaesni_la-aead_aes256gcm_aesni.lo `test -f 'crypto_aead/aes256gcm/aesni/aead_aes256gcm_aesni.c' || echo '$(srcdir)/'`crypto_aead/aes256gcm/aesni/aead_aes256gcm_aesni.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_aead/aes256gcm/aesni/$(DEPDIR)/libaesni_la-aead_aes256gcm_aesni.Tpo crypto_aead/aes256gcm/aesni/$(DEPDIR)/libaesni_la-aead_aes256gcm_aesni.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_aead/aes256gcm/aesni/aead_aes256gcm_aesni.c' object='crypto_aead/aes256gcm/aesni/libaesni_la-aead_aes256gcm_aesni.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libaesni_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_aead/aes256gcm/aesni/libaesni_la-aead_aes256gcm_aesni.lo `test -f 'crypto_aead/aes256gcm/aesni/aead_aes256gcm_aesni.c' || echo '$(srcdir)/'`crypto_aead/aes256gcm/aesni/aead_aes256gcm_aesni.c + +crypto_aead/aegis256/aesni/libaesni_la-aead_aegis256_aesni.lo: crypto_aead/aegis256/aesni/aead_aegis256_aesni.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libaesni_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_aead/aegis256/aesni/libaesni_la-aead_aegis256_aesni.lo -MD -MP -MF crypto_aead/aegis256/aesni/$(DEPDIR)/libaesni_la-aead_aegis256_aesni.Tpo -c -o crypto_aead/aegis256/aesni/libaesni_la-aead_aegis256_aesni.lo `test -f 'crypto_aead/aegis256/aesni/aead_aegis256_aesni.c' || echo '$(srcdir)/'`crypto_aead/aegis256/aesni/aead_aegis256_aesni.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_aead/aegis256/aesni/$(DEPDIR)/libaesni_la-aead_aegis256_aesni.Tpo crypto_aead/aegis256/aesni/$(DEPDIR)/libaesni_la-aead_aegis256_aesni.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_aead/aegis256/aesni/aead_aegis256_aesni.c' object='crypto_aead/aegis256/aesni/libaesni_la-aead_aegis256_aesni.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libaesni_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_aead/aegis256/aesni/libaesni_la-aead_aegis256_aesni.lo `test -f 'crypto_aead/aegis256/aesni/aead_aegis256_aesni.c' || echo '$(srcdir)/'`crypto_aead/aegis256/aesni/aead_aegis256_aesni.c + +crypto_aead/aegis256/armcrypto/libarmcrypto_la-aead_aegis256_armcrypto.lo: crypto_aead/aegis256/armcrypto/aead_aegis256_armcrypto.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libarmcrypto_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_aead/aegis256/armcrypto/libarmcrypto_la-aead_aegis256_armcrypto.lo -MD -MP -MF crypto_aead/aegis256/armcrypto/$(DEPDIR)/libarmcrypto_la-aead_aegis256_armcrypto.Tpo -c -o crypto_aead/aegis256/armcrypto/libarmcrypto_la-aead_aegis256_armcrypto.lo `test -f 'crypto_aead/aegis256/armcrypto/aead_aegis256_armcrypto.c' || echo '$(srcdir)/'`crypto_aead/aegis256/armcrypto/aead_aegis256_armcrypto.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_aead/aegis256/armcrypto/$(DEPDIR)/libarmcrypto_la-aead_aegis256_armcrypto.Tpo crypto_aead/aegis256/armcrypto/$(DEPDIR)/libarmcrypto_la-aead_aegis256_armcrypto.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_aead/aegis256/armcrypto/aead_aegis256_armcrypto.c' object='crypto_aead/aegis256/armcrypto/libarmcrypto_la-aead_aegis256_armcrypto.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libarmcrypto_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_aead/aegis256/armcrypto/libarmcrypto_la-aead_aegis256_armcrypto.lo `test -f 'crypto_aead/aegis256/armcrypto/aead_aegis256_armcrypto.c' || echo '$(srcdir)/'`crypto_aead/aegis256/armcrypto/aead_aegis256_armcrypto.c + +crypto_generichash/blake2b/ref/libavx2_la-blake2b-compress-avx2.lo: crypto_generichash/blake2b/ref/blake2b-compress-avx2.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libavx2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_generichash/blake2b/ref/libavx2_la-blake2b-compress-avx2.lo -MD -MP -MF crypto_generichash/blake2b/ref/$(DEPDIR)/libavx2_la-blake2b-compress-avx2.Tpo -c -o crypto_generichash/blake2b/ref/libavx2_la-blake2b-compress-avx2.lo `test -f 'crypto_generichash/blake2b/ref/blake2b-compress-avx2.c' || echo '$(srcdir)/'`crypto_generichash/blake2b/ref/blake2b-compress-avx2.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_generichash/blake2b/ref/$(DEPDIR)/libavx2_la-blake2b-compress-avx2.Tpo crypto_generichash/blake2b/ref/$(DEPDIR)/libavx2_la-blake2b-compress-avx2.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_generichash/blake2b/ref/blake2b-compress-avx2.c' object='crypto_generichash/blake2b/ref/libavx2_la-blake2b-compress-avx2.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libavx2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_generichash/blake2b/ref/libavx2_la-blake2b-compress-avx2.lo `test -f 'crypto_generichash/blake2b/ref/blake2b-compress-avx2.c' || echo '$(srcdir)/'`crypto_generichash/blake2b/ref/blake2b-compress-avx2.c + +crypto_pwhash/argon2/libavx2_la-argon2-fill-block-avx2.lo: crypto_pwhash/argon2/argon2-fill-block-avx2.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libavx2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_pwhash/argon2/libavx2_la-argon2-fill-block-avx2.lo -MD -MP -MF crypto_pwhash/argon2/$(DEPDIR)/libavx2_la-argon2-fill-block-avx2.Tpo -c -o crypto_pwhash/argon2/libavx2_la-argon2-fill-block-avx2.lo `test -f 'crypto_pwhash/argon2/argon2-fill-block-avx2.c' || echo '$(srcdir)/'`crypto_pwhash/argon2/argon2-fill-block-avx2.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_pwhash/argon2/$(DEPDIR)/libavx2_la-argon2-fill-block-avx2.Tpo crypto_pwhash/argon2/$(DEPDIR)/libavx2_la-argon2-fill-block-avx2.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_pwhash/argon2/argon2-fill-block-avx2.c' object='crypto_pwhash/argon2/libavx2_la-argon2-fill-block-avx2.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libavx2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_pwhash/argon2/libavx2_la-argon2-fill-block-avx2.lo `test -f 'crypto_pwhash/argon2/argon2-fill-block-avx2.c' || echo '$(srcdir)/'`crypto_pwhash/argon2/argon2-fill-block-avx2.c + +crypto_stream/chacha20/dolbeau/libavx2_la-chacha20_dolbeau-avx2.lo: crypto_stream/chacha20/dolbeau/chacha20_dolbeau-avx2.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libavx2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_stream/chacha20/dolbeau/libavx2_la-chacha20_dolbeau-avx2.lo -MD -MP -MF crypto_stream/chacha20/dolbeau/$(DEPDIR)/libavx2_la-chacha20_dolbeau-avx2.Tpo -c -o crypto_stream/chacha20/dolbeau/libavx2_la-chacha20_dolbeau-avx2.lo `test -f 'crypto_stream/chacha20/dolbeau/chacha20_dolbeau-avx2.c' || echo '$(srcdir)/'`crypto_stream/chacha20/dolbeau/chacha20_dolbeau-avx2.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_stream/chacha20/dolbeau/$(DEPDIR)/libavx2_la-chacha20_dolbeau-avx2.Tpo crypto_stream/chacha20/dolbeau/$(DEPDIR)/libavx2_la-chacha20_dolbeau-avx2.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_stream/chacha20/dolbeau/chacha20_dolbeau-avx2.c' object='crypto_stream/chacha20/dolbeau/libavx2_la-chacha20_dolbeau-avx2.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libavx2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_stream/chacha20/dolbeau/libavx2_la-chacha20_dolbeau-avx2.lo `test -f 'crypto_stream/chacha20/dolbeau/chacha20_dolbeau-avx2.c' || echo '$(srcdir)/'`crypto_stream/chacha20/dolbeau/chacha20_dolbeau-avx2.c + +crypto_stream/salsa20/xmm6int/libavx2_la-salsa20_xmm6int-avx2.lo: crypto_stream/salsa20/xmm6int/salsa20_xmm6int-avx2.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libavx2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_stream/salsa20/xmm6int/libavx2_la-salsa20_xmm6int-avx2.lo -MD -MP -MF crypto_stream/salsa20/xmm6int/$(DEPDIR)/libavx2_la-salsa20_xmm6int-avx2.Tpo -c -o crypto_stream/salsa20/xmm6int/libavx2_la-salsa20_xmm6int-avx2.lo `test -f 'crypto_stream/salsa20/xmm6int/salsa20_xmm6int-avx2.c' || echo '$(srcdir)/'`crypto_stream/salsa20/xmm6int/salsa20_xmm6int-avx2.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_stream/salsa20/xmm6int/$(DEPDIR)/libavx2_la-salsa20_xmm6int-avx2.Tpo crypto_stream/salsa20/xmm6int/$(DEPDIR)/libavx2_la-salsa20_xmm6int-avx2.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_stream/salsa20/xmm6int/salsa20_xmm6int-avx2.c' object='crypto_stream/salsa20/xmm6int/libavx2_la-salsa20_xmm6int-avx2.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libavx2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_stream/salsa20/xmm6int/libavx2_la-salsa20_xmm6int-avx2.lo `test -f 'crypto_stream/salsa20/xmm6int/salsa20_xmm6int-avx2.c' || echo '$(srcdir)/'`crypto_stream/salsa20/xmm6int/salsa20_xmm6int-avx2.c + +crypto_pwhash/argon2/libavx512f_la-argon2-fill-block-avx512f.lo: crypto_pwhash/argon2/argon2-fill-block-avx512f.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libavx512f_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_pwhash/argon2/libavx512f_la-argon2-fill-block-avx512f.lo -MD -MP -MF crypto_pwhash/argon2/$(DEPDIR)/libavx512f_la-argon2-fill-block-avx512f.Tpo -c -o crypto_pwhash/argon2/libavx512f_la-argon2-fill-block-avx512f.lo `test -f 'crypto_pwhash/argon2/argon2-fill-block-avx512f.c' || echo '$(srcdir)/'`crypto_pwhash/argon2/argon2-fill-block-avx512f.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_pwhash/argon2/$(DEPDIR)/libavx512f_la-argon2-fill-block-avx512f.Tpo crypto_pwhash/argon2/$(DEPDIR)/libavx512f_la-argon2-fill-block-avx512f.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_pwhash/argon2/argon2-fill-block-avx512f.c' object='crypto_pwhash/argon2/libavx512f_la-argon2-fill-block-avx512f.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libavx512f_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_pwhash/argon2/libavx512f_la-argon2-fill-block-avx512f.lo `test -f 'crypto_pwhash/argon2/argon2-fill-block-avx512f.c' || echo '$(srcdir)/'`crypto_pwhash/argon2/argon2-fill-block-avx512f.c + +randombytes/internal/librdrand_la-randombytes_internal_random.lo: randombytes/internal/randombytes_internal_random.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(librdrand_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT randombytes/internal/librdrand_la-randombytes_internal_random.lo -MD -MP -MF randombytes/internal/$(DEPDIR)/librdrand_la-randombytes_internal_random.Tpo -c -o randombytes/internal/librdrand_la-randombytes_internal_random.lo `test -f 'randombytes/internal/randombytes_internal_random.c' || echo '$(srcdir)/'`randombytes/internal/randombytes_internal_random.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) randombytes/internal/$(DEPDIR)/librdrand_la-randombytes_internal_random.Tpo randombytes/internal/$(DEPDIR)/librdrand_la-randombytes_internal_random.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='randombytes/internal/randombytes_internal_random.c' object='randombytes/internal/librdrand_la-randombytes_internal_random.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(librdrand_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o randombytes/internal/librdrand_la-randombytes_internal_random.lo `test -f 'randombytes/internal/randombytes_internal_random.c' || echo '$(srcdir)/'`randombytes/internal/randombytes_internal_random.c + +crypto_aead/aegis256/libsodium_la-aead_aegis256.lo: crypto_aead/aegis256/aead_aegis256.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_aead/aegis256/libsodium_la-aead_aegis256.lo -MD -MP -MF crypto_aead/aegis256/$(DEPDIR)/libsodium_la-aead_aegis256.Tpo -c -o crypto_aead/aegis256/libsodium_la-aead_aegis256.lo `test -f 'crypto_aead/aegis256/aead_aegis256.c' || echo '$(srcdir)/'`crypto_aead/aegis256/aead_aegis256.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_aead/aegis256/$(DEPDIR)/libsodium_la-aead_aegis256.Tpo crypto_aead/aegis256/$(DEPDIR)/libsodium_la-aead_aegis256.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_aead/aegis256/aead_aegis256.c' object='crypto_aead/aegis256/libsodium_la-aead_aegis256.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_aead/aegis256/libsodium_la-aead_aegis256.lo `test -f 'crypto_aead/aegis256/aead_aegis256.c' || echo '$(srcdir)/'`crypto_aead/aegis256/aead_aegis256.c + +crypto_aead/chacha20poly1305/sodium/libsodium_la-aead_chacha20poly1305.lo: crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_aead/chacha20poly1305/sodium/libsodium_la-aead_chacha20poly1305.lo -MD -MP -MF crypto_aead/chacha20poly1305/sodium/$(DEPDIR)/libsodium_la-aead_chacha20poly1305.Tpo -c -o crypto_aead/chacha20poly1305/sodium/libsodium_la-aead_chacha20poly1305.lo `test -f 'crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c' || echo '$(srcdir)/'`crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_aead/chacha20poly1305/sodium/$(DEPDIR)/libsodium_la-aead_chacha20poly1305.Tpo crypto_aead/chacha20poly1305/sodium/$(DEPDIR)/libsodium_la-aead_chacha20poly1305.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c' object='crypto_aead/chacha20poly1305/sodium/libsodium_la-aead_chacha20poly1305.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_aead/chacha20poly1305/sodium/libsodium_la-aead_chacha20poly1305.lo `test -f 'crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c' || echo '$(srcdir)/'`crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c + +crypto_aead/xchacha20poly1305/sodium/libsodium_la-aead_xchacha20poly1305.lo: crypto_aead/xchacha20poly1305/sodium/aead_xchacha20poly1305.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_aead/xchacha20poly1305/sodium/libsodium_la-aead_xchacha20poly1305.lo -MD -MP -MF crypto_aead/xchacha20poly1305/sodium/$(DEPDIR)/libsodium_la-aead_xchacha20poly1305.Tpo -c -o crypto_aead/xchacha20poly1305/sodium/libsodium_la-aead_xchacha20poly1305.lo `test -f 'crypto_aead/xchacha20poly1305/sodium/aead_xchacha20poly1305.c' || echo '$(srcdir)/'`crypto_aead/xchacha20poly1305/sodium/aead_xchacha20poly1305.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_aead/xchacha20poly1305/sodium/$(DEPDIR)/libsodium_la-aead_xchacha20poly1305.Tpo crypto_aead/xchacha20poly1305/sodium/$(DEPDIR)/libsodium_la-aead_xchacha20poly1305.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_aead/xchacha20poly1305/sodium/aead_xchacha20poly1305.c' object='crypto_aead/xchacha20poly1305/sodium/libsodium_la-aead_xchacha20poly1305.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_aead/xchacha20poly1305/sodium/libsodium_la-aead_xchacha20poly1305.lo `test -f 'crypto_aead/xchacha20poly1305/sodium/aead_xchacha20poly1305.c' || echo '$(srcdir)/'`crypto_aead/xchacha20poly1305/sodium/aead_xchacha20poly1305.c + +crypto_auth/libsodium_la-crypto_auth.lo: crypto_auth/crypto_auth.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_auth/libsodium_la-crypto_auth.lo -MD -MP -MF crypto_auth/$(DEPDIR)/libsodium_la-crypto_auth.Tpo -c -o crypto_auth/libsodium_la-crypto_auth.lo `test -f 'crypto_auth/crypto_auth.c' || echo '$(srcdir)/'`crypto_auth/crypto_auth.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_auth/$(DEPDIR)/libsodium_la-crypto_auth.Tpo crypto_auth/$(DEPDIR)/libsodium_la-crypto_auth.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_auth/crypto_auth.c' object='crypto_auth/libsodium_la-crypto_auth.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_auth/libsodium_la-crypto_auth.lo `test -f 'crypto_auth/crypto_auth.c' || echo '$(srcdir)/'`crypto_auth/crypto_auth.c + +crypto_auth/hmacsha256/libsodium_la-auth_hmacsha256.lo: crypto_auth/hmacsha256/auth_hmacsha256.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_auth/hmacsha256/libsodium_la-auth_hmacsha256.lo -MD -MP -MF crypto_auth/hmacsha256/$(DEPDIR)/libsodium_la-auth_hmacsha256.Tpo -c -o crypto_auth/hmacsha256/libsodium_la-auth_hmacsha256.lo `test -f 'crypto_auth/hmacsha256/auth_hmacsha256.c' || echo '$(srcdir)/'`crypto_auth/hmacsha256/auth_hmacsha256.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_auth/hmacsha256/$(DEPDIR)/libsodium_la-auth_hmacsha256.Tpo crypto_auth/hmacsha256/$(DEPDIR)/libsodium_la-auth_hmacsha256.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_auth/hmacsha256/auth_hmacsha256.c' object='crypto_auth/hmacsha256/libsodium_la-auth_hmacsha256.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_auth/hmacsha256/libsodium_la-auth_hmacsha256.lo `test -f 'crypto_auth/hmacsha256/auth_hmacsha256.c' || echo '$(srcdir)/'`crypto_auth/hmacsha256/auth_hmacsha256.c + +crypto_auth/hmacsha512/libsodium_la-auth_hmacsha512.lo: crypto_auth/hmacsha512/auth_hmacsha512.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_auth/hmacsha512/libsodium_la-auth_hmacsha512.lo -MD -MP -MF crypto_auth/hmacsha512/$(DEPDIR)/libsodium_la-auth_hmacsha512.Tpo -c -o crypto_auth/hmacsha512/libsodium_la-auth_hmacsha512.lo `test -f 'crypto_auth/hmacsha512/auth_hmacsha512.c' || echo '$(srcdir)/'`crypto_auth/hmacsha512/auth_hmacsha512.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_auth/hmacsha512/$(DEPDIR)/libsodium_la-auth_hmacsha512.Tpo crypto_auth/hmacsha512/$(DEPDIR)/libsodium_la-auth_hmacsha512.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_auth/hmacsha512/auth_hmacsha512.c' object='crypto_auth/hmacsha512/libsodium_la-auth_hmacsha512.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_auth/hmacsha512/libsodium_la-auth_hmacsha512.lo `test -f 'crypto_auth/hmacsha512/auth_hmacsha512.c' || echo '$(srcdir)/'`crypto_auth/hmacsha512/auth_hmacsha512.c + +crypto_auth/hmacsha512256/libsodium_la-auth_hmacsha512256.lo: crypto_auth/hmacsha512256/auth_hmacsha512256.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_auth/hmacsha512256/libsodium_la-auth_hmacsha512256.lo -MD -MP -MF crypto_auth/hmacsha512256/$(DEPDIR)/libsodium_la-auth_hmacsha512256.Tpo -c -o crypto_auth/hmacsha512256/libsodium_la-auth_hmacsha512256.lo `test -f 'crypto_auth/hmacsha512256/auth_hmacsha512256.c' || echo '$(srcdir)/'`crypto_auth/hmacsha512256/auth_hmacsha512256.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_auth/hmacsha512256/$(DEPDIR)/libsodium_la-auth_hmacsha512256.Tpo crypto_auth/hmacsha512256/$(DEPDIR)/libsodium_la-auth_hmacsha512256.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_auth/hmacsha512256/auth_hmacsha512256.c' object='crypto_auth/hmacsha512256/libsodium_la-auth_hmacsha512256.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_auth/hmacsha512256/libsodium_la-auth_hmacsha512256.lo `test -f 'crypto_auth/hmacsha512256/auth_hmacsha512256.c' || echo '$(srcdir)/'`crypto_auth/hmacsha512256/auth_hmacsha512256.c + +crypto_box/libsodium_la-crypto_box.lo: crypto_box/crypto_box.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_box/libsodium_la-crypto_box.lo -MD -MP -MF crypto_box/$(DEPDIR)/libsodium_la-crypto_box.Tpo -c -o crypto_box/libsodium_la-crypto_box.lo `test -f 'crypto_box/crypto_box.c' || echo '$(srcdir)/'`crypto_box/crypto_box.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_box/$(DEPDIR)/libsodium_la-crypto_box.Tpo crypto_box/$(DEPDIR)/libsodium_la-crypto_box.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_box/crypto_box.c' object='crypto_box/libsodium_la-crypto_box.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_box/libsodium_la-crypto_box.lo `test -f 'crypto_box/crypto_box.c' || echo '$(srcdir)/'`crypto_box/crypto_box.c + +crypto_box/libsodium_la-crypto_box_easy.lo: crypto_box/crypto_box_easy.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_box/libsodium_la-crypto_box_easy.lo -MD -MP -MF crypto_box/$(DEPDIR)/libsodium_la-crypto_box_easy.Tpo -c -o crypto_box/libsodium_la-crypto_box_easy.lo `test -f 'crypto_box/crypto_box_easy.c' || echo '$(srcdir)/'`crypto_box/crypto_box_easy.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_box/$(DEPDIR)/libsodium_la-crypto_box_easy.Tpo crypto_box/$(DEPDIR)/libsodium_la-crypto_box_easy.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_box/crypto_box_easy.c' object='crypto_box/libsodium_la-crypto_box_easy.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_box/libsodium_la-crypto_box_easy.lo `test -f 'crypto_box/crypto_box_easy.c' || echo '$(srcdir)/'`crypto_box/crypto_box_easy.c + +crypto_box/libsodium_la-crypto_box_seal.lo: crypto_box/crypto_box_seal.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_box/libsodium_la-crypto_box_seal.lo -MD -MP -MF crypto_box/$(DEPDIR)/libsodium_la-crypto_box_seal.Tpo -c -o crypto_box/libsodium_la-crypto_box_seal.lo `test -f 'crypto_box/crypto_box_seal.c' || echo '$(srcdir)/'`crypto_box/crypto_box_seal.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_box/$(DEPDIR)/libsodium_la-crypto_box_seal.Tpo crypto_box/$(DEPDIR)/libsodium_la-crypto_box_seal.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_box/crypto_box_seal.c' object='crypto_box/libsodium_la-crypto_box_seal.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_box/libsodium_la-crypto_box_seal.lo `test -f 'crypto_box/crypto_box_seal.c' || echo '$(srcdir)/'`crypto_box/crypto_box_seal.c + +crypto_box/curve25519xsalsa20poly1305/libsodium_la-box_curve25519xsalsa20poly1305.lo: crypto_box/curve25519xsalsa20poly1305/box_curve25519xsalsa20poly1305.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_box/curve25519xsalsa20poly1305/libsodium_la-box_curve25519xsalsa20poly1305.lo -MD -MP -MF crypto_box/curve25519xsalsa20poly1305/$(DEPDIR)/libsodium_la-box_curve25519xsalsa20poly1305.Tpo -c -o crypto_box/curve25519xsalsa20poly1305/libsodium_la-box_curve25519xsalsa20poly1305.lo `test -f 'crypto_box/curve25519xsalsa20poly1305/box_curve25519xsalsa20poly1305.c' || echo '$(srcdir)/'`crypto_box/curve25519xsalsa20poly1305/box_curve25519xsalsa20poly1305.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_box/curve25519xsalsa20poly1305/$(DEPDIR)/libsodium_la-box_curve25519xsalsa20poly1305.Tpo crypto_box/curve25519xsalsa20poly1305/$(DEPDIR)/libsodium_la-box_curve25519xsalsa20poly1305.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_box/curve25519xsalsa20poly1305/box_curve25519xsalsa20poly1305.c' object='crypto_box/curve25519xsalsa20poly1305/libsodium_la-box_curve25519xsalsa20poly1305.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_box/curve25519xsalsa20poly1305/libsodium_la-box_curve25519xsalsa20poly1305.lo `test -f 'crypto_box/curve25519xsalsa20poly1305/box_curve25519xsalsa20poly1305.c' || echo '$(srcdir)/'`crypto_box/curve25519xsalsa20poly1305/box_curve25519xsalsa20poly1305.c + +crypto_core/ed25519/ref10/libsodium_la-ed25519_ref10.lo: crypto_core/ed25519/ref10/ed25519_ref10.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_core/ed25519/ref10/libsodium_la-ed25519_ref10.lo -MD -MP -MF crypto_core/ed25519/ref10/$(DEPDIR)/libsodium_la-ed25519_ref10.Tpo -c -o crypto_core/ed25519/ref10/libsodium_la-ed25519_ref10.lo `test -f 'crypto_core/ed25519/ref10/ed25519_ref10.c' || echo '$(srcdir)/'`crypto_core/ed25519/ref10/ed25519_ref10.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_core/ed25519/ref10/$(DEPDIR)/libsodium_la-ed25519_ref10.Tpo crypto_core/ed25519/ref10/$(DEPDIR)/libsodium_la-ed25519_ref10.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_core/ed25519/ref10/ed25519_ref10.c' object='crypto_core/ed25519/ref10/libsodium_la-ed25519_ref10.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_core/ed25519/ref10/libsodium_la-ed25519_ref10.lo `test -f 'crypto_core/ed25519/ref10/ed25519_ref10.c' || echo '$(srcdir)/'`crypto_core/ed25519/ref10/ed25519_ref10.c + +crypto_core/hchacha20/libsodium_la-core_hchacha20.lo: crypto_core/hchacha20/core_hchacha20.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_core/hchacha20/libsodium_la-core_hchacha20.lo -MD -MP -MF crypto_core/hchacha20/$(DEPDIR)/libsodium_la-core_hchacha20.Tpo -c -o crypto_core/hchacha20/libsodium_la-core_hchacha20.lo `test -f 'crypto_core/hchacha20/core_hchacha20.c' || echo '$(srcdir)/'`crypto_core/hchacha20/core_hchacha20.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_core/hchacha20/$(DEPDIR)/libsodium_la-core_hchacha20.Tpo crypto_core/hchacha20/$(DEPDIR)/libsodium_la-core_hchacha20.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_core/hchacha20/core_hchacha20.c' object='crypto_core/hchacha20/libsodium_la-core_hchacha20.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_core/hchacha20/libsodium_la-core_hchacha20.lo `test -f 'crypto_core/hchacha20/core_hchacha20.c' || echo '$(srcdir)/'`crypto_core/hchacha20/core_hchacha20.c + +crypto_core/hsalsa20/ref2/libsodium_la-core_hsalsa20_ref2.lo: crypto_core/hsalsa20/ref2/core_hsalsa20_ref2.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_core/hsalsa20/ref2/libsodium_la-core_hsalsa20_ref2.lo -MD -MP -MF crypto_core/hsalsa20/ref2/$(DEPDIR)/libsodium_la-core_hsalsa20_ref2.Tpo -c -o crypto_core/hsalsa20/ref2/libsodium_la-core_hsalsa20_ref2.lo `test -f 'crypto_core/hsalsa20/ref2/core_hsalsa20_ref2.c' || echo '$(srcdir)/'`crypto_core/hsalsa20/ref2/core_hsalsa20_ref2.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_core/hsalsa20/ref2/$(DEPDIR)/libsodium_la-core_hsalsa20_ref2.Tpo crypto_core/hsalsa20/ref2/$(DEPDIR)/libsodium_la-core_hsalsa20_ref2.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_core/hsalsa20/ref2/core_hsalsa20_ref2.c' object='crypto_core/hsalsa20/ref2/libsodium_la-core_hsalsa20_ref2.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_core/hsalsa20/ref2/libsodium_la-core_hsalsa20_ref2.lo `test -f 'crypto_core/hsalsa20/ref2/core_hsalsa20_ref2.c' || echo '$(srcdir)/'`crypto_core/hsalsa20/ref2/core_hsalsa20_ref2.c + +crypto_core/hsalsa20/libsodium_la-core_hsalsa20.lo: crypto_core/hsalsa20/core_hsalsa20.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_core/hsalsa20/libsodium_la-core_hsalsa20.lo -MD -MP -MF crypto_core/hsalsa20/$(DEPDIR)/libsodium_la-core_hsalsa20.Tpo -c -o crypto_core/hsalsa20/libsodium_la-core_hsalsa20.lo `test -f 'crypto_core/hsalsa20/core_hsalsa20.c' || echo '$(srcdir)/'`crypto_core/hsalsa20/core_hsalsa20.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_core/hsalsa20/$(DEPDIR)/libsodium_la-core_hsalsa20.Tpo crypto_core/hsalsa20/$(DEPDIR)/libsodium_la-core_hsalsa20.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_core/hsalsa20/core_hsalsa20.c' object='crypto_core/hsalsa20/libsodium_la-core_hsalsa20.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_core/hsalsa20/libsodium_la-core_hsalsa20.lo `test -f 'crypto_core/hsalsa20/core_hsalsa20.c' || echo '$(srcdir)/'`crypto_core/hsalsa20/core_hsalsa20.c + +crypto_core/salsa/ref/libsodium_la-core_salsa_ref.lo: crypto_core/salsa/ref/core_salsa_ref.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_core/salsa/ref/libsodium_la-core_salsa_ref.lo -MD -MP -MF crypto_core/salsa/ref/$(DEPDIR)/libsodium_la-core_salsa_ref.Tpo -c -o crypto_core/salsa/ref/libsodium_la-core_salsa_ref.lo `test -f 'crypto_core/salsa/ref/core_salsa_ref.c' || echo '$(srcdir)/'`crypto_core/salsa/ref/core_salsa_ref.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_core/salsa/ref/$(DEPDIR)/libsodium_la-core_salsa_ref.Tpo crypto_core/salsa/ref/$(DEPDIR)/libsodium_la-core_salsa_ref.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_core/salsa/ref/core_salsa_ref.c' object='crypto_core/salsa/ref/libsodium_la-core_salsa_ref.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_core/salsa/ref/libsodium_la-core_salsa_ref.lo `test -f 'crypto_core/salsa/ref/core_salsa_ref.c' || echo '$(srcdir)/'`crypto_core/salsa/ref/core_salsa_ref.c + +crypto_generichash/libsodium_la-crypto_generichash.lo: crypto_generichash/crypto_generichash.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_generichash/libsodium_la-crypto_generichash.lo -MD -MP -MF crypto_generichash/$(DEPDIR)/libsodium_la-crypto_generichash.Tpo -c -o crypto_generichash/libsodium_la-crypto_generichash.lo `test -f 'crypto_generichash/crypto_generichash.c' || echo '$(srcdir)/'`crypto_generichash/crypto_generichash.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_generichash/$(DEPDIR)/libsodium_la-crypto_generichash.Tpo crypto_generichash/$(DEPDIR)/libsodium_la-crypto_generichash.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_generichash/crypto_generichash.c' object='crypto_generichash/libsodium_la-crypto_generichash.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_generichash/libsodium_la-crypto_generichash.lo `test -f 'crypto_generichash/crypto_generichash.c' || echo '$(srcdir)/'`crypto_generichash/crypto_generichash.c + +crypto_generichash/blake2b/libsodium_la-generichash_blake2.lo: crypto_generichash/blake2b/generichash_blake2.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_generichash/blake2b/libsodium_la-generichash_blake2.lo -MD -MP -MF crypto_generichash/blake2b/$(DEPDIR)/libsodium_la-generichash_blake2.Tpo -c -o crypto_generichash/blake2b/libsodium_la-generichash_blake2.lo `test -f 'crypto_generichash/blake2b/generichash_blake2.c' || echo '$(srcdir)/'`crypto_generichash/blake2b/generichash_blake2.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_generichash/blake2b/$(DEPDIR)/libsodium_la-generichash_blake2.Tpo crypto_generichash/blake2b/$(DEPDIR)/libsodium_la-generichash_blake2.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_generichash/blake2b/generichash_blake2.c' object='crypto_generichash/blake2b/libsodium_la-generichash_blake2.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_generichash/blake2b/libsodium_la-generichash_blake2.lo `test -f 'crypto_generichash/blake2b/generichash_blake2.c' || echo '$(srcdir)/'`crypto_generichash/blake2b/generichash_blake2.c + +crypto_generichash/blake2b/ref/libsodium_la-blake2b-compress-ref.lo: crypto_generichash/blake2b/ref/blake2b-compress-ref.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_generichash/blake2b/ref/libsodium_la-blake2b-compress-ref.lo -MD -MP -MF crypto_generichash/blake2b/ref/$(DEPDIR)/libsodium_la-blake2b-compress-ref.Tpo -c -o crypto_generichash/blake2b/ref/libsodium_la-blake2b-compress-ref.lo `test -f 'crypto_generichash/blake2b/ref/blake2b-compress-ref.c' || echo '$(srcdir)/'`crypto_generichash/blake2b/ref/blake2b-compress-ref.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_generichash/blake2b/ref/$(DEPDIR)/libsodium_la-blake2b-compress-ref.Tpo crypto_generichash/blake2b/ref/$(DEPDIR)/libsodium_la-blake2b-compress-ref.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_generichash/blake2b/ref/blake2b-compress-ref.c' object='crypto_generichash/blake2b/ref/libsodium_la-blake2b-compress-ref.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_generichash/blake2b/ref/libsodium_la-blake2b-compress-ref.lo `test -f 'crypto_generichash/blake2b/ref/blake2b-compress-ref.c' || echo '$(srcdir)/'`crypto_generichash/blake2b/ref/blake2b-compress-ref.c + +crypto_generichash/blake2b/ref/libsodium_la-blake2b-ref.lo: crypto_generichash/blake2b/ref/blake2b-ref.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_generichash/blake2b/ref/libsodium_la-blake2b-ref.lo -MD -MP -MF crypto_generichash/blake2b/ref/$(DEPDIR)/libsodium_la-blake2b-ref.Tpo -c -o crypto_generichash/blake2b/ref/libsodium_la-blake2b-ref.lo `test -f 'crypto_generichash/blake2b/ref/blake2b-ref.c' || echo '$(srcdir)/'`crypto_generichash/blake2b/ref/blake2b-ref.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_generichash/blake2b/ref/$(DEPDIR)/libsodium_la-blake2b-ref.Tpo crypto_generichash/blake2b/ref/$(DEPDIR)/libsodium_la-blake2b-ref.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_generichash/blake2b/ref/blake2b-ref.c' object='crypto_generichash/blake2b/ref/libsodium_la-blake2b-ref.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_generichash/blake2b/ref/libsodium_la-blake2b-ref.lo `test -f 'crypto_generichash/blake2b/ref/blake2b-ref.c' || echo '$(srcdir)/'`crypto_generichash/blake2b/ref/blake2b-ref.c + +crypto_generichash/blake2b/ref/libsodium_la-generichash_blake2b.lo: crypto_generichash/blake2b/ref/generichash_blake2b.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_generichash/blake2b/ref/libsodium_la-generichash_blake2b.lo -MD -MP -MF crypto_generichash/blake2b/ref/$(DEPDIR)/libsodium_la-generichash_blake2b.Tpo -c -o crypto_generichash/blake2b/ref/libsodium_la-generichash_blake2b.lo `test -f 'crypto_generichash/blake2b/ref/generichash_blake2b.c' || echo '$(srcdir)/'`crypto_generichash/blake2b/ref/generichash_blake2b.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_generichash/blake2b/ref/$(DEPDIR)/libsodium_la-generichash_blake2b.Tpo crypto_generichash/blake2b/ref/$(DEPDIR)/libsodium_la-generichash_blake2b.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_generichash/blake2b/ref/generichash_blake2b.c' object='crypto_generichash/blake2b/ref/libsodium_la-generichash_blake2b.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_generichash/blake2b/ref/libsodium_la-generichash_blake2b.lo `test -f 'crypto_generichash/blake2b/ref/generichash_blake2b.c' || echo '$(srcdir)/'`crypto_generichash/blake2b/ref/generichash_blake2b.c + +crypto_hash/libsodium_la-crypto_hash.lo: crypto_hash/crypto_hash.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_hash/libsodium_la-crypto_hash.lo -MD -MP -MF crypto_hash/$(DEPDIR)/libsodium_la-crypto_hash.Tpo -c -o crypto_hash/libsodium_la-crypto_hash.lo `test -f 'crypto_hash/crypto_hash.c' || echo '$(srcdir)/'`crypto_hash/crypto_hash.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_hash/$(DEPDIR)/libsodium_la-crypto_hash.Tpo crypto_hash/$(DEPDIR)/libsodium_la-crypto_hash.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_hash/crypto_hash.c' object='crypto_hash/libsodium_la-crypto_hash.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_hash/libsodium_la-crypto_hash.lo `test -f 'crypto_hash/crypto_hash.c' || echo '$(srcdir)/'`crypto_hash/crypto_hash.c + +crypto_hash/sha256/libsodium_la-hash_sha256.lo: crypto_hash/sha256/hash_sha256.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_hash/sha256/libsodium_la-hash_sha256.lo -MD -MP -MF crypto_hash/sha256/$(DEPDIR)/libsodium_la-hash_sha256.Tpo -c -o crypto_hash/sha256/libsodium_la-hash_sha256.lo `test -f 'crypto_hash/sha256/hash_sha256.c' || echo '$(srcdir)/'`crypto_hash/sha256/hash_sha256.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_hash/sha256/$(DEPDIR)/libsodium_la-hash_sha256.Tpo crypto_hash/sha256/$(DEPDIR)/libsodium_la-hash_sha256.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_hash/sha256/hash_sha256.c' object='crypto_hash/sha256/libsodium_la-hash_sha256.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_hash/sha256/libsodium_la-hash_sha256.lo `test -f 'crypto_hash/sha256/hash_sha256.c' || echo '$(srcdir)/'`crypto_hash/sha256/hash_sha256.c + +crypto_hash/sha256/cp/libsodium_la-hash_sha256_cp.lo: crypto_hash/sha256/cp/hash_sha256_cp.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_hash/sha256/cp/libsodium_la-hash_sha256_cp.lo -MD -MP -MF crypto_hash/sha256/cp/$(DEPDIR)/libsodium_la-hash_sha256_cp.Tpo -c -o crypto_hash/sha256/cp/libsodium_la-hash_sha256_cp.lo `test -f 'crypto_hash/sha256/cp/hash_sha256_cp.c' || echo '$(srcdir)/'`crypto_hash/sha256/cp/hash_sha256_cp.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_hash/sha256/cp/$(DEPDIR)/libsodium_la-hash_sha256_cp.Tpo crypto_hash/sha256/cp/$(DEPDIR)/libsodium_la-hash_sha256_cp.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_hash/sha256/cp/hash_sha256_cp.c' object='crypto_hash/sha256/cp/libsodium_la-hash_sha256_cp.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_hash/sha256/cp/libsodium_la-hash_sha256_cp.lo `test -f 'crypto_hash/sha256/cp/hash_sha256_cp.c' || echo '$(srcdir)/'`crypto_hash/sha256/cp/hash_sha256_cp.c + +crypto_hash/sha512/libsodium_la-hash_sha512.lo: crypto_hash/sha512/hash_sha512.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_hash/sha512/libsodium_la-hash_sha512.lo -MD -MP -MF crypto_hash/sha512/$(DEPDIR)/libsodium_la-hash_sha512.Tpo -c -o crypto_hash/sha512/libsodium_la-hash_sha512.lo `test -f 'crypto_hash/sha512/hash_sha512.c' || echo '$(srcdir)/'`crypto_hash/sha512/hash_sha512.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_hash/sha512/$(DEPDIR)/libsodium_la-hash_sha512.Tpo crypto_hash/sha512/$(DEPDIR)/libsodium_la-hash_sha512.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_hash/sha512/hash_sha512.c' object='crypto_hash/sha512/libsodium_la-hash_sha512.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_hash/sha512/libsodium_la-hash_sha512.lo `test -f 'crypto_hash/sha512/hash_sha512.c' || echo '$(srcdir)/'`crypto_hash/sha512/hash_sha512.c + +crypto_hash/sha512/cp/libsodium_la-hash_sha512_cp.lo: crypto_hash/sha512/cp/hash_sha512_cp.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_hash/sha512/cp/libsodium_la-hash_sha512_cp.lo -MD -MP -MF crypto_hash/sha512/cp/$(DEPDIR)/libsodium_la-hash_sha512_cp.Tpo -c -o crypto_hash/sha512/cp/libsodium_la-hash_sha512_cp.lo `test -f 'crypto_hash/sha512/cp/hash_sha512_cp.c' || echo '$(srcdir)/'`crypto_hash/sha512/cp/hash_sha512_cp.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_hash/sha512/cp/$(DEPDIR)/libsodium_la-hash_sha512_cp.Tpo crypto_hash/sha512/cp/$(DEPDIR)/libsodium_la-hash_sha512_cp.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_hash/sha512/cp/hash_sha512_cp.c' object='crypto_hash/sha512/cp/libsodium_la-hash_sha512_cp.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_hash/sha512/cp/libsodium_la-hash_sha512_cp.lo `test -f 'crypto_hash/sha512/cp/hash_sha512_cp.c' || echo '$(srcdir)/'`crypto_hash/sha512/cp/hash_sha512_cp.c + +crypto_kdf/blake2b/libsodium_la-kdf_blake2b.lo: crypto_kdf/blake2b/kdf_blake2b.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_kdf/blake2b/libsodium_la-kdf_blake2b.lo -MD -MP -MF crypto_kdf/blake2b/$(DEPDIR)/libsodium_la-kdf_blake2b.Tpo -c -o crypto_kdf/blake2b/libsodium_la-kdf_blake2b.lo `test -f 'crypto_kdf/blake2b/kdf_blake2b.c' || echo '$(srcdir)/'`crypto_kdf/blake2b/kdf_blake2b.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_kdf/blake2b/$(DEPDIR)/libsodium_la-kdf_blake2b.Tpo crypto_kdf/blake2b/$(DEPDIR)/libsodium_la-kdf_blake2b.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_kdf/blake2b/kdf_blake2b.c' object='crypto_kdf/blake2b/libsodium_la-kdf_blake2b.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_kdf/blake2b/libsodium_la-kdf_blake2b.lo `test -f 'crypto_kdf/blake2b/kdf_blake2b.c' || echo '$(srcdir)/'`crypto_kdf/blake2b/kdf_blake2b.c + +crypto_kdf/libsodium_la-crypto_kdf.lo: crypto_kdf/crypto_kdf.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_kdf/libsodium_la-crypto_kdf.lo -MD -MP -MF crypto_kdf/$(DEPDIR)/libsodium_la-crypto_kdf.Tpo -c -o crypto_kdf/libsodium_la-crypto_kdf.lo `test -f 'crypto_kdf/crypto_kdf.c' || echo '$(srcdir)/'`crypto_kdf/crypto_kdf.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_kdf/$(DEPDIR)/libsodium_la-crypto_kdf.Tpo crypto_kdf/$(DEPDIR)/libsodium_la-crypto_kdf.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_kdf/crypto_kdf.c' object='crypto_kdf/libsodium_la-crypto_kdf.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_kdf/libsodium_la-crypto_kdf.lo `test -f 'crypto_kdf/crypto_kdf.c' || echo '$(srcdir)/'`crypto_kdf/crypto_kdf.c + +crypto_kx/libsodium_la-crypto_kx.lo: crypto_kx/crypto_kx.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_kx/libsodium_la-crypto_kx.lo -MD -MP -MF crypto_kx/$(DEPDIR)/libsodium_la-crypto_kx.Tpo -c -o crypto_kx/libsodium_la-crypto_kx.lo `test -f 'crypto_kx/crypto_kx.c' || echo '$(srcdir)/'`crypto_kx/crypto_kx.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_kx/$(DEPDIR)/libsodium_la-crypto_kx.Tpo crypto_kx/$(DEPDIR)/libsodium_la-crypto_kx.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_kx/crypto_kx.c' object='crypto_kx/libsodium_la-crypto_kx.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_kx/libsodium_la-crypto_kx.lo `test -f 'crypto_kx/crypto_kx.c' || echo '$(srcdir)/'`crypto_kx/crypto_kx.c + +crypto_onetimeauth/libsodium_la-crypto_onetimeauth.lo: crypto_onetimeauth/crypto_onetimeauth.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_onetimeauth/libsodium_la-crypto_onetimeauth.lo -MD -MP -MF crypto_onetimeauth/$(DEPDIR)/libsodium_la-crypto_onetimeauth.Tpo -c -o crypto_onetimeauth/libsodium_la-crypto_onetimeauth.lo `test -f 'crypto_onetimeauth/crypto_onetimeauth.c' || echo '$(srcdir)/'`crypto_onetimeauth/crypto_onetimeauth.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_onetimeauth/$(DEPDIR)/libsodium_la-crypto_onetimeauth.Tpo crypto_onetimeauth/$(DEPDIR)/libsodium_la-crypto_onetimeauth.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_onetimeauth/crypto_onetimeauth.c' object='crypto_onetimeauth/libsodium_la-crypto_onetimeauth.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_onetimeauth/libsodium_la-crypto_onetimeauth.lo `test -f 'crypto_onetimeauth/crypto_onetimeauth.c' || echo '$(srcdir)/'`crypto_onetimeauth/crypto_onetimeauth.c + +crypto_onetimeauth/poly1305/libsodium_la-onetimeauth_poly1305.lo: crypto_onetimeauth/poly1305/onetimeauth_poly1305.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_onetimeauth/poly1305/libsodium_la-onetimeauth_poly1305.lo -MD -MP -MF crypto_onetimeauth/poly1305/$(DEPDIR)/libsodium_la-onetimeauth_poly1305.Tpo -c -o crypto_onetimeauth/poly1305/libsodium_la-onetimeauth_poly1305.lo `test -f 'crypto_onetimeauth/poly1305/onetimeauth_poly1305.c' || echo '$(srcdir)/'`crypto_onetimeauth/poly1305/onetimeauth_poly1305.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_onetimeauth/poly1305/$(DEPDIR)/libsodium_la-onetimeauth_poly1305.Tpo crypto_onetimeauth/poly1305/$(DEPDIR)/libsodium_la-onetimeauth_poly1305.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_onetimeauth/poly1305/onetimeauth_poly1305.c' object='crypto_onetimeauth/poly1305/libsodium_la-onetimeauth_poly1305.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_onetimeauth/poly1305/libsodium_la-onetimeauth_poly1305.lo `test -f 'crypto_onetimeauth/poly1305/onetimeauth_poly1305.c' || echo '$(srcdir)/'`crypto_onetimeauth/poly1305/onetimeauth_poly1305.c + +crypto_onetimeauth/poly1305/donna/libsodium_la-poly1305_donna.lo: crypto_onetimeauth/poly1305/donna/poly1305_donna.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_onetimeauth/poly1305/donna/libsodium_la-poly1305_donna.lo -MD -MP -MF crypto_onetimeauth/poly1305/donna/$(DEPDIR)/libsodium_la-poly1305_donna.Tpo -c -o crypto_onetimeauth/poly1305/donna/libsodium_la-poly1305_donna.lo `test -f 'crypto_onetimeauth/poly1305/donna/poly1305_donna.c' || echo '$(srcdir)/'`crypto_onetimeauth/poly1305/donna/poly1305_donna.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_onetimeauth/poly1305/donna/$(DEPDIR)/libsodium_la-poly1305_donna.Tpo crypto_onetimeauth/poly1305/donna/$(DEPDIR)/libsodium_la-poly1305_donna.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_onetimeauth/poly1305/donna/poly1305_donna.c' object='crypto_onetimeauth/poly1305/donna/libsodium_la-poly1305_donna.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_onetimeauth/poly1305/donna/libsodium_la-poly1305_donna.lo `test -f 'crypto_onetimeauth/poly1305/donna/poly1305_donna.c' || echo '$(srcdir)/'`crypto_onetimeauth/poly1305/donna/poly1305_donna.c + +crypto_pwhash/argon2/libsodium_la-argon2-core.lo: crypto_pwhash/argon2/argon2-core.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_pwhash/argon2/libsodium_la-argon2-core.lo -MD -MP -MF crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-argon2-core.Tpo -c -o crypto_pwhash/argon2/libsodium_la-argon2-core.lo `test -f 'crypto_pwhash/argon2/argon2-core.c' || echo '$(srcdir)/'`crypto_pwhash/argon2/argon2-core.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-argon2-core.Tpo crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-argon2-core.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_pwhash/argon2/argon2-core.c' object='crypto_pwhash/argon2/libsodium_la-argon2-core.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_pwhash/argon2/libsodium_la-argon2-core.lo `test -f 'crypto_pwhash/argon2/argon2-core.c' || echo '$(srcdir)/'`crypto_pwhash/argon2/argon2-core.c + +crypto_pwhash/argon2/libsodium_la-argon2-encoding.lo: crypto_pwhash/argon2/argon2-encoding.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_pwhash/argon2/libsodium_la-argon2-encoding.lo -MD -MP -MF crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-argon2-encoding.Tpo -c -o crypto_pwhash/argon2/libsodium_la-argon2-encoding.lo `test -f 'crypto_pwhash/argon2/argon2-encoding.c' || echo '$(srcdir)/'`crypto_pwhash/argon2/argon2-encoding.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-argon2-encoding.Tpo crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-argon2-encoding.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_pwhash/argon2/argon2-encoding.c' object='crypto_pwhash/argon2/libsodium_la-argon2-encoding.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_pwhash/argon2/libsodium_la-argon2-encoding.lo `test -f 'crypto_pwhash/argon2/argon2-encoding.c' || echo '$(srcdir)/'`crypto_pwhash/argon2/argon2-encoding.c + +crypto_pwhash/argon2/libsodium_la-argon2-fill-block-ref.lo: crypto_pwhash/argon2/argon2-fill-block-ref.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_pwhash/argon2/libsodium_la-argon2-fill-block-ref.lo -MD -MP -MF crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-argon2-fill-block-ref.Tpo -c -o crypto_pwhash/argon2/libsodium_la-argon2-fill-block-ref.lo `test -f 'crypto_pwhash/argon2/argon2-fill-block-ref.c' || echo '$(srcdir)/'`crypto_pwhash/argon2/argon2-fill-block-ref.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-argon2-fill-block-ref.Tpo crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-argon2-fill-block-ref.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_pwhash/argon2/argon2-fill-block-ref.c' object='crypto_pwhash/argon2/libsodium_la-argon2-fill-block-ref.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_pwhash/argon2/libsodium_la-argon2-fill-block-ref.lo `test -f 'crypto_pwhash/argon2/argon2-fill-block-ref.c' || echo '$(srcdir)/'`crypto_pwhash/argon2/argon2-fill-block-ref.c + +crypto_pwhash/argon2/libsodium_la-argon2.lo: crypto_pwhash/argon2/argon2.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_pwhash/argon2/libsodium_la-argon2.lo -MD -MP -MF crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-argon2.Tpo -c -o crypto_pwhash/argon2/libsodium_la-argon2.lo `test -f 'crypto_pwhash/argon2/argon2.c' || echo '$(srcdir)/'`crypto_pwhash/argon2/argon2.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-argon2.Tpo crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-argon2.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_pwhash/argon2/argon2.c' object='crypto_pwhash/argon2/libsodium_la-argon2.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_pwhash/argon2/libsodium_la-argon2.lo `test -f 'crypto_pwhash/argon2/argon2.c' || echo '$(srcdir)/'`crypto_pwhash/argon2/argon2.c + +crypto_pwhash/argon2/libsodium_la-blake2b-long.lo: crypto_pwhash/argon2/blake2b-long.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_pwhash/argon2/libsodium_la-blake2b-long.lo -MD -MP -MF crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-blake2b-long.Tpo -c -o crypto_pwhash/argon2/libsodium_la-blake2b-long.lo `test -f 'crypto_pwhash/argon2/blake2b-long.c' || echo '$(srcdir)/'`crypto_pwhash/argon2/blake2b-long.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-blake2b-long.Tpo crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-blake2b-long.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_pwhash/argon2/blake2b-long.c' object='crypto_pwhash/argon2/libsodium_la-blake2b-long.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_pwhash/argon2/libsodium_la-blake2b-long.lo `test -f 'crypto_pwhash/argon2/blake2b-long.c' || echo '$(srcdir)/'`crypto_pwhash/argon2/blake2b-long.c + +crypto_pwhash/argon2/libsodium_la-pwhash_argon2i.lo: crypto_pwhash/argon2/pwhash_argon2i.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_pwhash/argon2/libsodium_la-pwhash_argon2i.lo -MD -MP -MF crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-pwhash_argon2i.Tpo -c -o crypto_pwhash/argon2/libsodium_la-pwhash_argon2i.lo `test -f 'crypto_pwhash/argon2/pwhash_argon2i.c' || echo '$(srcdir)/'`crypto_pwhash/argon2/pwhash_argon2i.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-pwhash_argon2i.Tpo crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-pwhash_argon2i.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_pwhash/argon2/pwhash_argon2i.c' object='crypto_pwhash/argon2/libsodium_la-pwhash_argon2i.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_pwhash/argon2/libsodium_la-pwhash_argon2i.lo `test -f 'crypto_pwhash/argon2/pwhash_argon2i.c' || echo '$(srcdir)/'`crypto_pwhash/argon2/pwhash_argon2i.c + +crypto_pwhash/argon2/libsodium_la-pwhash_argon2id.lo: crypto_pwhash/argon2/pwhash_argon2id.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_pwhash/argon2/libsodium_la-pwhash_argon2id.lo -MD -MP -MF crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-pwhash_argon2id.Tpo -c -o crypto_pwhash/argon2/libsodium_la-pwhash_argon2id.lo `test -f 'crypto_pwhash/argon2/pwhash_argon2id.c' || echo '$(srcdir)/'`crypto_pwhash/argon2/pwhash_argon2id.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-pwhash_argon2id.Tpo crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-pwhash_argon2id.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_pwhash/argon2/pwhash_argon2id.c' object='crypto_pwhash/argon2/libsodium_la-pwhash_argon2id.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_pwhash/argon2/libsodium_la-pwhash_argon2id.lo `test -f 'crypto_pwhash/argon2/pwhash_argon2id.c' || echo '$(srcdir)/'`crypto_pwhash/argon2/pwhash_argon2id.c + +crypto_pwhash/libsodium_la-crypto_pwhash.lo: crypto_pwhash/crypto_pwhash.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_pwhash/libsodium_la-crypto_pwhash.lo -MD -MP -MF crypto_pwhash/$(DEPDIR)/libsodium_la-crypto_pwhash.Tpo -c -o crypto_pwhash/libsodium_la-crypto_pwhash.lo `test -f 'crypto_pwhash/crypto_pwhash.c' || echo '$(srcdir)/'`crypto_pwhash/crypto_pwhash.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_pwhash/$(DEPDIR)/libsodium_la-crypto_pwhash.Tpo crypto_pwhash/$(DEPDIR)/libsodium_la-crypto_pwhash.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_pwhash/crypto_pwhash.c' object='crypto_pwhash/libsodium_la-crypto_pwhash.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_pwhash/libsodium_la-crypto_pwhash.lo `test -f 'crypto_pwhash/crypto_pwhash.c' || echo '$(srcdir)/'`crypto_pwhash/crypto_pwhash.c + +crypto_scalarmult/libsodium_la-crypto_scalarmult.lo: crypto_scalarmult/crypto_scalarmult.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_scalarmult/libsodium_la-crypto_scalarmult.lo -MD -MP -MF crypto_scalarmult/$(DEPDIR)/libsodium_la-crypto_scalarmult.Tpo -c -o crypto_scalarmult/libsodium_la-crypto_scalarmult.lo `test -f 'crypto_scalarmult/crypto_scalarmult.c' || echo '$(srcdir)/'`crypto_scalarmult/crypto_scalarmult.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_scalarmult/$(DEPDIR)/libsodium_la-crypto_scalarmult.Tpo crypto_scalarmult/$(DEPDIR)/libsodium_la-crypto_scalarmult.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_scalarmult/crypto_scalarmult.c' object='crypto_scalarmult/libsodium_la-crypto_scalarmult.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_scalarmult/libsodium_la-crypto_scalarmult.lo `test -f 'crypto_scalarmult/crypto_scalarmult.c' || echo '$(srcdir)/'`crypto_scalarmult/crypto_scalarmult.c + +crypto_scalarmult/curve25519/ref10/libsodium_la-x25519_ref10.lo: crypto_scalarmult/curve25519/ref10/x25519_ref10.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_scalarmult/curve25519/ref10/libsodium_la-x25519_ref10.lo -MD -MP -MF crypto_scalarmult/curve25519/ref10/$(DEPDIR)/libsodium_la-x25519_ref10.Tpo -c -o crypto_scalarmult/curve25519/ref10/libsodium_la-x25519_ref10.lo `test -f 'crypto_scalarmult/curve25519/ref10/x25519_ref10.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/ref10/x25519_ref10.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_scalarmult/curve25519/ref10/$(DEPDIR)/libsodium_la-x25519_ref10.Tpo crypto_scalarmult/curve25519/ref10/$(DEPDIR)/libsodium_la-x25519_ref10.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_scalarmult/curve25519/ref10/x25519_ref10.c' object='crypto_scalarmult/curve25519/ref10/libsodium_la-x25519_ref10.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_scalarmult/curve25519/ref10/libsodium_la-x25519_ref10.lo `test -f 'crypto_scalarmult/curve25519/ref10/x25519_ref10.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/ref10/x25519_ref10.c + +crypto_scalarmult/curve25519/libsodium_la-scalarmult_curve25519.lo: crypto_scalarmult/curve25519/scalarmult_curve25519.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_scalarmult/curve25519/libsodium_la-scalarmult_curve25519.lo -MD -MP -MF crypto_scalarmult/curve25519/$(DEPDIR)/libsodium_la-scalarmult_curve25519.Tpo -c -o crypto_scalarmult/curve25519/libsodium_la-scalarmult_curve25519.lo `test -f 'crypto_scalarmult/curve25519/scalarmult_curve25519.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/scalarmult_curve25519.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_scalarmult/curve25519/$(DEPDIR)/libsodium_la-scalarmult_curve25519.Tpo crypto_scalarmult/curve25519/$(DEPDIR)/libsodium_la-scalarmult_curve25519.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_scalarmult/curve25519/scalarmult_curve25519.c' object='crypto_scalarmult/curve25519/libsodium_la-scalarmult_curve25519.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_scalarmult/curve25519/libsodium_la-scalarmult_curve25519.lo `test -f 'crypto_scalarmult/curve25519/scalarmult_curve25519.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/scalarmult_curve25519.c + +crypto_secretbox/libsodium_la-crypto_secretbox.lo: crypto_secretbox/crypto_secretbox.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_secretbox/libsodium_la-crypto_secretbox.lo -MD -MP -MF crypto_secretbox/$(DEPDIR)/libsodium_la-crypto_secretbox.Tpo -c -o crypto_secretbox/libsodium_la-crypto_secretbox.lo `test -f 'crypto_secretbox/crypto_secretbox.c' || echo '$(srcdir)/'`crypto_secretbox/crypto_secretbox.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_secretbox/$(DEPDIR)/libsodium_la-crypto_secretbox.Tpo crypto_secretbox/$(DEPDIR)/libsodium_la-crypto_secretbox.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_secretbox/crypto_secretbox.c' object='crypto_secretbox/libsodium_la-crypto_secretbox.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_secretbox/libsodium_la-crypto_secretbox.lo `test -f 'crypto_secretbox/crypto_secretbox.c' || echo '$(srcdir)/'`crypto_secretbox/crypto_secretbox.c + +crypto_secretbox/libsodium_la-crypto_secretbox_easy.lo: crypto_secretbox/crypto_secretbox_easy.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_secretbox/libsodium_la-crypto_secretbox_easy.lo -MD -MP -MF crypto_secretbox/$(DEPDIR)/libsodium_la-crypto_secretbox_easy.Tpo -c -o crypto_secretbox/libsodium_la-crypto_secretbox_easy.lo `test -f 'crypto_secretbox/crypto_secretbox_easy.c' || echo '$(srcdir)/'`crypto_secretbox/crypto_secretbox_easy.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_secretbox/$(DEPDIR)/libsodium_la-crypto_secretbox_easy.Tpo crypto_secretbox/$(DEPDIR)/libsodium_la-crypto_secretbox_easy.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_secretbox/crypto_secretbox_easy.c' object='crypto_secretbox/libsodium_la-crypto_secretbox_easy.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_secretbox/libsodium_la-crypto_secretbox_easy.lo `test -f 'crypto_secretbox/crypto_secretbox_easy.c' || echo '$(srcdir)/'`crypto_secretbox/crypto_secretbox_easy.c + +crypto_secretbox/xsalsa20poly1305/libsodium_la-secretbox_xsalsa20poly1305.lo: crypto_secretbox/xsalsa20poly1305/secretbox_xsalsa20poly1305.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_secretbox/xsalsa20poly1305/libsodium_la-secretbox_xsalsa20poly1305.lo -MD -MP -MF crypto_secretbox/xsalsa20poly1305/$(DEPDIR)/libsodium_la-secretbox_xsalsa20poly1305.Tpo -c -o crypto_secretbox/xsalsa20poly1305/libsodium_la-secretbox_xsalsa20poly1305.lo `test -f 'crypto_secretbox/xsalsa20poly1305/secretbox_xsalsa20poly1305.c' || echo '$(srcdir)/'`crypto_secretbox/xsalsa20poly1305/secretbox_xsalsa20poly1305.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_secretbox/xsalsa20poly1305/$(DEPDIR)/libsodium_la-secretbox_xsalsa20poly1305.Tpo crypto_secretbox/xsalsa20poly1305/$(DEPDIR)/libsodium_la-secretbox_xsalsa20poly1305.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_secretbox/xsalsa20poly1305/secretbox_xsalsa20poly1305.c' object='crypto_secretbox/xsalsa20poly1305/libsodium_la-secretbox_xsalsa20poly1305.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_secretbox/xsalsa20poly1305/libsodium_la-secretbox_xsalsa20poly1305.lo `test -f 'crypto_secretbox/xsalsa20poly1305/secretbox_xsalsa20poly1305.c' || echo '$(srcdir)/'`crypto_secretbox/xsalsa20poly1305/secretbox_xsalsa20poly1305.c + +crypto_secretstream/xchacha20poly1305/libsodium_la-secretstream_xchacha20poly1305.lo: crypto_secretstream/xchacha20poly1305/secretstream_xchacha20poly1305.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_secretstream/xchacha20poly1305/libsodium_la-secretstream_xchacha20poly1305.lo -MD -MP -MF crypto_secretstream/xchacha20poly1305/$(DEPDIR)/libsodium_la-secretstream_xchacha20poly1305.Tpo -c -o crypto_secretstream/xchacha20poly1305/libsodium_la-secretstream_xchacha20poly1305.lo `test -f 'crypto_secretstream/xchacha20poly1305/secretstream_xchacha20poly1305.c' || echo '$(srcdir)/'`crypto_secretstream/xchacha20poly1305/secretstream_xchacha20poly1305.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_secretstream/xchacha20poly1305/$(DEPDIR)/libsodium_la-secretstream_xchacha20poly1305.Tpo crypto_secretstream/xchacha20poly1305/$(DEPDIR)/libsodium_la-secretstream_xchacha20poly1305.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_secretstream/xchacha20poly1305/secretstream_xchacha20poly1305.c' object='crypto_secretstream/xchacha20poly1305/libsodium_la-secretstream_xchacha20poly1305.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_secretstream/xchacha20poly1305/libsodium_la-secretstream_xchacha20poly1305.lo `test -f 'crypto_secretstream/xchacha20poly1305/secretstream_xchacha20poly1305.c' || echo '$(srcdir)/'`crypto_secretstream/xchacha20poly1305/secretstream_xchacha20poly1305.c + +crypto_shorthash/libsodium_la-crypto_shorthash.lo: crypto_shorthash/crypto_shorthash.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_shorthash/libsodium_la-crypto_shorthash.lo -MD -MP -MF crypto_shorthash/$(DEPDIR)/libsodium_la-crypto_shorthash.Tpo -c -o crypto_shorthash/libsodium_la-crypto_shorthash.lo `test -f 'crypto_shorthash/crypto_shorthash.c' || echo '$(srcdir)/'`crypto_shorthash/crypto_shorthash.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_shorthash/$(DEPDIR)/libsodium_la-crypto_shorthash.Tpo crypto_shorthash/$(DEPDIR)/libsodium_la-crypto_shorthash.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_shorthash/crypto_shorthash.c' object='crypto_shorthash/libsodium_la-crypto_shorthash.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_shorthash/libsodium_la-crypto_shorthash.lo `test -f 'crypto_shorthash/crypto_shorthash.c' || echo '$(srcdir)/'`crypto_shorthash/crypto_shorthash.c + +crypto_shorthash/siphash24/libsodium_la-shorthash_siphash24.lo: crypto_shorthash/siphash24/shorthash_siphash24.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_shorthash/siphash24/libsodium_la-shorthash_siphash24.lo -MD -MP -MF crypto_shorthash/siphash24/$(DEPDIR)/libsodium_la-shorthash_siphash24.Tpo -c -o crypto_shorthash/siphash24/libsodium_la-shorthash_siphash24.lo `test -f 'crypto_shorthash/siphash24/shorthash_siphash24.c' || echo '$(srcdir)/'`crypto_shorthash/siphash24/shorthash_siphash24.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_shorthash/siphash24/$(DEPDIR)/libsodium_la-shorthash_siphash24.Tpo crypto_shorthash/siphash24/$(DEPDIR)/libsodium_la-shorthash_siphash24.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_shorthash/siphash24/shorthash_siphash24.c' object='crypto_shorthash/siphash24/libsodium_la-shorthash_siphash24.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_shorthash/siphash24/libsodium_la-shorthash_siphash24.lo `test -f 'crypto_shorthash/siphash24/shorthash_siphash24.c' || echo '$(srcdir)/'`crypto_shorthash/siphash24/shorthash_siphash24.c + +crypto_shorthash/siphash24/ref/libsodium_la-shorthash_siphash24_ref.lo: crypto_shorthash/siphash24/ref/shorthash_siphash24_ref.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_shorthash/siphash24/ref/libsodium_la-shorthash_siphash24_ref.lo -MD -MP -MF crypto_shorthash/siphash24/ref/$(DEPDIR)/libsodium_la-shorthash_siphash24_ref.Tpo -c -o crypto_shorthash/siphash24/ref/libsodium_la-shorthash_siphash24_ref.lo `test -f 'crypto_shorthash/siphash24/ref/shorthash_siphash24_ref.c' || echo '$(srcdir)/'`crypto_shorthash/siphash24/ref/shorthash_siphash24_ref.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_shorthash/siphash24/ref/$(DEPDIR)/libsodium_la-shorthash_siphash24_ref.Tpo crypto_shorthash/siphash24/ref/$(DEPDIR)/libsodium_la-shorthash_siphash24_ref.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_shorthash/siphash24/ref/shorthash_siphash24_ref.c' object='crypto_shorthash/siphash24/ref/libsodium_la-shorthash_siphash24_ref.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_shorthash/siphash24/ref/libsodium_la-shorthash_siphash24_ref.lo `test -f 'crypto_shorthash/siphash24/ref/shorthash_siphash24_ref.c' || echo '$(srcdir)/'`crypto_shorthash/siphash24/ref/shorthash_siphash24_ref.c + +crypto_sign/libsodium_la-crypto_sign.lo: crypto_sign/crypto_sign.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_sign/libsodium_la-crypto_sign.lo -MD -MP -MF crypto_sign/$(DEPDIR)/libsodium_la-crypto_sign.Tpo -c -o crypto_sign/libsodium_la-crypto_sign.lo `test -f 'crypto_sign/crypto_sign.c' || echo '$(srcdir)/'`crypto_sign/crypto_sign.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_sign/$(DEPDIR)/libsodium_la-crypto_sign.Tpo crypto_sign/$(DEPDIR)/libsodium_la-crypto_sign.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_sign/crypto_sign.c' object='crypto_sign/libsodium_la-crypto_sign.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_sign/libsodium_la-crypto_sign.lo `test -f 'crypto_sign/crypto_sign.c' || echo '$(srcdir)/'`crypto_sign/crypto_sign.c + +crypto_sign/ed25519/libsodium_la-sign_ed25519.lo: crypto_sign/ed25519/sign_ed25519.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_sign/ed25519/libsodium_la-sign_ed25519.lo -MD -MP -MF crypto_sign/ed25519/$(DEPDIR)/libsodium_la-sign_ed25519.Tpo -c -o crypto_sign/ed25519/libsodium_la-sign_ed25519.lo `test -f 'crypto_sign/ed25519/sign_ed25519.c' || echo '$(srcdir)/'`crypto_sign/ed25519/sign_ed25519.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_sign/ed25519/$(DEPDIR)/libsodium_la-sign_ed25519.Tpo crypto_sign/ed25519/$(DEPDIR)/libsodium_la-sign_ed25519.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_sign/ed25519/sign_ed25519.c' object='crypto_sign/ed25519/libsodium_la-sign_ed25519.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_sign/ed25519/libsodium_la-sign_ed25519.lo `test -f 'crypto_sign/ed25519/sign_ed25519.c' || echo '$(srcdir)/'`crypto_sign/ed25519/sign_ed25519.c + +crypto_sign/ed25519/ref10/libsodium_la-keypair.lo: crypto_sign/ed25519/ref10/keypair.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_sign/ed25519/ref10/libsodium_la-keypair.lo -MD -MP -MF crypto_sign/ed25519/ref10/$(DEPDIR)/libsodium_la-keypair.Tpo -c -o crypto_sign/ed25519/ref10/libsodium_la-keypair.lo `test -f 'crypto_sign/ed25519/ref10/keypair.c' || echo '$(srcdir)/'`crypto_sign/ed25519/ref10/keypair.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_sign/ed25519/ref10/$(DEPDIR)/libsodium_la-keypair.Tpo crypto_sign/ed25519/ref10/$(DEPDIR)/libsodium_la-keypair.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_sign/ed25519/ref10/keypair.c' object='crypto_sign/ed25519/ref10/libsodium_la-keypair.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_sign/ed25519/ref10/libsodium_la-keypair.lo `test -f 'crypto_sign/ed25519/ref10/keypair.c' || echo '$(srcdir)/'`crypto_sign/ed25519/ref10/keypair.c + +crypto_sign/ed25519/ref10/libsodium_la-open.lo: crypto_sign/ed25519/ref10/open.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_sign/ed25519/ref10/libsodium_la-open.lo -MD -MP -MF crypto_sign/ed25519/ref10/$(DEPDIR)/libsodium_la-open.Tpo -c -o crypto_sign/ed25519/ref10/libsodium_la-open.lo `test -f 'crypto_sign/ed25519/ref10/open.c' || echo '$(srcdir)/'`crypto_sign/ed25519/ref10/open.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_sign/ed25519/ref10/$(DEPDIR)/libsodium_la-open.Tpo crypto_sign/ed25519/ref10/$(DEPDIR)/libsodium_la-open.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_sign/ed25519/ref10/open.c' object='crypto_sign/ed25519/ref10/libsodium_la-open.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_sign/ed25519/ref10/libsodium_la-open.lo `test -f 'crypto_sign/ed25519/ref10/open.c' || echo '$(srcdir)/'`crypto_sign/ed25519/ref10/open.c + +crypto_sign/ed25519/ref10/libsodium_la-sign.lo: crypto_sign/ed25519/ref10/sign.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_sign/ed25519/ref10/libsodium_la-sign.lo -MD -MP -MF crypto_sign/ed25519/ref10/$(DEPDIR)/libsodium_la-sign.Tpo -c -o crypto_sign/ed25519/ref10/libsodium_la-sign.lo `test -f 'crypto_sign/ed25519/ref10/sign.c' || echo '$(srcdir)/'`crypto_sign/ed25519/ref10/sign.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_sign/ed25519/ref10/$(DEPDIR)/libsodium_la-sign.Tpo crypto_sign/ed25519/ref10/$(DEPDIR)/libsodium_la-sign.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_sign/ed25519/ref10/sign.c' object='crypto_sign/ed25519/ref10/libsodium_la-sign.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_sign/ed25519/ref10/libsodium_la-sign.lo `test -f 'crypto_sign/ed25519/ref10/sign.c' || echo '$(srcdir)/'`crypto_sign/ed25519/ref10/sign.c + +crypto_stream/chacha20/libsodium_la-stream_chacha20.lo: crypto_stream/chacha20/stream_chacha20.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_stream/chacha20/libsodium_la-stream_chacha20.lo -MD -MP -MF crypto_stream/chacha20/$(DEPDIR)/libsodium_la-stream_chacha20.Tpo -c -o crypto_stream/chacha20/libsodium_la-stream_chacha20.lo `test -f 'crypto_stream/chacha20/stream_chacha20.c' || echo '$(srcdir)/'`crypto_stream/chacha20/stream_chacha20.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_stream/chacha20/$(DEPDIR)/libsodium_la-stream_chacha20.Tpo crypto_stream/chacha20/$(DEPDIR)/libsodium_la-stream_chacha20.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_stream/chacha20/stream_chacha20.c' object='crypto_stream/chacha20/libsodium_la-stream_chacha20.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_stream/chacha20/libsodium_la-stream_chacha20.lo `test -f 'crypto_stream/chacha20/stream_chacha20.c' || echo '$(srcdir)/'`crypto_stream/chacha20/stream_chacha20.c + +crypto_stream/chacha20/ref/libsodium_la-chacha20_ref.lo: crypto_stream/chacha20/ref/chacha20_ref.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_stream/chacha20/ref/libsodium_la-chacha20_ref.lo -MD -MP -MF crypto_stream/chacha20/ref/$(DEPDIR)/libsodium_la-chacha20_ref.Tpo -c -o crypto_stream/chacha20/ref/libsodium_la-chacha20_ref.lo `test -f 'crypto_stream/chacha20/ref/chacha20_ref.c' || echo '$(srcdir)/'`crypto_stream/chacha20/ref/chacha20_ref.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_stream/chacha20/ref/$(DEPDIR)/libsodium_la-chacha20_ref.Tpo crypto_stream/chacha20/ref/$(DEPDIR)/libsodium_la-chacha20_ref.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_stream/chacha20/ref/chacha20_ref.c' object='crypto_stream/chacha20/ref/libsodium_la-chacha20_ref.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_stream/chacha20/ref/libsodium_la-chacha20_ref.lo `test -f 'crypto_stream/chacha20/ref/chacha20_ref.c' || echo '$(srcdir)/'`crypto_stream/chacha20/ref/chacha20_ref.c + +crypto_stream/libsodium_la-crypto_stream.lo: crypto_stream/crypto_stream.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_stream/libsodium_la-crypto_stream.lo -MD -MP -MF crypto_stream/$(DEPDIR)/libsodium_la-crypto_stream.Tpo -c -o crypto_stream/libsodium_la-crypto_stream.lo `test -f 'crypto_stream/crypto_stream.c' || echo '$(srcdir)/'`crypto_stream/crypto_stream.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_stream/$(DEPDIR)/libsodium_la-crypto_stream.Tpo crypto_stream/$(DEPDIR)/libsodium_la-crypto_stream.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_stream/crypto_stream.c' object='crypto_stream/libsodium_la-crypto_stream.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_stream/libsodium_la-crypto_stream.lo `test -f 'crypto_stream/crypto_stream.c' || echo '$(srcdir)/'`crypto_stream/crypto_stream.c + +crypto_stream/salsa20/libsodium_la-stream_salsa20.lo: crypto_stream/salsa20/stream_salsa20.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_stream/salsa20/libsodium_la-stream_salsa20.lo -MD -MP -MF crypto_stream/salsa20/$(DEPDIR)/libsodium_la-stream_salsa20.Tpo -c -o crypto_stream/salsa20/libsodium_la-stream_salsa20.lo `test -f 'crypto_stream/salsa20/stream_salsa20.c' || echo '$(srcdir)/'`crypto_stream/salsa20/stream_salsa20.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_stream/salsa20/$(DEPDIR)/libsodium_la-stream_salsa20.Tpo crypto_stream/salsa20/$(DEPDIR)/libsodium_la-stream_salsa20.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_stream/salsa20/stream_salsa20.c' object='crypto_stream/salsa20/libsodium_la-stream_salsa20.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_stream/salsa20/libsodium_la-stream_salsa20.lo `test -f 'crypto_stream/salsa20/stream_salsa20.c' || echo '$(srcdir)/'`crypto_stream/salsa20/stream_salsa20.c + +crypto_stream/xsalsa20/libsodium_la-stream_xsalsa20.lo: crypto_stream/xsalsa20/stream_xsalsa20.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_stream/xsalsa20/libsodium_la-stream_xsalsa20.lo -MD -MP -MF crypto_stream/xsalsa20/$(DEPDIR)/libsodium_la-stream_xsalsa20.Tpo -c -o crypto_stream/xsalsa20/libsodium_la-stream_xsalsa20.lo `test -f 'crypto_stream/xsalsa20/stream_xsalsa20.c' || echo '$(srcdir)/'`crypto_stream/xsalsa20/stream_xsalsa20.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_stream/xsalsa20/$(DEPDIR)/libsodium_la-stream_xsalsa20.Tpo crypto_stream/xsalsa20/$(DEPDIR)/libsodium_la-stream_xsalsa20.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_stream/xsalsa20/stream_xsalsa20.c' object='crypto_stream/xsalsa20/libsodium_la-stream_xsalsa20.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_stream/xsalsa20/libsodium_la-stream_xsalsa20.lo `test -f 'crypto_stream/xsalsa20/stream_xsalsa20.c' || echo '$(srcdir)/'`crypto_stream/xsalsa20/stream_xsalsa20.c + +crypto_verify/sodium/libsodium_la-verify.lo: crypto_verify/sodium/verify.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_verify/sodium/libsodium_la-verify.lo -MD -MP -MF crypto_verify/sodium/$(DEPDIR)/libsodium_la-verify.Tpo -c -o crypto_verify/sodium/libsodium_la-verify.lo `test -f 'crypto_verify/sodium/verify.c' || echo '$(srcdir)/'`crypto_verify/sodium/verify.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_verify/sodium/$(DEPDIR)/libsodium_la-verify.Tpo crypto_verify/sodium/$(DEPDIR)/libsodium_la-verify.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_verify/sodium/verify.c' object='crypto_verify/sodium/libsodium_la-verify.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_verify/sodium/libsodium_la-verify.lo `test -f 'crypto_verify/sodium/verify.c' || echo '$(srcdir)/'`crypto_verify/sodium/verify.c + +randombytes/libsodium_la-randombytes.lo: randombytes/randombytes.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT randombytes/libsodium_la-randombytes.lo -MD -MP -MF randombytes/$(DEPDIR)/libsodium_la-randombytes.Tpo -c -o randombytes/libsodium_la-randombytes.lo `test -f 'randombytes/randombytes.c' || echo '$(srcdir)/'`randombytes/randombytes.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) randombytes/$(DEPDIR)/libsodium_la-randombytes.Tpo randombytes/$(DEPDIR)/libsodium_la-randombytes.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='randombytes/randombytes.c' object='randombytes/libsodium_la-randombytes.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o randombytes/libsodium_la-randombytes.lo `test -f 'randombytes/randombytes.c' || echo '$(srcdir)/'`randombytes/randombytes.c + +sodium/libsodium_la-codecs.lo: sodium/codecs.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sodium/libsodium_la-codecs.lo -MD -MP -MF sodium/$(DEPDIR)/libsodium_la-codecs.Tpo -c -o sodium/libsodium_la-codecs.lo `test -f 'sodium/codecs.c' || echo '$(srcdir)/'`sodium/codecs.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sodium/$(DEPDIR)/libsodium_la-codecs.Tpo sodium/$(DEPDIR)/libsodium_la-codecs.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sodium/codecs.c' object='sodium/libsodium_la-codecs.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sodium/libsodium_la-codecs.lo `test -f 'sodium/codecs.c' || echo '$(srcdir)/'`sodium/codecs.c + +sodium/libsodium_la-core.lo: sodium/core.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sodium/libsodium_la-core.lo -MD -MP -MF sodium/$(DEPDIR)/libsodium_la-core.Tpo -c -o sodium/libsodium_la-core.lo `test -f 'sodium/core.c' || echo '$(srcdir)/'`sodium/core.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sodium/$(DEPDIR)/libsodium_la-core.Tpo sodium/$(DEPDIR)/libsodium_la-core.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sodium/core.c' object='sodium/libsodium_la-core.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sodium/libsodium_la-core.lo `test -f 'sodium/core.c' || echo '$(srcdir)/'`sodium/core.c + +sodium/libsodium_la-runtime.lo: sodium/runtime.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sodium/libsodium_la-runtime.lo -MD -MP -MF sodium/$(DEPDIR)/libsodium_la-runtime.Tpo -c -o sodium/libsodium_la-runtime.lo `test -f 'sodium/runtime.c' || echo '$(srcdir)/'`sodium/runtime.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sodium/$(DEPDIR)/libsodium_la-runtime.Tpo sodium/$(DEPDIR)/libsodium_la-runtime.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sodium/runtime.c' object='sodium/libsodium_la-runtime.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sodium/libsodium_la-runtime.lo `test -f 'sodium/runtime.c' || echo '$(srcdir)/'`sodium/runtime.c + +sodium/libsodium_la-utils.lo: sodium/utils.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sodium/libsodium_la-utils.lo -MD -MP -MF sodium/$(DEPDIR)/libsodium_la-utils.Tpo -c -o sodium/libsodium_la-utils.lo `test -f 'sodium/utils.c' || echo '$(srcdir)/'`sodium/utils.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sodium/$(DEPDIR)/libsodium_la-utils.Tpo sodium/$(DEPDIR)/libsodium_la-utils.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sodium/utils.c' object='sodium/libsodium_la-utils.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sodium/libsodium_la-utils.lo `test -f 'sodium/utils.c' || echo '$(srcdir)/'`sodium/utils.c + +sodium/libsodium_la-version.lo: sodium/version.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sodium/libsodium_la-version.lo -MD -MP -MF sodium/$(DEPDIR)/libsodium_la-version.Tpo -c -o sodium/libsodium_la-version.lo `test -f 'sodium/version.c' || echo '$(srcdir)/'`sodium/version.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sodium/$(DEPDIR)/libsodium_la-version.Tpo sodium/$(DEPDIR)/libsodium_la-version.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sodium/version.c' object='sodium/libsodium_la-version.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sodium/libsodium_la-version.lo `test -f 'sodium/version.c' || echo '$(srcdir)/'`sodium/version.c + +crypto_stream/salsa20/xmm6/libsodium_la-salsa20_xmm6.lo: crypto_stream/salsa20/xmm6/salsa20_xmm6.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_stream/salsa20/xmm6/libsodium_la-salsa20_xmm6.lo -MD -MP -MF crypto_stream/salsa20/xmm6/$(DEPDIR)/libsodium_la-salsa20_xmm6.Tpo -c -o crypto_stream/salsa20/xmm6/libsodium_la-salsa20_xmm6.lo `test -f 'crypto_stream/salsa20/xmm6/salsa20_xmm6.c' || echo '$(srcdir)/'`crypto_stream/salsa20/xmm6/salsa20_xmm6.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_stream/salsa20/xmm6/$(DEPDIR)/libsodium_la-salsa20_xmm6.Tpo crypto_stream/salsa20/xmm6/$(DEPDIR)/libsodium_la-salsa20_xmm6.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_stream/salsa20/xmm6/salsa20_xmm6.c' object='crypto_stream/salsa20/xmm6/libsodium_la-salsa20_xmm6.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_stream/salsa20/xmm6/libsodium_la-salsa20_xmm6.lo `test -f 'crypto_stream/salsa20/xmm6/salsa20_xmm6.c' || echo '$(srcdir)/'`crypto_stream/salsa20/xmm6/salsa20_xmm6.c + +crypto_stream/salsa20/ref/libsodium_la-salsa20_ref.lo: crypto_stream/salsa20/ref/salsa20_ref.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_stream/salsa20/ref/libsodium_la-salsa20_ref.lo -MD -MP -MF crypto_stream/salsa20/ref/$(DEPDIR)/libsodium_la-salsa20_ref.Tpo -c -o crypto_stream/salsa20/ref/libsodium_la-salsa20_ref.lo `test -f 'crypto_stream/salsa20/ref/salsa20_ref.c' || echo '$(srcdir)/'`crypto_stream/salsa20/ref/salsa20_ref.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_stream/salsa20/ref/$(DEPDIR)/libsodium_la-salsa20_ref.Tpo crypto_stream/salsa20/ref/$(DEPDIR)/libsodium_la-salsa20_ref.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_stream/salsa20/ref/salsa20_ref.c' object='crypto_stream/salsa20/ref/libsodium_la-salsa20_ref.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_stream/salsa20/ref/libsodium_la-salsa20_ref.lo `test -f 'crypto_stream/salsa20/ref/salsa20_ref.c' || echo '$(srcdir)/'`crypto_stream/salsa20/ref/salsa20_ref.c + +crypto_scalarmult/curve25519/sandy2x/libsodium_la-curve25519_sandy2x.lo: crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_scalarmult/curve25519/sandy2x/libsodium_la-curve25519_sandy2x.lo -MD -MP -MF crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/libsodium_la-curve25519_sandy2x.Tpo -c -o crypto_scalarmult/curve25519/sandy2x/libsodium_la-curve25519_sandy2x.lo `test -f 'crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/libsodium_la-curve25519_sandy2x.Tpo crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/libsodium_la-curve25519_sandy2x.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.c' object='crypto_scalarmult/curve25519/sandy2x/libsodium_la-curve25519_sandy2x.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_scalarmult/curve25519/sandy2x/libsodium_la-curve25519_sandy2x.lo `test -f 'crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.c + +crypto_scalarmult/curve25519/sandy2x/libsodium_la-fe51_invert.lo: crypto_scalarmult/curve25519/sandy2x/fe51_invert.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_scalarmult/curve25519/sandy2x/libsodium_la-fe51_invert.lo -MD -MP -MF crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/libsodium_la-fe51_invert.Tpo -c -o crypto_scalarmult/curve25519/sandy2x/libsodium_la-fe51_invert.lo `test -f 'crypto_scalarmult/curve25519/sandy2x/fe51_invert.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/sandy2x/fe51_invert.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/libsodium_la-fe51_invert.Tpo crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/libsodium_la-fe51_invert.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_scalarmult/curve25519/sandy2x/fe51_invert.c' object='crypto_scalarmult/curve25519/sandy2x/libsodium_la-fe51_invert.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_scalarmult/curve25519/sandy2x/libsodium_la-fe51_invert.lo `test -f 'crypto_scalarmult/curve25519/sandy2x/fe51_invert.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/sandy2x/fe51_invert.c + +crypto_scalarmult/curve25519/sandy2x/libsodium_la-fe_frombytes_sandy2x.lo: crypto_scalarmult/curve25519/sandy2x/fe_frombytes_sandy2x.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_scalarmult/curve25519/sandy2x/libsodium_la-fe_frombytes_sandy2x.lo -MD -MP -MF crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/libsodium_la-fe_frombytes_sandy2x.Tpo -c -o crypto_scalarmult/curve25519/sandy2x/libsodium_la-fe_frombytes_sandy2x.lo `test -f 'crypto_scalarmult/curve25519/sandy2x/fe_frombytes_sandy2x.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/sandy2x/fe_frombytes_sandy2x.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/libsodium_la-fe_frombytes_sandy2x.Tpo crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/libsodium_la-fe_frombytes_sandy2x.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_scalarmult/curve25519/sandy2x/fe_frombytes_sandy2x.c' object='crypto_scalarmult/curve25519/sandy2x/libsodium_la-fe_frombytes_sandy2x.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_scalarmult/curve25519/sandy2x/libsodium_la-fe_frombytes_sandy2x.lo `test -f 'crypto_scalarmult/curve25519/sandy2x/fe_frombytes_sandy2x.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/sandy2x/fe_frombytes_sandy2x.c + +crypto_box/curve25519xchacha20poly1305/libsodium_la-box_curve25519xchacha20poly1305.lo: crypto_box/curve25519xchacha20poly1305/box_curve25519xchacha20poly1305.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_box/curve25519xchacha20poly1305/libsodium_la-box_curve25519xchacha20poly1305.lo -MD -MP -MF crypto_box/curve25519xchacha20poly1305/$(DEPDIR)/libsodium_la-box_curve25519xchacha20poly1305.Tpo -c -o crypto_box/curve25519xchacha20poly1305/libsodium_la-box_curve25519xchacha20poly1305.lo `test -f 'crypto_box/curve25519xchacha20poly1305/box_curve25519xchacha20poly1305.c' || echo '$(srcdir)/'`crypto_box/curve25519xchacha20poly1305/box_curve25519xchacha20poly1305.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_box/curve25519xchacha20poly1305/$(DEPDIR)/libsodium_la-box_curve25519xchacha20poly1305.Tpo crypto_box/curve25519xchacha20poly1305/$(DEPDIR)/libsodium_la-box_curve25519xchacha20poly1305.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_box/curve25519xchacha20poly1305/box_curve25519xchacha20poly1305.c' object='crypto_box/curve25519xchacha20poly1305/libsodium_la-box_curve25519xchacha20poly1305.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_box/curve25519xchacha20poly1305/libsodium_la-box_curve25519xchacha20poly1305.lo `test -f 'crypto_box/curve25519xchacha20poly1305/box_curve25519xchacha20poly1305.c' || echo '$(srcdir)/'`crypto_box/curve25519xchacha20poly1305/box_curve25519xchacha20poly1305.c + +crypto_box/curve25519xchacha20poly1305/libsodium_la-box_seal_curve25519xchacha20poly1305.lo: crypto_box/curve25519xchacha20poly1305/box_seal_curve25519xchacha20poly1305.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_box/curve25519xchacha20poly1305/libsodium_la-box_seal_curve25519xchacha20poly1305.lo -MD -MP -MF crypto_box/curve25519xchacha20poly1305/$(DEPDIR)/libsodium_la-box_seal_curve25519xchacha20poly1305.Tpo -c -o crypto_box/curve25519xchacha20poly1305/libsodium_la-box_seal_curve25519xchacha20poly1305.lo `test -f 'crypto_box/curve25519xchacha20poly1305/box_seal_curve25519xchacha20poly1305.c' || echo '$(srcdir)/'`crypto_box/curve25519xchacha20poly1305/box_seal_curve25519xchacha20poly1305.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_box/curve25519xchacha20poly1305/$(DEPDIR)/libsodium_la-box_seal_curve25519xchacha20poly1305.Tpo crypto_box/curve25519xchacha20poly1305/$(DEPDIR)/libsodium_la-box_seal_curve25519xchacha20poly1305.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_box/curve25519xchacha20poly1305/box_seal_curve25519xchacha20poly1305.c' object='crypto_box/curve25519xchacha20poly1305/libsodium_la-box_seal_curve25519xchacha20poly1305.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_box/curve25519xchacha20poly1305/libsodium_la-box_seal_curve25519xchacha20poly1305.lo `test -f 'crypto_box/curve25519xchacha20poly1305/box_seal_curve25519xchacha20poly1305.c' || echo '$(srcdir)/'`crypto_box/curve25519xchacha20poly1305/box_seal_curve25519xchacha20poly1305.c + +crypto_core/ed25519/libsodium_la-core_ed25519.lo: crypto_core/ed25519/core_ed25519.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_core/ed25519/libsodium_la-core_ed25519.lo -MD -MP -MF crypto_core/ed25519/$(DEPDIR)/libsodium_la-core_ed25519.Tpo -c -o crypto_core/ed25519/libsodium_la-core_ed25519.lo `test -f 'crypto_core/ed25519/core_ed25519.c' || echo '$(srcdir)/'`crypto_core/ed25519/core_ed25519.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_core/ed25519/$(DEPDIR)/libsodium_la-core_ed25519.Tpo crypto_core/ed25519/$(DEPDIR)/libsodium_la-core_ed25519.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_core/ed25519/core_ed25519.c' object='crypto_core/ed25519/libsodium_la-core_ed25519.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_core/ed25519/libsodium_la-core_ed25519.lo `test -f 'crypto_core/ed25519/core_ed25519.c' || echo '$(srcdir)/'`crypto_core/ed25519/core_ed25519.c + +crypto_core/ed25519/libsodium_la-core_ristretto255.lo: crypto_core/ed25519/core_ristretto255.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_core/ed25519/libsodium_la-core_ristretto255.lo -MD -MP -MF crypto_core/ed25519/$(DEPDIR)/libsodium_la-core_ristretto255.Tpo -c -o crypto_core/ed25519/libsodium_la-core_ristretto255.lo `test -f 'crypto_core/ed25519/core_ristretto255.c' || echo '$(srcdir)/'`crypto_core/ed25519/core_ristretto255.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_core/ed25519/$(DEPDIR)/libsodium_la-core_ristretto255.Tpo crypto_core/ed25519/$(DEPDIR)/libsodium_la-core_ristretto255.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_core/ed25519/core_ristretto255.c' object='crypto_core/ed25519/libsodium_la-core_ristretto255.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_core/ed25519/libsodium_la-core_ristretto255.lo `test -f 'crypto_core/ed25519/core_ristretto255.c' || echo '$(srcdir)/'`crypto_core/ed25519/core_ristretto255.c + +crypto_kdf/hkdf/libsodium_la-kdf_hkdf_sha256.lo: crypto_kdf/hkdf/kdf_hkdf_sha256.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_kdf/hkdf/libsodium_la-kdf_hkdf_sha256.lo -MD -MP -MF crypto_kdf/hkdf/$(DEPDIR)/libsodium_la-kdf_hkdf_sha256.Tpo -c -o crypto_kdf/hkdf/libsodium_la-kdf_hkdf_sha256.lo `test -f 'crypto_kdf/hkdf/kdf_hkdf_sha256.c' || echo '$(srcdir)/'`crypto_kdf/hkdf/kdf_hkdf_sha256.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_kdf/hkdf/$(DEPDIR)/libsodium_la-kdf_hkdf_sha256.Tpo crypto_kdf/hkdf/$(DEPDIR)/libsodium_la-kdf_hkdf_sha256.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_kdf/hkdf/kdf_hkdf_sha256.c' object='crypto_kdf/hkdf/libsodium_la-kdf_hkdf_sha256.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_kdf/hkdf/libsodium_la-kdf_hkdf_sha256.lo `test -f 'crypto_kdf/hkdf/kdf_hkdf_sha256.c' || echo '$(srcdir)/'`crypto_kdf/hkdf/kdf_hkdf_sha256.c + +crypto_kdf/hkdf/libsodium_la-kdf_hkdf_sha512.lo: crypto_kdf/hkdf/kdf_hkdf_sha512.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_kdf/hkdf/libsodium_la-kdf_hkdf_sha512.lo -MD -MP -MF crypto_kdf/hkdf/$(DEPDIR)/libsodium_la-kdf_hkdf_sha512.Tpo -c -o crypto_kdf/hkdf/libsodium_la-kdf_hkdf_sha512.lo `test -f 'crypto_kdf/hkdf/kdf_hkdf_sha512.c' || echo '$(srcdir)/'`crypto_kdf/hkdf/kdf_hkdf_sha512.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_kdf/hkdf/$(DEPDIR)/libsodium_la-kdf_hkdf_sha512.Tpo crypto_kdf/hkdf/$(DEPDIR)/libsodium_la-kdf_hkdf_sha512.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_kdf/hkdf/kdf_hkdf_sha512.c' object='crypto_kdf/hkdf/libsodium_la-kdf_hkdf_sha512.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_kdf/hkdf/libsodium_la-kdf_hkdf_sha512.lo `test -f 'crypto_kdf/hkdf/kdf_hkdf_sha512.c' || echo '$(srcdir)/'`crypto_kdf/hkdf/kdf_hkdf_sha512.c + +crypto_pwhash/scryptsalsa208sha256/libsodium_la-crypto_scrypt-common.lo: crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_pwhash/scryptsalsa208sha256/libsodium_la-crypto_scrypt-common.lo -MD -MP -MF crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/libsodium_la-crypto_scrypt-common.Tpo -c -o crypto_pwhash/scryptsalsa208sha256/libsodium_la-crypto_scrypt-common.lo `test -f 'crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c' || echo '$(srcdir)/'`crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/libsodium_la-crypto_scrypt-common.Tpo crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/libsodium_la-crypto_scrypt-common.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c' object='crypto_pwhash/scryptsalsa208sha256/libsodium_la-crypto_scrypt-common.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_pwhash/scryptsalsa208sha256/libsodium_la-crypto_scrypt-common.lo `test -f 'crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c' || echo '$(srcdir)/'`crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c + +crypto_pwhash/scryptsalsa208sha256/libsodium_la-scrypt_platform.lo: crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_pwhash/scryptsalsa208sha256/libsodium_la-scrypt_platform.lo -MD -MP -MF crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/libsodium_la-scrypt_platform.Tpo -c -o crypto_pwhash/scryptsalsa208sha256/libsodium_la-scrypt_platform.lo `test -f 'crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c' || echo '$(srcdir)/'`crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/libsodium_la-scrypt_platform.Tpo crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/libsodium_la-scrypt_platform.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c' object='crypto_pwhash/scryptsalsa208sha256/libsodium_la-scrypt_platform.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_pwhash/scryptsalsa208sha256/libsodium_la-scrypt_platform.lo `test -f 'crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c' || echo '$(srcdir)/'`crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c + +crypto_pwhash/scryptsalsa208sha256/libsodium_la-pbkdf2-sha256.lo: crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_pwhash/scryptsalsa208sha256/libsodium_la-pbkdf2-sha256.lo -MD -MP -MF crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/libsodium_la-pbkdf2-sha256.Tpo -c -o crypto_pwhash/scryptsalsa208sha256/libsodium_la-pbkdf2-sha256.lo `test -f 'crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.c' || echo '$(srcdir)/'`crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/libsodium_la-pbkdf2-sha256.Tpo crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/libsodium_la-pbkdf2-sha256.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.c' object='crypto_pwhash/scryptsalsa208sha256/libsodium_la-pbkdf2-sha256.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_pwhash/scryptsalsa208sha256/libsodium_la-pbkdf2-sha256.lo `test -f 'crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.c' || echo '$(srcdir)/'`crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.c + +crypto_pwhash/scryptsalsa208sha256/libsodium_la-pwhash_scryptsalsa208sha256.lo: crypto_pwhash/scryptsalsa208sha256/pwhash_scryptsalsa208sha256.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_pwhash/scryptsalsa208sha256/libsodium_la-pwhash_scryptsalsa208sha256.lo -MD -MP -MF crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/libsodium_la-pwhash_scryptsalsa208sha256.Tpo -c -o crypto_pwhash/scryptsalsa208sha256/libsodium_la-pwhash_scryptsalsa208sha256.lo `test -f 'crypto_pwhash/scryptsalsa208sha256/pwhash_scryptsalsa208sha256.c' || echo '$(srcdir)/'`crypto_pwhash/scryptsalsa208sha256/pwhash_scryptsalsa208sha256.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/libsodium_la-pwhash_scryptsalsa208sha256.Tpo crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/libsodium_la-pwhash_scryptsalsa208sha256.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_pwhash/scryptsalsa208sha256/pwhash_scryptsalsa208sha256.c' object='crypto_pwhash/scryptsalsa208sha256/libsodium_la-pwhash_scryptsalsa208sha256.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_pwhash/scryptsalsa208sha256/libsodium_la-pwhash_scryptsalsa208sha256.lo `test -f 'crypto_pwhash/scryptsalsa208sha256/pwhash_scryptsalsa208sha256.c' || echo '$(srcdir)/'`crypto_pwhash/scryptsalsa208sha256/pwhash_scryptsalsa208sha256.c + +crypto_pwhash/scryptsalsa208sha256/nosse/libsodium_la-pwhash_scryptsalsa208sha256_nosse.lo: crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_pwhash/scryptsalsa208sha256/nosse/libsodium_la-pwhash_scryptsalsa208sha256_nosse.lo -MD -MP -MF crypto_pwhash/scryptsalsa208sha256/nosse/$(DEPDIR)/libsodium_la-pwhash_scryptsalsa208sha256_nosse.Tpo -c -o crypto_pwhash/scryptsalsa208sha256/nosse/libsodium_la-pwhash_scryptsalsa208sha256_nosse.lo `test -f 'crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c' || echo '$(srcdir)/'`crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_pwhash/scryptsalsa208sha256/nosse/$(DEPDIR)/libsodium_la-pwhash_scryptsalsa208sha256_nosse.Tpo crypto_pwhash/scryptsalsa208sha256/nosse/$(DEPDIR)/libsodium_la-pwhash_scryptsalsa208sha256_nosse.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c' object='crypto_pwhash/scryptsalsa208sha256/nosse/libsodium_la-pwhash_scryptsalsa208sha256_nosse.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_pwhash/scryptsalsa208sha256/nosse/libsodium_la-pwhash_scryptsalsa208sha256_nosse.lo `test -f 'crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c' || echo '$(srcdir)/'`crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c + +crypto_scalarmult/ed25519/ref10/libsodium_la-scalarmult_ed25519_ref10.lo: crypto_scalarmult/ed25519/ref10/scalarmult_ed25519_ref10.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_scalarmult/ed25519/ref10/libsodium_la-scalarmult_ed25519_ref10.lo -MD -MP -MF crypto_scalarmult/ed25519/ref10/$(DEPDIR)/libsodium_la-scalarmult_ed25519_ref10.Tpo -c -o crypto_scalarmult/ed25519/ref10/libsodium_la-scalarmult_ed25519_ref10.lo `test -f 'crypto_scalarmult/ed25519/ref10/scalarmult_ed25519_ref10.c' || echo '$(srcdir)/'`crypto_scalarmult/ed25519/ref10/scalarmult_ed25519_ref10.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_scalarmult/ed25519/ref10/$(DEPDIR)/libsodium_la-scalarmult_ed25519_ref10.Tpo crypto_scalarmult/ed25519/ref10/$(DEPDIR)/libsodium_la-scalarmult_ed25519_ref10.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_scalarmult/ed25519/ref10/scalarmult_ed25519_ref10.c' object='crypto_scalarmult/ed25519/ref10/libsodium_la-scalarmult_ed25519_ref10.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_scalarmult/ed25519/ref10/libsodium_la-scalarmult_ed25519_ref10.lo `test -f 'crypto_scalarmult/ed25519/ref10/scalarmult_ed25519_ref10.c' || echo '$(srcdir)/'`crypto_scalarmult/ed25519/ref10/scalarmult_ed25519_ref10.c + +crypto_scalarmult/ristretto255/ref10/libsodium_la-scalarmult_ristretto255_ref10.lo: crypto_scalarmult/ristretto255/ref10/scalarmult_ristretto255_ref10.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_scalarmult/ristretto255/ref10/libsodium_la-scalarmult_ristretto255_ref10.lo -MD -MP -MF crypto_scalarmult/ristretto255/ref10/$(DEPDIR)/libsodium_la-scalarmult_ristretto255_ref10.Tpo -c -o crypto_scalarmult/ristretto255/ref10/libsodium_la-scalarmult_ristretto255_ref10.lo `test -f 'crypto_scalarmult/ristretto255/ref10/scalarmult_ristretto255_ref10.c' || echo '$(srcdir)/'`crypto_scalarmult/ristretto255/ref10/scalarmult_ristretto255_ref10.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_scalarmult/ristretto255/ref10/$(DEPDIR)/libsodium_la-scalarmult_ristretto255_ref10.Tpo crypto_scalarmult/ristretto255/ref10/$(DEPDIR)/libsodium_la-scalarmult_ristretto255_ref10.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_scalarmult/ristretto255/ref10/scalarmult_ristretto255_ref10.c' object='crypto_scalarmult/ristretto255/ref10/libsodium_la-scalarmult_ristretto255_ref10.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_scalarmult/ristretto255/ref10/libsodium_la-scalarmult_ristretto255_ref10.lo `test -f 'crypto_scalarmult/ristretto255/ref10/scalarmult_ristretto255_ref10.c' || echo '$(srcdir)/'`crypto_scalarmult/ristretto255/ref10/scalarmult_ristretto255_ref10.c + +crypto_secretbox/xchacha20poly1305/libsodium_la-secretbox_xchacha20poly1305.lo: crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_secretbox/xchacha20poly1305/libsodium_la-secretbox_xchacha20poly1305.lo -MD -MP -MF crypto_secretbox/xchacha20poly1305/$(DEPDIR)/libsodium_la-secretbox_xchacha20poly1305.Tpo -c -o crypto_secretbox/xchacha20poly1305/libsodium_la-secretbox_xchacha20poly1305.lo `test -f 'crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c' || echo '$(srcdir)/'`crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_secretbox/xchacha20poly1305/$(DEPDIR)/libsodium_la-secretbox_xchacha20poly1305.Tpo crypto_secretbox/xchacha20poly1305/$(DEPDIR)/libsodium_la-secretbox_xchacha20poly1305.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c' object='crypto_secretbox/xchacha20poly1305/libsodium_la-secretbox_xchacha20poly1305.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_secretbox/xchacha20poly1305/libsodium_la-secretbox_xchacha20poly1305.lo `test -f 'crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c' || echo '$(srcdir)/'`crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c + +crypto_shorthash/siphash24/libsodium_la-shorthash_siphashx24.lo: crypto_shorthash/siphash24/shorthash_siphashx24.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_shorthash/siphash24/libsodium_la-shorthash_siphashx24.lo -MD -MP -MF crypto_shorthash/siphash24/$(DEPDIR)/libsodium_la-shorthash_siphashx24.Tpo -c -o crypto_shorthash/siphash24/libsodium_la-shorthash_siphashx24.lo `test -f 'crypto_shorthash/siphash24/shorthash_siphashx24.c' || echo '$(srcdir)/'`crypto_shorthash/siphash24/shorthash_siphashx24.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_shorthash/siphash24/$(DEPDIR)/libsodium_la-shorthash_siphashx24.Tpo crypto_shorthash/siphash24/$(DEPDIR)/libsodium_la-shorthash_siphashx24.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_shorthash/siphash24/shorthash_siphashx24.c' object='crypto_shorthash/siphash24/libsodium_la-shorthash_siphashx24.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_shorthash/siphash24/libsodium_la-shorthash_siphashx24.lo `test -f 'crypto_shorthash/siphash24/shorthash_siphashx24.c' || echo '$(srcdir)/'`crypto_shorthash/siphash24/shorthash_siphashx24.c + +crypto_shorthash/siphash24/ref/libsodium_la-shorthash_siphashx24_ref.lo: crypto_shorthash/siphash24/ref/shorthash_siphashx24_ref.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_shorthash/siphash24/ref/libsodium_la-shorthash_siphashx24_ref.lo -MD -MP -MF crypto_shorthash/siphash24/ref/$(DEPDIR)/libsodium_la-shorthash_siphashx24_ref.Tpo -c -o crypto_shorthash/siphash24/ref/libsodium_la-shorthash_siphashx24_ref.lo `test -f 'crypto_shorthash/siphash24/ref/shorthash_siphashx24_ref.c' || echo '$(srcdir)/'`crypto_shorthash/siphash24/ref/shorthash_siphashx24_ref.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_shorthash/siphash24/ref/$(DEPDIR)/libsodium_la-shorthash_siphashx24_ref.Tpo crypto_shorthash/siphash24/ref/$(DEPDIR)/libsodium_la-shorthash_siphashx24_ref.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_shorthash/siphash24/ref/shorthash_siphashx24_ref.c' object='crypto_shorthash/siphash24/ref/libsodium_la-shorthash_siphashx24_ref.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_shorthash/siphash24/ref/libsodium_la-shorthash_siphashx24_ref.lo `test -f 'crypto_shorthash/siphash24/ref/shorthash_siphashx24_ref.c' || echo '$(srcdir)/'`crypto_shorthash/siphash24/ref/shorthash_siphashx24_ref.c + +crypto_stream/salsa2012/ref/libsodium_la-stream_salsa2012_ref.lo: crypto_stream/salsa2012/ref/stream_salsa2012_ref.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_stream/salsa2012/ref/libsodium_la-stream_salsa2012_ref.lo -MD -MP -MF crypto_stream/salsa2012/ref/$(DEPDIR)/libsodium_la-stream_salsa2012_ref.Tpo -c -o crypto_stream/salsa2012/ref/libsodium_la-stream_salsa2012_ref.lo `test -f 'crypto_stream/salsa2012/ref/stream_salsa2012_ref.c' || echo '$(srcdir)/'`crypto_stream/salsa2012/ref/stream_salsa2012_ref.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_stream/salsa2012/ref/$(DEPDIR)/libsodium_la-stream_salsa2012_ref.Tpo crypto_stream/salsa2012/ref/$(DEPDIR)/libsodium_la-stream_salsa2012_ref.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_stream/salsa2012/ref/stream_salsa2012_ref.c' object='crypto_stream/salsa2012/ref/libsodium_la-stream_salsa2012_ref.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_stream/salsa2012/ref/libsodium_la-stream_salsa2012_ref.lo `test -f 'crypto_stream/salsa2012/ref/stream_salsa2012_ref.c' || echo '$(srcdir)/'`crypto_stream/salsa2012/ref/stream_salsa2012_ref.c + +crypto_stream/salsa2012/libsodium_la-stream_salsa2012.lo: crypto_stream/salsa2012/stream_salsa2012.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_stream/salsa2012/libsodium_la-stream_salsa2012.lo -MD -MP -MF crypto_stream/salsa2012/$(DEPDIR)/libsodium_la-stream_salsa2012.Tpo -c -o crypto_stream/salsa2012/libsodium_la-stream_salsa2012.lo `test -f 'crypto_stream/salsa2012/stream_salsa2012.c' || echo '$(srcdir)/'`crypto_stream/salsa2012/stream_salsa2012.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_stream/salsa2012/$(DEPDIR)/libsodium_la-stream_salsa2012.Tpo crypto_stream/salsa2012/$(DEPDIR)/libsodium_la-stream_salsa2012.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_stream/salsa2012/stream_salsa2012.c' object='crypto_stream/salsa2012/libsodium_la-stream_salsa2012.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_stream/salsa2012/libsodium_la-stream_salsa2012.lo `test -f 'crypto_stream/salsa2012/stream_salsa2012.c' || echo '$(srcdir)/'`crypto_stream/salsa2012/stream_salsa2012.c + +crypto_stream/salsa208/ref/libsodium_la-stream_salsa208_ref.lo: crypto_stream/salsa208/ref/stream_salsa208_ref.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_stream/salsa208/ref/libsodium_la-stream_salsa208_ref.lo -MD -MP -MF crypto_stream/salsa208/ref/$(DEPDIR)/libsodium_la-stream_salsa208_ref.Tpo -c -o crypto_stream/salsa208/ref/libsodium_la-stream_salsa208_ref.lo `test -f 'crypto_stream/salsa208/ref/stream_salsa208_ref.c' || echo '$(srcdir)/'`crypto_stream/salsa208/ref/stream_salsa208_ref.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_stream/salsa208/ref/$(DEPDIR)/libsodium_la-stream_salsa208_ref.Tpo crypto_stream/salsa208/ref/$(DEPDIR)/libsodium_la-stream_salsa208_ref.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_stream/salsa208/ref/stream_salsa208_ref.c' object='crypto_stream/salsa208/ref/libsodium_la-stream_salsa208_ref.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_stream/salsa208/ref/libsodium_la-stream_salsa208_ref.lo `test -f 'crypto_stream/salsa208/ref/stream_salsa208_ref.c' || echo '$(srcdir)/'`crypto_stream/salsa208/ref/stream_salsa208_ref.c + +crypto_stream/salsa208/libsodium_la-stream_salsa208.lo: crypto_stream/salsa208/stream_salsa208.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_stream/salsa208/libsodium_la-stream_salsa208.lo -MD -MP -MF crypto_stream/salsa208/$(DEPDIR)/libsodium_la-stream_salsa208.Tpo -c -o crypto_stream/salsa208/libsodium_la-stream_salsa208.lo `test -f 'crypto_stream/salsa208/stream_salsa208.c' || echo '$(srcdir)/'`crypto_stream/salsa208/stream_salsa208.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_stream/salsa208/$(DEPDIR)/libsodium_la-stream_salsa208.Tpo crypto_stream/salsa208/$(DEPDIR)/libsodium_la-stream_salsa208.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_stream/salsa208/stream_salsa208.c' object='crypto_stream/salsa208/libsodium_la-stream_salsa208.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_stream/salsa208/libsodium_la-stream_salsa208.lo `test -f 'crypto_stream/salsa208/stream_salsa208.c' || echo '$(srcdir)/'`crypto_stream/salsa208/stream_salsa208.c + +crypto_stream/xchacha20/libsodium_la-stream_xchacha20.lo: crypto_stream/xchacha20/stream_xchacha20.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_stream/xchacha20/libsodium_la-stream_xchacha20.lo -MD -MP -MF crypto_stream/xchacha20/$(DEPDIR)/libsodium_la-stream_xchacha20.Tpo -c -o crypto_stream/xchacha20/libsodium_la-stream_xchacha20.lo `test -f 'crypto_stream/xchacha20/stream_xchacha20.c' || echo '$(srcdir)/'`crypto_stream/xchacha20/stream_xchacha20.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_stream/xchacha20/$(DEPDIR)/libsodium_la-stream_xchacha20.Tpo crypto_stream/xchacha20/$(DEPDIR)/libsodium_la-stream_xchacha20.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_stream/xchacha20/stream_xchacha20.c' object='crypto_stream/xchacha20/libsodium_la-stream_xchacha20.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_stream/xchacha20/libsodium_la-stream_xchacha20.lo `test -f 'crypto_stream/xchacha20/stream_xchacha20.c' || echo '$(srcdir)/'`crypto_stream/xchacha20/stream_xchacha20.c + +randombytes/sysrandom/libsodium_la-randombytes_sysrandom.lo: randombytes/sysrandom/randombytes_sysrandom.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT randombytes/sysrandom/libsodium_la-randombytes_sysrandom.lo -MD -MP -MF randombytes/sysrandom/$(DEPDIR)/libsodium_la-randombytes_sysrandom.Tpo -c -o randombytes/sysrandom/libsodium_la-randombytes_sysrandom.lo `test -f 'randombytes/sysrandom/randombytes_sysrandom.c' || echo '$(srcdir)/'`randombytes/sysrandom/randombytes_sysrandom.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) randombytes/sysrandom/$(DEPDIR)/libsodium_la-randombytes_sysrandom.Tpo randombytes/sysrandom/$(DEPDIR)/libsodium_la-randombytes_sysrandom.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='randombytes/sysrandom/randombytes_sysrandom.c' object='randombytes/sysrandom/libsodium_la-randombytes_sysrandom.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o randombytes/sysrandom/libsodium_la-randombytes_sysrandom.lo `test -f 'randombytes/sysrandom/randombytes_sysrandom.c' || echo '$(srcdir)/'`randombytes/sysrandom/randombytes_sysrandom.c + +crypto_onetimeauth/poly1305/sse2/libsse2_la-poly1305_sse2.lo: crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsse2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_onetimeauth/poly1305/sse2/libsse2_la-poly1305_sse2.lo -MD -MP -MF crypto_onetimeauth/poly1305/sse2/$(DEPDIR)/libsse2_la-poly1305_sse2.Tpo -c -o crypto_onetimeauth/poly1305/sse2/libsse2_la-poly1305_sse2.lo `test -f 'crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c' || echo '$(srcdir)/'`crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_onetimeauth/poly1305/sse2/$(DEPDIR)/libsse2_la-poly1305_sse2.Tpo crypto_onetimeauth/poly1305/sse2/$(DEPDIR)/libsse2_la-poly1305_sse2.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c' object='crypto_onetimeauth/poly1305/sse2/libsse2_la-poly1305_sse2.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsse2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_onetimeauth/poly1305/sse2/libsse2_la-poly1305_sse2.lo `test -f 'crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c' || echo '$(srcdir)/'`crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c + +crypto_pwhash/scryptsalsa208sha256/sse/libsse2_la-pwhash_scryptsalsa208sha256_sse.lo: crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsse2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_pwhash/scryptsalsa208sha256/sse/libsse2_la-pwhash_scryptsalsa208sha256_sse.lo -MD -MP -MF crypto_pwhash/scryptsalsa208sha256/sse/$(DEPDIR)/libsse2_la-pwhash_scryptsalsa208sha256_sse.Tpo -c -o crypto_pwhash/scryptsalsa208sha256/sse/libsse2_la-pwhash_scryptsalsa208sha256_sse.lo `test -f 'crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c' || echo '$(srcdir)/'`crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_pwhash/scryptsalsa208sha256/sse/$(DEPDIR)/libsse2_la-pwhash_scryptsalsa208sha256_sse.Tpo crypto_pwhash/scryptsalsa208sha256/sse/$(DEPDIR)/libsse2_la-pwhash_scryptsalsa208sha256_sse.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c' object='crypto_pwhash/scryptsalsa208sha256/sse/libsse2_la-pwhash_scryptsalsa208sha256_sse.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsse2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_pwhash/scryptsalsa208sha256/sse/libsse2_la-pwhash_scryptsalsa208sha256_sse.lo `test -f 'crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c' || echo '$(srcdir)/'`crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c + +crypto_stream/salsa20/xmm6int/libsse2_la-salsa20_xmm6int-sse2.lo: crypto_stream/salsa20/xmm6int/salsa20_xmm6int-sse2.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsse2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_stream/salsa20/xmm6int/libsse2_la-salsa20_xmm6int-sse2.lo -MD -MP -MF crypto_stream/salsa20/xmm6int/$(DEPDIR)/libsse2_la-salsa20_xmm6int-sse2.Tpo -c -o crypto_stream/salsa20/xmm6int/libsse2_la-salsa20_xmm6int-sse2.lo `test -f 'crypto_stream/salsa20/xmm6int/salsa20_xmm6int-sse2.c' || echo '$(srcdir)/'`crypto_stream/salsa20/xmm6int/salsa20_xmm6int-sse2.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_stream/salsa20/xmm6int/$(DEPDIR)/libsse2_la-salsa20_xmm6int-sse2.Tpo crypto_stream/salsa20/xmm6int/$(DEPDIR)/libsse2_la-salsa20_xmm6int-sse2.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_stream/salsa20/xmm6int/salsa20_xmm6int-sse2.c' object='crypto_stream/salsa20/xmm6int/libsse2_la-salsa20_xmm6int-sse2.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsse2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_stream/salsa20/xmm6int/libsse2_la-salsa20_xmm6int-sse2.lo `test -f 'crypto_stream/salsa20/xmm6int/salsa20_xmm6int-sse2.c' || echo '$(srcdir)/'`crypto_stream/salsa20/xmm6int/salsa20_xmm6int-sse2.c + +crypto_generichash/blake2b/ref/libsse41_la-blake2b-compress-sse41.lo: crypto_generichash/blake2b/ref/blake2b-compress-sse41.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsse41_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_generichash/blake2b/ref/libsse41_la-blake2b-compress-sse41.lo -MD -MP -MF crypto_generichash/blake2b/ref/$(DEPDIR)/libsse41_la-blake2b-compress-sse41.Tpo -c -o crypto_generichash/blake2b/ref/libsse41_la-blake2b-compress-sse41.lo `test -f 'crypto_generichash/blake2b/ref/blake2b-compress-sse41.c' || echo '$(srcdir)/'`crypto_generichash/blake2b/ref/blake2b-compress-sse41.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_generichash/blake2b/ref/$(DEPDIR)/libsse41_la-blake2b-compress-sse41.Tpo crypto_generichash/blake2b/ref/$(DEPDIR)/libsse41_la-blake2b-compress-sse41.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_generichash/blake2b/ref/blake2b-compress-sse41.c' object='crypto_generichash/blake2b/ref/libsse41_la-blake2b-compress-sse41.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsse41_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_generichash/blake2b/ref/libsse41_la-blake2b-compress-sse41.lo `test -f 'crypto_generichash/blake2b/ref/blake2b-compress-sse41.c' || echo '$(srcdir)/'`crypto_generichash/blake2b/ref/blake2b-compress-sse41.c + +crypto_generichash/blake2b/ref/libssse3_la-blake2b-compress-ssse3.lo: crypto_generichash/blake2b/ref/blake2b-compress-ssse3.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libssse3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_generichash/blake2b/ref/libssse3_la-blake2b-compress-ssse3.lo -MD -MP -MF crypto_generichash/blake2b/ref/$(DEPDIR)/libssse3_la-blake2b-compress-ssse3.Tpo -c -o crypto_generichash/blake2b/ref/libssse3_la-blake2b-compress-ssse3.lo `test -f 'crypto_generichash/blake2b/ref/blake2b-compress-ssse3.c' || echo '$(srcdir)/'`crypto_generichash/blake2b/ref/blake2b-compress-ssse3.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_generichash/blake2b/ref/$(DEPDIR)/libssse3_la-blake2b-compress-ssse3.Tpo crypto_generichash/blake2b/ref/$(DEPDIR)/libssse3_la-blake2b-compress-ssse3.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_generichash/blake2b/ref/blake2b-compress-ssse3.c' object='crypto_generichash/blake2b/ref/libssse3_la-blake2b-compress-ssse3.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libssse3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_generichash/blake2b/ref/libssse3_la-blake2b-compress-ssse3.lo `test -f 'crypto_generichash/blake2b/ref/blake2b-compress-ssse3.c' || echo '$(srcdir)/'`crypto_generichash/blake2b/ref/blake2b-compress-ssse3.c + +crypto_pwhash/argon2/libssse3_la-argon2-fill-block-ssse3.lo: crypto_pwhash/argon2/argon2-fill-block-ssse3.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libssse3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_pwhash/argon2/libssse3_la-argon2-fill-block-ssse3.lo -MD -MP -MF crypto_pwhash/argon2/$(DEPDIR)/libssse3_la-argon2-fill-block-ssse3.Tpo -c -o crypto_pwhash/argon2/libssse3_la-argon2-fill-block-ssse3.lo `test -f 'crypto_pwhash/argon2/argon2-fill-block-ssse3.c' || echo '$(srcdir)/'`crypto_pwhash/argon2/argon2-fill-block-ssse3.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_pwhash/argon2/$(DEPDIR)/libssse3_la-argon2-fill-block-ssse3.Tpo crypto_pwhash/argon2/$(DEPDIR)/libssse3_la-argon2-fill-block-ssse3.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_pwhash/argon2/argon2-fill-block-ssse3.c' object='crypto_pwhash/argon2/libssse3_la-argon2-fill-block-ssse3.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libssse3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_pwhash/argon2/libssse3_la-argon2-fill-block-ssse3.lo `test -f 'crypto_pwhash/argon2/argon2-fill-block-ssse3.c' || echo '$(srcdir)/'`crypto_pwhash/argon2/argon2-fill-block-ssse3.c + +crypto_stream/chacha20/dolbeau/libssse3_la-chacha20_dolbeau-ssse3.lo: crypto_stream/chacha20/dolbeau/chacha20_dolbeau-ssse3.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libssse3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_stream/chacha20/dolbeau/libssse3_la-chacha20_dolbeau-ssse3.lo -MD -MP -MF crypto_stream/chacha20/dolbeau/$(DEPDIR)/libssse3_la-chacha20_dolbeau-ssse3.Tpo -c -o crypto_stream/chacha20/dolbeau/libssse3_la-chacha20_dolbeau-ssse3.lo `test -f 'crypto_stream/chacha20/dolbeau/chacha20_dolbeau-ssse3.c' || echo '$(srcdir)/'`crypto_stream/chacha20/dolbeau/chacha20_dolbeau-ssse3.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_stream/chacha20/dolbeau/$(DEPDIR)/libssse3_la-chacha20_dolbeau-ssse3.Tpo crypto_stream/chacha20/dolbeau/$(DEPDIR)/libssse3_la-chacha20_dolbeau-ssse3.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_stream/chacha20/dolbeau/chacha20_dolbeau-ssse3.c' object='crypto_stream/chacha20/dolbeau/libssse3_la-chacha20_dolbeau-ssse3.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libssse3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_stream/chacha20/dolbeau/libssse3_la-chacha20_dolbeau-ssse3.lo `test -f 'crypto_stream/chacha20/dolbeau/chacha20_dolbeau-ssse3.c' || echo '$(srcdir)/'`crypto_stream/chacha20/dolbeau/chacha20_dolbeau-ssse3.c + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + -rm -rf crypto_aead/aegis256/.libs crypto_aead/aegis256/_libs + -rm -rf crypto_aead/aegis256/aesni/.libs crypto_aead/aegis256/aesni/_libs + -rm -rf crypto_aead/aegis256/armcrypto/.libs crypto_aead/aegis256/armcrypto/_libs + -rm -rf crypto_aead/aes256gcm/aesni/.libs crypto_aead/aes256gcm/aesni/_libs + -rm -rf crypto_aead/chacha20poly1305/sodium/.libs crypto_aead/chacha20poly1305/sodium/_libs + -rm -rf crypto_aead/xchacha20poly1305/sodium/.libs crypto_aead/xchacha20poly1305/sodium/_libs + -rm -rf crypto_auth/.libs crypto_auth/_libs + -rm -rf crypto_auth/hmacsha256/.libs crypto_auth/hmacsha256/_libs + -rm -rf crypto_auth/hmacsha512/.libs crypto_auth/hmacsha512/_libs + -rm -rf crypto_auth/hmacsha512256/.libs crypto_auth/hmacsha512256/_libs + -rm -rf crypto_box/.libs crypto_box/_libs + -rm -rf crypto_box/curve25519xchacha20poly1305/.libs crypto_box/curve25519xchacha20poly1305/_libs + -rm -rf crypto_box/curve25519xsalsa20poly1305/.libs crypto_box/curve25519xsalsa20poly1305/_libs + -rm -rf crypto_core/ed25519/.libs crypto_core/ed25519/_libs + -rm -rf crypto_core/ed25519/ref10/.libs crypto_core/ed25519/ref10/_libs + -rm -rf crypto_core/hchacha20/.libs crypto_core/hchacha20/_libs + -rm -rf crypto_core/hsalsa20/.libs crypto_core/hsalsa20/_libs + -rm -rf crypto_core/hsalsa20/ref2/.libs crypto_core/hsalsa20/ref2/_libs + -rm -rf crypto_core/salsa/ref/.libs crypto_core/salsa/ref/_libs + -rm -rf crypto_generichash/.libs crypto_generichash/_libs + -rm -rf crypto_generichash/blake2b/.libs crypto_generichash/blake2b/_libs + -rm -rf crypto_generichash/blake2b/ref/.libs crypto_generichash/blake2b/ref/_libs + -rm -rf crypto_hash/.libs crypto_hash/_libs + -rm -rf crypto_hash/sha256/.libs crypto_hash/sha256/_libs + -rm -rf crypto_hash/sha256/cp/.libs crypto_hash/sha256/cp/_libs + -rm -rf crypto_hash/sha512/.libs crypto_hash/sha512/_libs + -rm -rf crypto_hash/sha512/cp/.libs crypto_hash/sha512/cp/_libs + -rm -rf crypto_kdf/.libs crypto_kdf/_libs + -rm -rf crypto_kdf/blake2b/.libs crypto_kdf/blake2b/_libs + -rm -rf crypto_kdf/hkdf/.libs crypto_kdf/hkdf/_libs + -rm -rf crypto_kx/.libs crypto_kx/_libs + -rm -rf crypto_onetimeauth/.libs crypto_onetimeauth/_libs + -rm -rf crypto_onetimeauth/poly1305/.libs crypto_onetimeauth/poly1305/_libs + -rm -rf crypto_onetimeauth/poly1305/donna/.libs crypto_onetimeauth/poly1305/donna/_libs + -rm -rf crypto_onetimeauth/poly1305/sse2/.libs crypto_onetimeauth/poly1305/sse2/_libs + -rm -rf crypto_pwhash/.libs crypto_pwhash/_libs + -rm -rf crypto_pwhash/argon2/.libs crypto_pwhash/argon2/_libs + -rm -rf crypto_pwhash/scryptsalsa208sha256/.libs crypto_pwhash/scryptsalsa208sha256/_libs + -rm -rf crypto_pwhash/scryptsalsa208sha256/nosse/.libs crypto_pwhash/scryptsalsa208sha256/nosse/_libs + -rm -rf crypto_pwhash/scryptsalsa208sha256/sse/.libs crypto_pwhash/scryptsalsa208sha256/sse/_libs + -rm -rf crypto_scalarmult/.libs crypto_scalarmult/_libs + -rm -rf crypto_scalarmult/curve25519/.libs crypto_scalarmult/curve25519/_libs + -rm -rf crypto_scalarmult/curve25519/ref10/.libs crypto_scalarmult/curve25519/ref10/_libs + -rm -rf crypto_scalarmult/curve25519/sandy2x/.libs crypto_scalarmult/curve25519/sandy2x/_libs + -rm -rf crypto_scalarmult/ed25519/ref10/.libs crypto_scalarmult/ed25519/ref10/_libs + -rm -rf crypto_scalarmult/ristretto255/ref10/.libs crypto_scalarmult/ristretto255/ref10/_libs + -rm -rf crypto_secretbox/.libs crypto_secretbox/_libs + -rm -rf crypto_secretbox/xchacha20poly1305/.libs crypto_secretbox/xchacha20poly1305/_libs + -rm -rf crypto_secretbox/xsalsa20poly1305/.libs crypto_secretbox/xsalsa20poly1305/_libs + -rm -rf crypto_secretstream/xchacha20poly1305/.libs crypto_secretstream/xchacha20poly1305/_libs + -rm -rf crypto_shorthash/.libs crypto_shorthash/_libs + -rm -rf crypto_shorthash/siphash24/.libs crypto_shorthash/siphash24/_libs + -rm -rf crypto_shorthash/siphash24/ref/.libs crypto_shorthash/siphash24/ref/_libs + -rm -rf crypto_sign/.libs crypto_sign/_libs + -rm -rf crypto_sign/ed25519/.libs crypto_sign/ed25519/_libs + -rm -rf crypto_sign/ed25519/ref10/.libs crypto_sign/ed25519/ref10/_libs + -rm -rf crypto_stream/.libs crypto_stream/_libs + -rm -rf crypto_stream/chacha20/.libs crypto_stream/chacha20/_libs + -rm -rf crypto_stream/chacha20/dolbeau/.libs crypto_stream/chacha20/dolbeau/_libs + -rm -rf crypto_stream/chacha20/ref/.libs crypto_stream/chacha20/ref/_libs + -rm -rf crypto_stream/salsa20/.libs crypto_stream/salsa20/_libs + -rm -rf crypto_stream/salsa20/ref/.libs crypto_stream/salsa20/ref/_libs + -rm -rf crypto_stream/salsa20/xmm6/.libs crypto_stream/salsa20/xmm6/_libs + -rm -rf crypto_stream/salsa20/xmm6int/.libs crypto_stream/salsa20/xmm6int/_libs + -rm -rf crypto_stream/salsa2012/.libs crypto_stream/salsa2012/_libs + -rm -rf crypto_stream/salsa2012/ref/.libs crypto_stream/salsa2012/ref/_libs + -rm -rf crypto_stream/salsa208/.libs crypto_stream/salsa208/_libs + -rm -rf crypto_stream/salsa208/ref/.libs crypto_stream/salsa208/ref/_libs + -rm -rf crypto_stream/xchacha20/.libs crypto_stream/xchacha20/_libs + -rm -rf crypto_stream/xsalsa20/.libs crypto_stream/xsalsa20/_libs + -rm -rf crypto_verify/sodium/.libs crypto_verify/sodium/_libs + -rm -rf randombytes/.libs randombytes/_libs + -rm -rf randombytes/internal/.libs randombytes/internal/_libs + -rm -rf randombytes/sysrandom/.libs randombytes/sysrandom/_libs + -rm -rf sodium/.libs sodium/_libs +install-defexecDATA: $(defexec_DATA) + @$(NORMAL_INSTALL) + @list='$(defexec_DATA)'; test -n "$(defexecdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(defexecdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(defexecdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(defexecdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(defexecdir)" || exit $$?; \ + done + +uninstall-defexecDATA: + @$(NORMAL_UNINSTALL) + @list='$(defexec_DATA)'; test -n "$(defexecdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(defexecdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(defexecdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + -rm -f crypto_aead/aegis256/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_aead/aegis256/$(am__dirstamp) + -rm -f crypto_aead/aegis256/aesni/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_aead/aegis256/aesni/$(am__dirstamp) + -rm -f crypto_aead/aegis256/armcrypto/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_aead/aegis256/armcrypto/$(am__dirstamp) + -rm -f crypto_aead/aes256gcm/aesni/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_aead/aes256gcm/aesni/$(am__dirstamp) + -rm -f crypto_aead/chacha20poly1305/sodium/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_aead/chacha20poly1305/sodium/$(am__dirstamp) + -rm -f crypto_aead/xchacha20poly1305/sodium/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_aead/xchacha20poly1305/sodium/$(am__dirstamp) + -rm -f crypto_auth/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_auth/$(am__dirstamp) + -rm -f crypto_auth/hmacsha256/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_auth/hmacsha256/$(am__dirstamp) + -rm -f crypto_auth/hmacsha512/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_auth/hmacsha512/$(am__dirstamp) + -rm -f crypto_auth/hmacsha512256/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_auth/hmacsha512256/$(am__dirstamp) + -rm -f crypto_box/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_box/$(am__dirstamp) + -rm -f crypto_box/curve25519xchacha20poly1305/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_box/curve25519xchacha20poly1305/$(am__dirstamp) + -rm -f crypto_box/curve25519xsalsa20poly1305/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_box/curve25519xsalsa20poly1305/$(am__dirstamp) + -rm -f crypto_core/ed25519/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_core/ed25519/$(am__dirstamp) + -rm -f crypto_core/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_core/ed25519/ref10/$(am__dirstamp) + -rm -f crypto_core/hchacha20/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_core/hchacha20/$(am__dirstamp) + -rm -f crypto_core/hsalsa20/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_core/hsalsa20/$(am__dirstamp) + -rm -f crypto_core/hsalsa20/ref2/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_core/hsalsa20/ref2/$(am__dirstamp) + -rm -f crypto_core/salsa/ref/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_core/salsa/ref/$(am__dirstamp) + -rm -f crypto_generichash/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_generichash/$(am__dirstamp) + -rm -f crypto_generichash/blake2b/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_generichash/blake2b/$(am__dirstamp) + -rm -f crypto_generichash/blake2b/ref/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_generichash/blake2b/ref/$(am__dirstamp) + -rm -f crypto_hash/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_hash/$(am__dirstamp) + -rm -f crypto_hash/sha256/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_hash/sha256/$(am__dirstamp) + -rm -f crypto_hash/sha256/cp/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_hash/sha256/cp/$(am__dirstamp) + -rm -f crypto_hash/sha512/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_hash/sha512/$(am__dirstamp) + -rm -f crypto_hash/sha512/cp/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_hash/sha512/cp/$(am__dirstamp) + -rm -f crypto_kdf/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_kdf/$(am__dirstamp) + -rm -f crypto_kdf/blake2b/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_kdf/blake2b/$(am__dirstamp) + -rm -f crypto_kdf/hkdf/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_kdf/hkdf/$(am__dirstamp) + -rm -f crypto_kx/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_kx/$(am__dirstamp) + -rm -f crypto_onetimeauth/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_onetimeauth/$(am__dirstamp) + -rm -f crypto_onetimeauth/poly1305/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_onetimeauth/poly1305/$(am__dirstamp) + -rm -f crypto_onetimeauth/poly1305/donna/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_onetimeauth/poly1305/donna/$(am__dirstamp) + -rm -f crypto_onetimeauth/poly1305/sse2/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_onetimeauth/poly1305/sse2/$(am__dirstamp) + -rm -f crypto_pwhash/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_pwhash/$(am__dirstamp) + -rm -f crypto_pwhash/argon2/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_pwhash/argon2/$(am__dirstamp) + -rm -f crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_pwhash/scryptsalsa208sha256/$(am__dirstamp) + -rm -f crypto_pwhash/scryptsalsa208sha256/nosse/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_pwhash/scryptsalsa208sha256/nosse/$(am__dirstamp) + -rm -f crypto_pwhash/scryptsalsa208sha256/sse/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_pwhash/scryptsalsa208sha256/sse/$(am__dirstamp) + -rm -f crypto_scalarmult/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_scalarmult/$(am__dirstamp) + -rm -f crypto_scalarmult/curve25519/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_scalarmult/curve25519/$(am__dirstamp) + -rm -f crypto_scalarmult/curve25519/ref10/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_scalarmult/curve25519/ref10/$(am__dirstamp) + -rm -f crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_scalarmult/curve25519/sandy2x/$(am__dirstamp) + -rm -f crypto_scalarmult/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_scalarmult/ed25519/ref10/$(am__dirstamp) + -rm -f crypto_scalarmult/ristretto255/ref10/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_scalarmult/ristretto255/ref10/$(am__dirstamp) + -rm -f crypto_secretbox/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_secretbox/$(am__dirstamp) + -rm -f crypto_secretbox/xchacha20poly1305/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_secretbox/xchacha20poly1305/$(am__dirstamp) + -rm -f crypto_secretbox/xsalsa20poly1305/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_secretbox/xsalsa20poly1305/$(am__dirstamp) + -rm -f crypto_secretstream/xchacha20poly1305/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_secretstream/xchacha20poly1305/$(am__dirstamp) + -rm -f crypto_shorthash/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_shorthash/$(am__dirstamp) + -rm -f crypto_shorthash/siphash24/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_shorthash/siphash24/$(am__dirstamp) + -rm -f crypto_shorthash/siphash24/ref/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_shorthash/siphash24/ref/$(am__dirstamp) + -rm -f crypto_sign/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_sign/$(am__dirstamp) + -rm -f crypto_sign/ed25519/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_sign/ed25519/$(am__dirstamp) + -rm -f crypto_sign/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_sign/ed25519/ref10/$(am__dirstamp) + -rm -f crypto_stream/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_stream/$(am__dirstamp) + -rm -f crypto_stream/chacha20/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_stream/chacha20/$(am__dirstamp) + -rm -f crypto_stream/chacha20/dolbeau/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_stream/chacha20/dolbeau/$(am__dirstamp) + -rm -f crypto_stream/chacha20/ref/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_stream/chacha20/ref/$(am__dirstamp) + -rm -f crypto_stream/salsa20/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_stream/salsa20/$(am__dirstamp) + -rm -f crypto_stream/salsa20/ref/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_stream/salsa20/ref/$(am__dirstamp) + -rm -f crypto_stream/salsa20/xmm6/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_stream/salsa20/xmm6/$(am__dirstamp) + -rm -f crypto_stream/salsa20/xmm6int/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_stream/salsa20/xmm6int/$(am__dirstamp) + -rm -f crypto_stream/salsa2012/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_stream/salsa2012/$(am__dirstamp) + -rm -f crypto_stream/salsa2012/ref/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_stream/salsa2012/ref/$(am__dirstamp) + -rm -f crypto_stream/salsa208/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_stream/salsa208/$(am__dirstamp) + -rm -f crypto_stream/salsa208/ref/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_stream/salsa208/ref/$(am__dirstamp) + -rm -f crypto_stream/xchacha20/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_stream/xchacha20/$(am__dirstamp) + -rm -f crypto_stream/xsalsa20/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_stream/xsalsa20/$(am__dirstamp) + -rm -f crypto_verify/sodium/$(DEPDIR)/$(am__dirstamp) + -rm -f crypto_verify/sodium/$(am__dirstamp) + -rm -f randombytes/$(DEPDIR)/$(am__dirstamp) + -rm -f randombytes/$(am__dirstamp) + -rm -f randombytes/internal/$(DEPDIR)/$(am__dirstamp) + -rm -f randombytes/internal/$(am__dirstamp) + -rm -f randombytes/sysrandom/$(DEPDIR)/$(am__dirstamp) + -rm -f randombytes/sysrandom/$(am__dirstamp) + -rm -f sodium/$(DEPDIR)/$(am__dirstamp) + -rm -f sodium/$(am__dirstamp) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ + clean-noinstLTLIBRARIES mostlyclean-am + +distclean: distclean-recursive + -rm -rf crypto_aead/aegis256/$(DEPDIR) crypto_aead/aegis256/aesni/$(DEPDIR) crypto_aead/aegis256/armcrypto/$(DEPDIR) crypto_aead/aes256gcm/aesni/$(DEPDIR) crypto_aead/chacha20poly1305/sodium/$(DEPDIR) crypto_aead/xchacha20poly1305/sodium/$(DEPDIR) crypto_auth/$(DEPDIR) crypto_auth/hmacsha256/$(DEPDIR) crypto_auth/hmacsha512/$(DEPDIR) crypto_auth/hmacsha512256/$(DEPDIR) crypto_box/$(DEPDIR) crypto_box/curve25519xchacha20poly1305/$(DEPDIR) crypto_box/curve25519xsalsa20poly1305/$(DEPDIR) crypto_core/ed25519/$(DEPDIR) crypto_core/ed25519/ref10/$(DEPDIR) crypto_core/hchacha20/$(DEPDIR) crypto_core/hsalsa20/$(DEPDIR) crypto_core/hsalsa20/ref2/$(DEPDIR) crypto_core/salsa/ref/$(DEPDIR) crypto_generichash/$(DEPDIR) crypto_generichash/blake2b/$(DEPDIR) crypto_generichash/blake2b/ref/$(DEPDIR) crypto_hash/$(DEPDIR) crypto_hash/sha256/$(DEPDIR) crypto_hash/sha256/cp/$(DEPDIR) crypto_hash/sha512/$(DEPDIR) crypto_hash/sha512/cp/$(DEPDIR) crypto_kdf/$(DEPDIR) crypto_kdf/blake2b/$(DEPDIR) crypto_kdf/hkdf/$(DEPDIR) crypto_kx/$(DEPDIR) crypto_onetimeauth/$(DEPDIR) crypto_onetimeauth/poly1305/$(DEPDIR) crypto_onetimeauth/poly1305/donna/$(DEPDIR) crypto_onetimeauth/poly1305/sse2/$(DEPDIR) crypto_pwhash/$(DEPDIR) crypto_pwhash/argon2/$(DEPDIR) crypto_pwhash/scryptsalsa208sha256/$(DEPDIR) crypto_pwhash/scryptsalsa208sha256/nosse/$(DEPDIR) crypto_pwhash/scryptsalsa208sha256/sse/$(DEPDIR) crypto_scalarmult/$(DEPDIR) crypto_scalarmult/curve25519/$(DEPDIR) crypto_scalarmult/curve25519/ref10/$(DEPDIR) crypto_scalarmult/curve25519/sandy2x/$(DEPDIR) crypto_scalarmult/ed25519/ref10/$(DEPDIR) crypto_scalarmult/ristretto255/ref10/$(DEPDIR) crypto_secretbox/$(DEPDIR) crypto_secretbox/xchacha20poly1305/$(DEPDIR) crypto_secretbox/xsalsa20poly1305/$(DEPDIR) crypto_secretstream/xchacha20poly1305/$(DEPDIR) crypto_shorthash/$(DEPDIR) crypto_shorthash/siphash24/$(DEPDIR) crypto_shorthash/siphash24/ref/$(DEPDIR) crypto_sign/$(DEPDIR) crypto_sign/ed25519/$(DEPDIR) crypto_sign/ed25519/ref10/$(DEPDIR) crypto_stream/$(DEPDIR) crypto_stream/chacha20/$(DEPDIR) crypto_stream/chacha20/dolbeau/$(DEPDIR) crypto_stream/chacha20/ref/$(DEPDIR) crypto_stream/salsa20/$(DEPDIR) crypto_stream/salsa20/ref/$(DEPDIR) crypto_stream/salsa20/xmm6/$(DEPDIR) crypto_stream/salsa20/xmm6int/$(DEPDIR) crypto_stream/salsa2012/$(DEPDIR) crypto_stream/salsa2012/ref/$(DEPDIR) crypto_stream/salsa208/$(DEPDIR) crypto_stream/salsa208/ref/$(DEPDIR) crypto_stream/xchacha20/$(DEPDIR) crypto_stream/xsalsa20/$(DEPDIR) crypto_verify/sodium/$(DEPDIR) randombytes/$(DEPDIR) randombytes/internal/$(DEPDIR) randombytes/sysrandom/$(DEPDIR) sodium/$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: install-defexecDATA install-libLTLIBRARIES + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -rf crypto_aead/aegis256/$(DEPDIR) crypto_aead/aegis256/aesni/$(DEPDIR) crypto_aead/aegis256/armcrypto/$(DEPDIR) crypto_aead/aes256gcm/aesni/$(DEPDIR) crypto_aead/chacha20poly1305/sodium/$(DEPDIR) crypto_aead/xchacha20poly1305/sodium/$(DEPDIR) crypto_auth/$(DEPDIR) crypto_auth/hmacsha256/$(DEPDIR) crypto_auth/hmacsha512/$(DEPDIR) crypto_auth/hmacsha512256/$(DEPDIR) crypto_box/$(DEPDIR) crypto_box/curve25519xchacha20poly1305/$(DEPDIR) crypto_box/curve25519xsalsa20poly1305/$(DEPDIR) crypto_core/ed25519/$(DEPDIR) crypto_core/ed25519/ref10/$(DEPDIR) crypto_core/hchacha20/$(DEPDIR) crypto_core/hsalsa20/$(DEPDIR) crypto_core/hsalsa20/ref2/$(DEPDIR) crypto_core/salsa/ref/$(DEPDIR) crypto_generichash/$(DEPDIR) crypto_generichash/blake2b/$(DEPDIR) crypto_generichash/blake2b/ref/$(DEPDIR) crypto_hash/$(DEPDIR) crypto_hash/sha256/$(DEPDIR) crypto_hash/sha256/cp/$(DEPDIR) crypto_hash/sha512/$(DEPDIR) crypto_hash/sha512/cp/$(DEPDIR) crypto_kdf/$(DEPDIR) crypto_kdf/blake2b/$(DEPDIR) crypto_kdf/hkdf/$(DEPDIR) crypto_kx/$(DEPDIR) crypto_onetimeauth/$(DEPDIR) crypto_onetimeauth/poly1305/$(DEPDIR) crypto_onetimeauth/poly1305/donna/$(DEPDIR) crypto_onetimeauth/poly1305/sse2/$(DEPDIR) crypto_pwhash/$(DEPDIR) crypto_pwhash/argon2/$(DEPDIR) crypto_pwhash/scryptsalsa208sha256/$(DEPDIR) crypto_pwhash/scryptsalsa208sha256/nosse/$(DEPDIR) crypto_pwhash/scryptsalsa208sha256/sse/$(DEPDIR) crypto_scalarmult/$(DEPDIR) crypto_scalarmult/curve25519/$(DEPDIR) crypto_scalarmult/curve25519/ref10/$(DEPDIR) crypto_scalarmult/curve25519/sandy2x/$(DEPDIR) crypto_scalarmult/ed25519/ref10/$(DEPDIR) crypto_scalarmult/ristretto255/ref10/$(DEPDIR) crypto_secretbox/$(DEPDIR) crypto_secretbox/xchacha20poly1305/$(DEPDIR) crypto_secretbox/xsalsa20poly1305/$(DEPDIR) crypto_secretstream/xchacha20poly1305/$(DEPDIR) crypto_shorthash/$(DEPDIR) crypto_shorthash/siphash24/$(DEPDIR) crypto_shorthash/siphash24/ref/$(DEPDIR) crypto_sign/$(DEPDIR) crypto_sign/ed25519/$(DEPDIR) crypto_sign/ed25519/ref10/$(DEPDIR) crypto_stream/$(DEPDIR) crypto_stream/chacha20/$(DEPDIR) crypto_stream/chacha20/dolbeau/$(DEPDIR) crypto_stream/chacha20/ref/$(DEPDIR) crypto_stream/salsa20/$(DEPDIR) crypto_stream/salsa20/ref/$(DEPDIR) crypto_stream/salsa20/xmm6/$(DEPDIR) crypto_stream/salsa20/xmm6int/$(DEPDIR) crypto_stream/salsa2012/$(DEPDIR) crypto_stream/salsa2012/ref/$(DEPDIR) crypto_stream/salsa208/$(DEPDIR) crypto_stream/salsa208/ref/$(DEPDIR) crypto_stream/xchacha20/$(DEPDIR) crypto_stream/xsalsa20/$(DEPDIR) crypto_verify/sodium/$(DEPDIR) randombytes/$(DEPDIR) randombytes/internal/$(DEPDIR) randombytes/sysrandom/$(DEPDIR) sodium/$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-defexecDATA uninstall-libLTLIBRARIES + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libLTLIBRARIES \ + clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \ + ctags-am distclean distclean-compile distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-defexecDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-libLTLIBRARIES \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs installdirs-am maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am uninstall-defexecDATA \ + uninstall-libLTLIBRARIES + +.PRECIOUS: Makefile + +@HAVE_LD_OUTPUT_DEF_TRUE@libsodium-$(DLL_VERSION).def: libsodium.la + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/benchmark_programs/libsodium/aead_aegis256-strip.bc b/benchmark_programs/libsodium/aead_aegis256-strip.bc new file mode 100644 index 00000000..0e1cea60 Binary files /dev/null and b/benchmark_programs/libsodium/aead_aegis256-strip.bc differ diff --git a/benchmark_programs/libsodium/aead_aegis256.bc b/benchmark_programs/libsodium/aead_aegis256.bc new file mode 100644 index 00000000..0e1cea60 Binary files /dev/null and b/benchmark_programs/libsodium/aead_aegis256.bc differ diff --git a/benchmark_programs/libsodium/aead_aegis256_aesni-strip.bc b/benchmark_programs/libsodium/aead_aegis256_aesni-strip.bc new file mode 100644 index 00000000..76832105 Binary files /dev/null and b/benchmark_programs/libsodium/aead_aegis256_aesni-strip.bc differ diff --git a/benchmark_programs/libsodium/aead_aegis256_aesni.bc b/benchmark_programs/libsodium/aead_aegis256_aesni.bc new file mode 100644 index 00000000..db341ea6 Binary files /dev/null and b/benchmark_programs/libsodium/aead_aegis256_aesni.bc differ diff --git a/benchmark_programs/libsodium/aead_aegis256_armcrypto-strip.bc b/benchmark_programs/libsodium/aead_aegis256_armcrypto-strip.bc new file mode 100644 index 00000000..a7b9f0de Binary files /dev/null and b/benchmark_programs/libsodium/aead_aegis256_armcrypto-strip.bc differ diff --git a/benchmark_programs/libsodium/aead_aegis256_armcrypto.bc b/benchmark_programs/libsodium/aead_aegis256_armcrypto.bc new file mode 100644 index 00000000..a7b9f0de Binary files /dev/null and b/benchmark_programs/libsodium/aead_aegis256_armcrypto.bc differ diff --git a/benchmark_programs/libsodium/aead_aes256gcm_aesni-strip.bc b/benchmark_programs/libsodium/aead_aes256gcm_aesni-strip.bc new file mode 100644 index 00000000..a4f21a26 Binary files /dev/null and b/benchmark_programs/libsodium/aead_aes256gcm_aesni-strip.bc differ diff --git a/benchmark_programs/libsodium/aead_aes256gcm_aesni.bc b/benchmark_programs/libsodium/aead_aes256gcm_aesni.bc new file mode 100644 index 00000000..1bbcd559 Binary files /dev/null and b/benchmark_programs/libsodium/aead_aes256gcm_aesni.bc differ diff --git a/benchmark_programs/libsodium/aead_chacha20poly1305-strip.bc b/benchmark_programs/libsodium/aead_chacha20poly1305-strip.bc new file mode 100644 index 00000000..af9edadf Binary files /dev/null and b/benchmark_programs/libsodium/aead_chacha20poly1305-strip.bc differ diff --git a/benchmark_programs/libsodium/aead_chacha20poly1305.bc b/benchmark_programs/libsodium/aead_chacha20poly1305.bc new file mode 100644 index 00000000..08203a4a Binary files /dev/null and b/benchmark_programs/libsodium/aead_chacha20poly1305.bc differ diff --git a/benchmark_programs/libsodium/aead_xchacha20poly1305-strip.bc b/benchmark_programs/libsodium/aead_xchacha20poly1305-strip.bc new file mode 100644 index 00000000..0f86c237 Binary files /dev/null and b/benchmark_programs/libsodium/aead_xchacha20poly1305-strip.bc differ diff --git a/benchmark_programs/libsodium/aead_xchacha20poly1305.bc b/benchmark_programs/libsodium/aead_xchacha20poly1305.bc new file mode 100644 index 00000000..d39fd5a2 Binary files /dev/null and b/benchmark_programs/libsodium/aead_xchacha20poly1305.bc differ diff --git a/benchmark_programs/libsodium/argon2-core-strip.bc b/benchmark_programs/libsodium/argon2-core-strip.bc new file mode 100644 index 00000000..9fab439b Binary files /dev/null and b/benchmark_programs/libsodium/argon2-core-strip.bc differ diff --git a/benchmark_programs/libsodium/argon2-core.bc b/benchmark_programs/libsodium/argon2-core.bc new file mode 100644 index 00000000..a1f46ba5 Binary files /dev/null and b/benchmark_programs/libsodium/argon2-core.bc differ diff --git a/benchmark_programs/libsodium/argon2-encoding-strip.bc b/benchmark_programs/libsodium/argon2-encoding-strip.bc new file mode 100644 index 00000000..fb03db80 Binary files /dev/null and b/benchmark_programs/libsodium/argon2-encoding-strip.bc differ diff --git a/benchmark_programs/libsodium/argon2-encoding.bc b/benchmark_programs/libsodium/argon2-encoding.bc new file mode 100644 index 00000000..4856b8ed Binary files /dev/null and b/benchmark_programs/libsodium/argon2-encoding.bc differ diff --git a/benchmark_programs/libsodium/argon2-fill-block-avx2-strip.bc b/benchmark_programs/libsodium/argon2-fill-block-avx2-strip.bc new file mode 100644 index 00000000..eeeb7aa0 Binary files /dev/null and b/benchmark_programs/libsodium/argon2-fill-block-avx2-strip.bc differ diff --git a/benchmark_programs/libsodium/argon2-fill-block-avx2.bc b/benchmark_programs/libsodium/argon2-fill-block-avx2.bc new file mode 100644 index 00000000..37c220ff Binary files /dev/null and b/benchmark_programs/libsodium/argon2-fill-block-avx2.bc differ diff --git a/benchmark_programs/libsodium/argon2-fill-block-avx512f-strip.bc b/benchmark_programs/libsodium/argon2-fill-block-avx512f-strip.bc new file mode 100644 index 00000000..52aabb12 Binary files /dev/null and b/benchmark_programs/libsodium/argon2-fill-block-avx512f-strip.bc differ diff --git a/benchmark_programs/libsodium/argon2-fill-block-avx512f.bc b/benchmark_programs/libsodium/argon2-fill-block-avx512f.bc new file mode 100644 index 00000000..957f7ec9 Binary files /dev/null and b/benchmark_programs/libsodium/argon2-fill-block-avx512f.bc differ diff --git a/benchmark_programs/libsodium/argon2-fill-block-ref-strip.bc b/benchmark_programs/libsodium/argon2-fill-block-ref-strip.bc new file mode 100644 index 00000000..327e8fcd Binary files /dev/null and b/benchmark_programs/libsodium/argon2-fill-block-ref-strip.bc differ diff --git a/benchmark_programs/libsodium/argon2-fill-block-ref.bc b/benchmark_programs/libsodium/argon2-fill-block-ref.bc new file mode 100644 index 00000000..940e8110 Binary files /dev/null and b/benchmark_programs/libsodium/argon2-fill-block-ref.bc differ diff --git a/benchmark_programs/libsodium/argon2-fill-block-ssse3-strip.bc b/benchmark_programs/libsodium/argon2-fill-block-ssse3-strip.bc new file mode 100644 index 00000000..798405f3 Binary files /dev/null and b/benchmark_programs/libsodium/argon2-fill-block-ssse3-strip.bc differ diff --git a/benchmark_programs/libsodium/argon2-fill-block-ssse3.bc b/benchmark_programs/libsodium/argon2-fill-block-ssse3.bc new file mode 100644 index 00000000..81495231 Binary files /dev/null and b/benchmark_programs/libsodium/argon2-fill-block-ssse3.bc differ diff --git a/benchmark_programs/libsodium/argon2-strip.bc b/benchmark_programs/libsodium/argon2-strip.bc new file mode 100644 index 00000000..e714c674 Binary files /dev/null and b/benchmark_programs/libsodium/argon2-strip.bc differ diff --git a/benchmark_programs/libsodium/argon2.bc b/benchmark_programs/libsodium/argon2.bc new file mode 100644 index 00000000..d01a7c47 Binary files /dev/null and b/benchmark_programs/libsodium/argon2.bc differ diff --git a/benchmark_programs/libsodium/auth_hmacsha256-strip.bc b/benchmark_programs/libsodium/auth_hmacsha256-strip.bc new file mode 100644 index 00000000..08577584 Binary files /dev/null and b/benchmark_programs/libsodium/auth_hmacsha256-strip.bc differ diff --git a/benchmark_programs/libsodium/auth_hmacsha256.bc b/benchmark_programs/libsodium/auth_hmacsha256.bc new file mode 100644 index 00000000..4614a393 Binary files /dev/null and b/benchmark_programs/libsodium/auth_hmacsha256.bc differ diff --git a/benchmark_programs/libsodium/auth_hmacsha512-strip.bc b/benchmark_programs/libsodium/auth_hmacsha512-strip.bc new file mode 100644 index 00000000..d909d918 Binary files /dev/null and b/benchmark_programs/libsodium/auth_hmacsha512-strip.bc differ diff --git a/benchmark_programs/libsodium/auth_hmacsha512.bc b/benchmark_programs/libsodium/auth_hmacsha512.bc new file mode 100644 index 00000000..e4c5a9b9 Binary files /dev/null and b/benchmark_programs/libsodium/auth_hmacsha512.bc differ diff --git a/benchmark_programs/libsodium/auth_hmacsha512256-strip.bc b/benchmark_programs/libsodium/auth_hmacsha512256-strip.bc new file mode 100644 index 00000000..6124835f Binary files /dev/null and b/benchmark_programs/libsodium/auth_hmacsha512256-strip.bc differ diff --git a/benchmark_programs/libsodium/auth_hmacsha512256.bc b/benchmark_programs/libsodium/auth_hmacsha512256.bc new file mode 100644 index 00000000..6c3d5aca Binary files /dev/null and b/benchmark_programs/libsodium/auth_hmacsha512256.bc differ diff --git a/benchmark_programs/libsodium/blake2b-compress-avx2-strip.bc b/benchmark_programs/libsodium/blake2b-compress-avx2-strip.bc new file mode 100644 index 00000000..dce0edd2 Binary files /dev/null and b/benchmark_programs/libsodium/blake2b-compress-avx2-strip.bc differ diff --git a/benchmark_programs/libsodium/blake2b-compress-avx2.bc b/benchmark_programs/libsodium/blake2b-compress-avx2.bc new file mode 100644 index 00000000..1d2a0661 Binary files /dev/null and b/benchmark_programs/libsodium/blake2b-compress-avx2.bc differ diff --git a/benchmark_programs/libsodium/blake2b-compress-ref-strip.bc b/benchmark_programs/libsodium/blake2b-compress-ref-strip.bc new file mode 100644 index 00000000..0440f10c Binary files /dev/null and b/benchmark_programs/libsodium/blake2b-compress-ref-strip.bc differ diff --git a/benchmark_programs/libsodium/blake2b-compress-ref.bc b/benchmark_programs/libsodium/blake2b-compress-ref.bc new file mode 100644 index 00000000..967242da Binary files /dev/null and b/benchmark_programs/libsodium/blake2b-compress-ref.bc differ diff --git a/benchmark_programs/libsodium/blake2b-compress-sse41-strip.bc b/benchmark_programs/libsodium/blake2b-compress-sse41-strip.bc new file mode 100644 index 00000000..de089dd8 Binary files /dev/null and b/benchmark_programs/libsodium/blake2b-compress-sse41-strip.bc differ diff --git a/benchmark_programs/libsodium/blake2b-compress-sse41.bc b/benchmark_programs/libsodium/blake2b-compress-sse41.bc new file mode 100644 index 00000000..d8c0c037 Binary files /dev/null and b/benchmark_programs/libsodium/blake2b-compress-sse41.bc differ diff --git a/benchmark_programs/libsodium/blake2b-compress-ssse3-strip.bc b/benchmark_programs/libsodium/blake2b-compress-ssse3-strip.bc new file mode 100644 index 00000000..3201921a Binary files /dev/null and b/benchmark_programs/libsodium/blake2b-compress-ssse3-strip.bc differ diff --git a/benchmark_programs/libsodium/blake2b-compress-ssse3.bc b/benchmark_programs/libsodium/blake2b-compress-ssse3.bc new file mode 100644 index 00000000..a7cfe90c Binary files /dev/null and b/benchmark_programs/libsodium/blake2b-compress-ssse3.bc differ diff --git a/benchmark_programs/libsodium/blake2b-long-strip.bc b/benchmark_programs/libsodium/blake2b-long-strip.bc new file mode 100644 index 00000000..47cfa952 Binary files /dev/null and b/benchmark_programs/libsodium/blake2b-long-strip.bc differ diff --git a/benchmark_programs/libsodium/blake2b-long.bc b/benchmark_programs/libsodium/blake2b-long.bc new file mode 100644 index 00000000..73ccf496 Binary files /dev/null and b/benchmark_programs/libsodium/blake2b-long.bc differ diff --git a/benchmark_programs/libsodium/blake2b-ref-strip.bc b/benchmark_programs/libsodium/blake2b-ref-strip.bc new file mode 100644 index 00000000..0c802fce Binary files /dev/null and b/benchmark_programs/libsodium/blake2b-ref-strip.bc differ diff --git a/benchmark_programs/libsodium/blake2b-ref.bc b/benchmark_programs/libsodium/blake2b-ref.bc new file mode 100644 index 00000000..50740372 Binary files /dev/null and b/benchmark_programs/libsodium/blake2b-ref.bc differ diff --git a/benchmark_programs/libsodium/box_curve25519xchacha20poly1305-strip.bc b/benchmark_programs/libsodium/box_curve25519xchacha20poly1305-strip.bc new file mode 100644 index 00000000..e873571c Binary files /dev/null and b/benchmark_programs/libsodium/box_curve25519xchacha20poly1305-strip.bc differ diff --git a/benchmark_programs/libsodium/box_curve25519xchacha20poly1305.bc b/benchmark_programs/libsodium/box_curve25519xchacha20poly1305.bc new file mode 100644 index 00000000..40abf384 Binary files /dev/null and b/benchmark_programs/libsodium/box_curve25519xchacha20poly1305.bc differ diff --git a/benchmark_programs/libsodium/box_curve25519xsalsa20poly1305-strip.bc b/benchmark_programs/libsodium/box_curve25519xsalsa20poly1305-strip.bc new file mode 100644 index 00000000..1ee7faf7 Binary files /dev/null and b/benchmark_programs/libsodium/box_curve25519xsalsa20poly1305-strip.bc differ diff --git a/benchmark_programs/libsodium/box_curve25519xsalsa20poly1305.bc b/benchmark_programs/libsodium/box_curve25519xsalsa20poly1305.bc new file mode 100644 index 00000000..84a740f9 Binary files /dev/null and b/benchmark_programs/libsodium/box_curve25519xsalsa20poly1305.bc differ diff --git a/benchmark_programs/libsodium/box_seal_curve25519xchacha20poly1305-strip.bc b/benchmark_programs/libsodium/box_seal_curve25519xchacha20poly1305-strip.bc new file mode 100644 index 00000000..7b76ecef Binary files /dev/null and b/benchmark_programs/libsodium/box_seal_curve25519xchacha20poly1305-strip.bc differ diff --git a/benchmark_programs/libsodium/box_seal_curve25519xchacha20poly1305.bc b/benchmark_programs/libsodium/box_seal_curve25519xchacha20poly1305.bc new file mode 100644 index 00000000..28749660 Binary files /dev/null and b/benchmark_programs/libsodium/box_seal_curve25519xchacha20poly1305.bc differ diff --git a/benchmark_programs/libsodium/chacha20_dolbeau-avx2-strip.bc b/benchmark_programs/libsodium/chacha20_dolbeau-avx2-strip.bc new file mode 100644 index 00000000..a841d661 Binary files /dev/null and b/benchmark_programs/libsodium/chacha20_dolbeau-avx2-strip.bc differ diff --git a/benchmark_programs/libsodium/chacha20_dolbeau-avx2.bc b/benchmark_programs/libsodium/chacha20_dolbeau-avx2.bc new file mode 100644 index 00000000..7d15d012 Binary files /dev/null and b/benchmark_programs/libsodium/chacha20_dolbeau-avx2.bc differ diff --git a/benchmark_programs/libsodium/chacha20_dolbeau-ssse3-strip.bc b/benchmark_programs/libsodium/chacha20_dolbeau-ssse3-strip.bc new file mode 100644 index 00000000..359edee7 Binary files /dev/null and b/benchmark_programs/libsodium/chacha20_dolbeau-ssse3-strip.bc differ diff --git a/benchmark_programs/libsodium/chacha20_dolbeau-ssse3.bc b/benchmark_programs/libsodium/chacha20_dolbeau-ssse3.bc new file mode 100644 index 00000000..6a0a2bd1 Binary files /dev/null and b/benchmark_programs/libsodium/chacha20_dolbeau-ssse3.bc differ diff --git a/benchmark_programs/libsodium/chacha20_ref-strip.bc b/benchmark_programs/libsodium/chacha20_ref-strip.bc new file mode 100644 index 00000000..61ca2fdd Binary files /dev/null and b/benchmark_programs/libsodium/chacha20_ref-strip.bc differ diff --git a/benchmark_programs/libsodium/chacha20_ref.bc b/benchmark_programs/libsodium/chacha20_ref.bc new file mode 100644 index 00000000..81682729 Binary files /dev/null and b/benchmark_programs/libsodium/chacha20_ref.bc differ diff --git a/benchmark_programs/libsodium/codecs-strip.bc b/benchmark_programs/libsodium/codecs-strip.bc new file mode 100644 index 00000000..5de9f8d0 Binary files /dev/null and b/benchmark_programs/libsodium/codecs-strip.bc differ diff --git a/benchmark_programs/libsodium/codecs.bc b/benchmark_programs/libsodium/codecs.bc new file mode 100644 index 00000000..3792838c Binary files /dev/null and b/benchmark_programs/libsodium/codecs.bc differ diff --git a/benchmark_programs/libsodium/core-strip.bc b/benchmark_programs/libsodium/core-strip.bc new file mode 100644 index 00000000..b3c1757f Binary files /dev/null and b/benchmark_programs/libsodium/core-strip.bc differ diff --git a/benchmark_programs/libsodium/core.bc b/benchmark_programs/libsodium/core.bc new file mode 100644 index 00000000..e84b7118 Binary files /dev/null and b/benchmark_programs/libsodium/core.bc differ diff --git a/benchmark_programs/libsodium/core_ed25519-strip.bc b/benchmark_programs/libsodium/core_ed25519-strip.bc new file mode 100644 index 00000000..a8b5d52e Binary files /dev/null and b/benchmark_programs/libsodium/core_ed25519-strip.bc differ diff --git a/benchmark_programs/libsodium/core_ed25519.bc b/benchmark_programs/libsodium/core_ed25519.bc new file mode 100644 index 00000000..499f3137 Binary files /dev/null and b/benchmark_programs/libsodium/core_ed25519.bc differ diff --git a/benchmark_programs/libsodium/core_hchacha20-strip.bc b/benchmark_programs/libsodium/core_hchacha20-strip.bc new file mode 100644 index 00000000..93795ff2 Binary files /dev/null and b/benchmark_programs/libsodium/core_hchacha20-strip.bc differ diff --git a/benchmark_programs/libsodium/core_hchacha20.bc b/benchmark_programs/libsodium/core_hchacha20.bc new file mode 100644 index 00000000..6f879ea9 Binary files /dev/null and b/benchmark_programs/libsodium/core_hchacha20.bc differ diff --git a/benchmark_programs/libsodium/core_hsalsa20-strip.bc b/benchmark_programs/libsodium/core_hsalsa20-strip.bc new file mode 100644 index 00000000..208d7409 Binary files /dev/null and b/benchmark_programs/libsodium/core_hsalsa20-strip.bc differ diff --git a/benchmark_programs/libsodium/core_hsalsa20.bc b/benchmark_programs/libsodium/core_hsalsa20.bc new file mode 100644 index 00000000..208d7409 Binary files /dev/null and b/benchmark_programs/libsodium/core_hsalsa20.bc differ diff --git a/benchmark_programs/libsodium/core_hsalsa20_ref2-strip.bc b/benchmark_programs/libsodium/core_hsalsa20_ref2-strip.bc new file mode 100644 index 00000000..a1387216 Binary files /dev/null and b/benchmark_programs/libsodium/core_hsalsa20_ref2-strip.bc differ diff --git a/benchmark_programs/libsodium/core_hsalsa20_ref2.bc b/benchmark_programs/libsodium/core_hsalsa20_ref2.bc new file mode 100644 index 00000000..96bc00b8 Binary files /dev/null and b/benchmark_programs/libsodium/core_hsalsa20_ref2.bc differ diff --git a/benchmark_programs/libsodium/core_ristretto255-strip.bc b/benchmark_programs/libsodium/core_ristretto255-strip.bc new file mode 100644 index 00000000..cb225613 Binary files /dev/null and b/benchmark_programs/libsodium/core_ristretto255-strip.bc differ diff --git a/benchmark_programs/libsodium/core_ristretto255.bc b/benchmark_programs/libsodium/core_ristretto255.bc new file mode 100644 index 00000000..26d9bd66 Binary files /dev/null and b/benchmark_programs/libsodium/core_ristretto255.bc differ diff --git a/benchmark_programs/libsodium/core_salsa_ref-strip.bc b/benchmark_programs/libsodium/core_salsa_ref-strip.bc new file mode 100644 index 00000000..d4286773 Binary files /dev/null and b/benchmark_programs/libsodium/core_salsa_ref-strip.bc differ diff --git a/benchmark_programs/libsodium/core_salsa_ref.bc b/benchmark_programs/libsodium/core_salsa_ref.bc new file mode 100644 index 00000000..4996ca7b Binary files /dev/null and b/benchmark_programs/libsodium/core_salsa_ref.bc differ diff --git a/benchmark_programs/libsodium/crypto_auth-strip.bc b/benchmark_programs/libsodium/crypto_auth-strip.bc new file mode 100644 index 00000000..68b94a38 Binary files /dev/null and b/benchmark_programs/libsodium/crypto_auth-strip.bc differ diff --git a/benchmark_programs/libsodium/crypto_auth.bc b/benchmark_programs/libsodium/crypto_auth.bc new file mode 100644 index 00000000..faf60611 Binary files /dev/null and b/benchmark_programs/libsodium/crypto_auth.bc differ diff --git a/benchmark_programs/libsodium/crypto_box-strip.bc b/benchmark_programs/libsodium/crypto_box-strip.bc new file mode 100644 index 00000000..1761edf8 Binary files /dev/null and b/benchmark_programs/libsodium/crypto_box-strip.bc differ diff --git a/benchmark_programs/libsodium/crypto_box.bc b/benchmark_programs/libsodium/crypto_box.bc new file mode 100644 index 00000000..d47fea8e Binary files /dev/null and b/benchmark_programs/libsodium/crypto_box.bc differ diff --git a/benchmark_programs/libsodium/crypto_box_easy-strip.bc b/benchmark_programs/libsodium/crypto_box_easy-strip.bc new file mode 100644 index 00000000..91f3a53c Binary files /dev/null and b/benchmark_programs/libsodium/crypto_box_easy-strip.bc differ diff --git a/benchmark_programs/libsodium/crypto_box_easy.bc b/benchmark_programs/libsodium/crypto_box_easy.bc new file mode 100644 index 00000000..91f3a53c Binary files /dev/null and b/benchmark_programs/libsodium/crypto_box_easy.bc differ diff --git a/benchmark_programs/libsodium/crypto_box_seal-strip.bc b/benchmark_programs/libsodium/crypto_box_seal-strip.bc new file mode 100644 index 00000000..aff34813 Binary files /dev/null and b/benchmark_programs/libsodium/crypto_box_seal-strip.bc differ diff --git a/benchmark_programs/libsodium/crypto_box_seal.bc b/benchmark_programs/libsodium/crypto_box_seal.bc new file mode 100644 index 00000000..45a2eac6 Binary files /dev/null and b/benchmark_programs/libsodium/crypto_box_seal.bc differ diff --git a/benchmark_programs/libsodium/crypto_generichash-strip.bc b/benchmark_programs/libsodium/crypto_generichash-strip.bc new file mode 100644 index 00000000..2f028b7e Binary files /dev/null and b/benchmark_programs/libsodium/crypto_generichash-strip.bc differ diff --git a/benchmark_programs/libsodium/crypto_generichash.bc b/benchmark_programs/libsodium/crypto_generichash.bc new file mode 100644 index 00000000..3c4fee0c Binary files /dev/null and b/benchmark_programs/libsodium/crypto_generichash.bc differ diff --git a/benchmark_programs/libsodium/crypto_hash-strip.bc b/benchmark_programs/libsodium/crypto_hash-strip.bc new file mode 100644 index 00000000..88232a36 Binary files /dev/null and b/benchmark_programs/libsodium/crypto_hash-strip.bc differ diff --git a/benchmark_programs/libsodium/crypto_hash.bc b/benchmark_programs/libsodium/crypto_hash.bc new file mode 100644 index 00000000..1b5bed3c Binary files /dev/null and b/benchmark_programs/libsodium/crypto_hash.bc differ diff --git a/benchmark_programs/libsodium/crypto_kdf-strip.bc b/benchmark_programs/libsodium/crypto_kdf-strip.bc new file mode 100644 index 00000000..6e87728f Binary files /dev/null and b/benchmark_programs/libsodium/crypto_kdf-strip.bc differ diff --git a/benchmark_programs/libsodium/crypto_kdf.bc b/benchmark_programs/libsodium/crypto_kdf.bc new file mode 100644 index 00000000..8d64ed82 Binary files /dev/null and b/benchmark_programs/libsodium/crypto_kdf.bc differ diff --git a/benchmark_programs/libsodium/crypto_kx-strip.bc b/benchmark_programs/libsodium/crypto_kx-strip.bc new file mode 100644 index 00000000..d5a4ab79 Binary files /dev/null and b/benchmark_programs/libsodium/crypto_kx-strip.bc differ diff --git a/benchmark_programs/libsodium/crypto_kx.bc b/benchmark_programs/libsodium/crypto_kx.bc new file mode 100644 index 00000000..da631088 Binary files /dev/null and b/benchmark_programs/libsodium/crypto_kx.bc differ diff --git a/benchmark_programs/libsodium/crypto_onetimeauth-strip.bc b/benchmark_programs/libsodium/crypto_onetimeauth-strip.bc new file mode 100644 index 00000000..ae73fe97 Binary files /dev/null and b/benchmark_programs/libsodium/crypto_onetimeauth-strip.bc differ diff --git a/benchmark_programs/libsodium/crypto_onetimeauth.bc b/benchmark_programs/libsodium/crypto_onetimeauth.bc new file mode 100644 index 00000000..3ba58ae1 Binary files /dev/null and b/benchmark_programs/libsodium/crypto_onetimeauth.bc differ diff --git a/benchmark_programs/libsodium/crypto_pwhash-strip.bc b/benchmark_programs/libsodium/crypto_pwhash-strip.bc new file mode 100644 index 00000000..8a1a6409 Binary files /dev/null and b/benchmark_programs/libsodium/crypto_pwhash-strip.bc differ diff --git a/benchmark_programs/libsodium/crypto_pwhash.bc b/benchmark_programs/libsodium/crypto_pwhash.bc new file mode 100644 index 00000000..f0eb97ad Binary files /dev/null and b/benchmark_programs/libsodium/crypto_pwhash.bc differ diff --git a/benchmark_programs/libsodium/crypto_scalarmult-strip.bc b/benchmark_programs/libsodium/crypto_scalarmult-strip.bc new file mode 100644 index 00000000..a84e7301 Binary files /dev/null and b/benchmark_programs/libsodium/crypto_scalarmult-strip.bc differ diff --git a/benchmark_programs/libsodium/crypto_scalarmult.bc b/benchmark_programs/libsodium/crypto_scalarmult.bc new file mode 100644 index 00000000..46ed0859 Binary files /dev/null and b/benchmark_programs/libsodium/crypto_scalarmult.bc differ diff --git a/benchmark_programs/libsodium/crypto_scrypt-common-strip.bc b/benchmark_programs/libsodium/crypto_scrypt-common-strip.bc new file mode 100644 index 00000000..79b1c4f6 Binary files /dev/null and b/benchmark_programs/libsodium/crypto_scrypt-common-strip.bc differ diff --git a/benchmark_programs/libsodium/crypto_scrypt-common.bc b/benchmark_programs/libsodium/crypto_scrypt-common.bc new file mode 100644 index 00000000..1c00b1d2 Binary files /dev/null and b/benchmark_programs/libsodium/crypto_scrypt-common.bc differ diff --git a/benchmark_programs/libsodium/crypto_secretbox-strip.bc b/benchmark_programs/libsodium/crypto_secretbox-strip.bc new file mode 100644 index 00000000..ee5a9dd5 Binary files /dev/null and b/benchmark_programs/libsodium/crypto_secretbox-strip.bc differ diff --git a/benchmark_programs/libsodium/crypto_secretbox.bc b/benchmark_programs/libsodium/crypto_secretbox.bc new file mode 100644 index 00000000..9fa1cc56 Binary files /dev/null and b/benchmark_programs/libsodium/crypto_secretbox.bc differ diff --git a/benchmark_programs/libsodium/crypto_secretbox_easy-strip.bc b/benchmark_programs/libsodium/crypto_secretbox_easy-strip.bc new file mode 100644 index 00000000..a63a372d Binary files /dev/null and b/benchmark_programs/libsodium/crypto_secretbox_easy-strip.bc differ diff --git a/benchmark_programs/libsodium/crypto_secretbox_easy.bc b/benchmark_programs/libsodium/crypto_secretbox_easy.bc new file mode 100644 index 00000000..c8a49f52 Binary files /dev/null and b/benchmark_programs/libsodium/crypto_secretbox_easy.bc differ diff --git a/benchmark_programs/libsodium/crypto_shorthash-strip.bc b/benchmark_programs/libsodium/crypto_shorthash-strip.bc new file mode 100644 index 00000000..eeed81c0 Binary files /dev/null and b/benchmark_programs/libsodium/crypto_shorthash-strip.bc differ diff --git a/benchmark_programs/libsodium/crypto_shorthash.bc b/benchmark_programs/libsodium/crypto_shorthash.bc new file mode 100644 index 00000000..f46c846d Binary files /dev/null and b/benchmark_programs/libsodium/crypto_shorthash.bc differ diff --git a/benchmark_programs/libsodium/crypto_sign-strip.bc b/benchmark_programs/libsodium/crypto_sign-strip.bc new file mode 100644 index 00000000..f205aeaf Binary files /dev/null and b/benchmark_programs/libsodium/crypto_sign-strip.bc differ diff --git a/benchmark_programs/libsodium/crypto_sign.bc b/benchmark_programs/libsodium/crypto_sign.bc new file mode 100644 index 00000000..19ba3127 Binary files /dev/null and b/benchmark_programs/libsodium/crypto_sign.bc differ diff --git a/benchmark_programs/libsodium/crypto_stream-strip.bc b/benchmark_programs/libsodium/crypto_stream-strip.bc new file mode 100644 index 00000000..7bfb4d03 Binary files /dev/null and b/benchmark_programs/libsodium/crypto_stream-strip.bc differ diff --git a/benchmark_programs/libsodium/crypto_stream.bc b/benchmark_programs/libsodium/crypto_stream.bc new file mode 100644 index 00000000..c80ca598 Binary files /dev/null and b/benchmark_programs/libsodium/crypto_stream.bc differ diff --git a/benchmark_programs/libsodium/curve25519_sandy2x-strip.bc b/benchmark_programs/libsodium/curve25519_sandy2x-strip.bc new file mode 100644 index 00000000..8a8944f8 Binary files /dev/null and b/benchmark_programs/libsodium/curve25519_sandy2x-strip.bc differ diff --git a/benchmark_programs/libsodium/curve25519_sandy2x.bc b/benchmark_programs/libsodium/curve25519_sandy2x.bc new file mode 100644 index 00000000..e1100359 Binary files /dev/null and b/benchmark_programs/libsodium/curve25519_sandy2x.bc differ diff --git a/benchmark_programs/libsodium/ed25519_ref10-strip.bc b/benchmark_programs/libsodium/ed25519_ref10-strip.bc new file mode 100644 index 00000000..c08841fe Binary files /dev/null and b/benchmark_programs/libsodium/ed25519_ref10-strip.bc differ diff --git a/benchmark_programs/libsodium/ed25519_ref10.bc b/benchmark_programs/libsodium/ed25519_ref10.bc new file mode 100644 index 00000000..b003d189 Binary files /dev/null and b/benchmark_programs/libsodium/ed25519_ref10.bc differ diff --git a/benchmark_programs/libsodium/fe51_invert-strip.bc b/benchmark_programs/libsodium/fe51_invert-strip.bc new file mode 100644 index 00000000..66f7d1c4 Binary files /dev/null and b/benchmark_programs/libsodium/fe51_invert-strip.bc differ diff --git a/benchmark_programs/libsodium/fe51_invert.bc b/benchmark_programs/libsodium/fe51_invert.bc new file mode 100644 index 00000000..3efb415e Binary files /dev/null and b/benchmark_programs/libsodium/fe51_invert.bc differ diff --git a/benchmark_programs/libsodium/fe_frombytes_sandy2x-strip.bc b/benchmark_programs/libsodium/fe_frombytes_sandy2x-strip.bc new file mode 100644 index 00000000..ca6259ed Binary files /dev/null and b/benchmark_programs/libsodium/fe_frombytes_sandy2x-strip.bc differ diff --git a/benchmark_programs/libsodium/fe_frombytes_sandy2x.bc b/benchmark_programs/libsodium/fe_frombytes_sandy2x.bc new file mode 100644 index 00000000..def77116 Binary files /dev/null and b/benchmark_programs/libsodium/fe_frombytes_sandy2x.bc differ diff --git a/benchmark_programs/libsodium/generichash_blake2-strip.bc b/benchmark_programs/libsodium/generichash_blake2-strip.bc new file mode 100644 index 00000000..da8ff09d Binary files /dev/null and b/benchmark_programs/libsodium/generichash_blake2-strip.bc differ diff --git a/benchmark_programs/libsodium/generichash_blake2.bc b/benchmark_programs/libsodium/generichash_blake2.bc new file mode 100644 index 00000000..da8ff09d Binary files /dev/null and b/benchmark_programs/libsodium/generichash_blake2.bc differ diff --git a/benchmark_programs/libsodium/generichash_blake2b-strip.bc b/benchmark_programs/libsodium/generichash_blake2b-strip.bc new file mode 100644 index 00000000..1a10b3d1 Binary files /dev/null and b/benchmark_programs/libsodium/generichash_blake2b-strip.bc differ diff --git a/benchmark_programs/libsodium/generichash_blake2b.bc b/benchmark_programs/libsodium/generichash_blake2b.bc new file mode 100644 index 00000000..1c764be9 Binary files /dev/null and b/benchmark_programs/libsodium/generichash_blake2b.bc differ diff --git a/benchmark_programs/libsodium/hash_sha256-strip.bc b/benchmark_programs/libsodium/hash_sha256-strip.bc new file mode 100644 index 00000000..26841454 Binary files /dev/null and b/benchmark_programs/libsodium/hash_sha256-strip.bc differ diff --git a/benchmark_programs/libsodium/hash_sha256.bc b/benchmark_programs/libsodium/hash_sha256.bc new file mode 100644 index 00000000..26841454 Binary files /dev/null and b/benchmark_programs/libsodium/hash_sha256.bc differ diff --git a/benchmark_programs/libsodium/hash_sha256_cp-strip.bc b/benchmark_programs/libsodium/hash_sha256_cp-strip.bc new file mode 100644 index 00000000..98ff8df3 Binary files /dev/null and b/benchmark_programs/libsodium/hash_sha256_cp-strip.bc differ diff --git a/benchmark_programs/libsodium/hash_sha256_cp.bc b/benchmark_programs/libsodium/hash_sha256_cp.bc new file mode 100644 index 00000000..6319456f Binary files /dev/null and b/benchmark_programs/libsodium/hash_sha256_cp.bc differ diff --git a/benchmark_programs/libsodium/hash_sha512-strip.bc b/benchmark_programs/libsodium/hash_sha512-strip.bc new file mode 100644 index 00000000..b9a48d98 Binary files /dev/null and b/benchmark_programs/libsodium/hash_sha512-strip.bc differ diff --git a/benchmark_programs/libsodium/hash_sha512.bc b/benchmark_programs/libsodium/hash_sha512.bc new file mode 100644 index 00000000..b9a48d98 Binary files /dev/null and b/benchmark_programs/libsodium/hash_sha512.bc differ diff --git a/benchmark_programs/libsodium/hash_sha512_cp-strip.bc b/benchmark_programs/libsodium/hash_sha512_cp-strip.bc new file mode 100644 index 00000000..47b5ce04 Binary files /dev/null and b/benchmark_programs/libsodium/hash_sha512_cp-strip.bc differ diff --git a/benchmark_programs/libsodium/hash_sha512_cp.bc b/benchmark_programs/libsodium/hash_sha512_cp.bc new file mode 100644 index 00000000..182a38a0 Binary files /dev/null and b/benchmark_programs/libsodium/hash_sha512_cp.bc differ diff --git a/benchmark_programs/libsodium/kdf_blake2b-strip.bc b/benchmark_programs/libsodium/kdf_blake2b-strip.bc new file mode 100644 index 00000000..2a2b389f Binary files /dev/null and b/benchmark_programs/libsodium/kdf_blake2b-strip.bc differ diff --git a/benchmark_programs/libsodium/kdf_blake2b.bc b/benchmark_programs/libsodium/kdf_blake2b.bc new file mode 100644 index 00000000..fa60619b Binary files /dev/null and b/benchmark_programs/libsodium/kdf_blake2b.bc differ diff --git a/benchmark_programs/libsodium/kdf_hkdf_sha256-strip.bc b/benchmark_programs/libsodium/kdf_hkdf_sha256-strip.bc new file mode 100644 index 00000000..365cf129 Binary files /dev/null and b/benchmark_programs/libsodium/kdf_hkdf_sha256-strip.bc differ diff --git a/benchmark_programs/libsodium/kdf_hkdf_sha256.bc b/benchmark_programs/libsodium/kdf_hkdf_sha256.bc new file mode 100644 index 00000000..476a8d75 Binary files /dev/null and b/benchmark_programs/libsodium/kdf_hkdf_sha256.bc differ diff --git a/benchmark_programs/libsodium/kdf_hkdf_sha512-strip.bc b/benchmark_programs/libsodium/kdf_hkdf_sha512-strip.bc new file mode 100644 index 00000000..5092ebf0 Binary files /dev/null and b/benchmark_programs/libsodium/kdf_hkdf_sha512-strip.bc differ diff --git a/benchmark_programs/libsodium/kdf_hkdf_sha512.bc b/benchmark_programs/libsodium/kdf_hkdf_sha512.bc new file mode 100644 index 00000000..c9e11a1b Binary files /dev/null and b/benchmark_programs/libsodium/kdf_hkdf_sha512.bc differ diff --git a/benchmark_programs/libsodium/keypair-strip.bc b/benchmark_programs/libsodium/keypair-strip.bc new file mode 100644 index 00000000..38a3baae Binary files /dev/null and b/benchmark_programs/libsodium/keypair-strip.bc differ diff --git a/benchmark_programs/libsodium/keypair.bc b/benchmark_programs/libsodium/keypair.bc new file mode 100644 index 00000000..aaf7598f Binary files /dev/null and b/benchmark_programs/libsodium/keypair.bc differ diff --git a/benchmark_programs/libsodium/libaesni.la b/benchmark_programs/libsodium/libaesni.la new file mode 100644 index 00000000..55707488 --- /dev/null +++ b/benchmark_programs/libsodium/libaesni.la @@ -0,0 +1,41 @@ +# libaesni.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='' + +# Names of this library. +library_names='' + +# The name of the static archive. +old_library='libaesni.a' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags=' -pthread' + +# Libraries that this one depends upon. +dependency_libs='' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libaesni. +current= +age= +revision= + +# Is this an already installed library? +installed=no + +# Should we warn about portability when linking against -modules? +shouldnotlink=no + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='' diff --git a/benchmark_programs/libsodium/libarmcrypto.la b/benchmark_programs/libsodium/libarmcrypto.la new file mode 100644 index 00000000..2d984b77 --- /dev/null +++ b/benchmark_programs/libsodium/libarmcrypto.la @@ -0,0 +1,41 @@ +# libarmcrypto.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='' + +# Names of this library. +library_names='' + +# The name of the static archive. +old_library='libarmcrypto.a' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags=' -pthread' + +# Libraries that this one depends upon. +dependency_libs='' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libarmcrypto. +current= +age= +revision= + +# Is this an already installed library? +installed=no + +# Should we warn about portability when linking against -modules? +shouldnotlink=no + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='' diff --git a/benchmark_programs/libsodium/libavx2.la b/benchmark_programs/libsodium/libavx2.la new file mode 100644 index 00000000..7dcd03dd --- /dev/null +++ b/benchmark_programs/libsodium/libavx2.la @@ -0,0 +1,41 @@ +# libavx2.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='' + +# Names of this library. +library_names='' + +# The name of the static archive. +old_library='libavx2.a' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags=' -pthread' + +# Libraries that this one depends upon. +dependency_libs='' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libavx2. +current= +age= +revision= + +# Is this an already installed library? +installed=no + +# Should we warn about portability when linking against -modules? +shouldnotlink=no + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='' diff --git a/benchmark_programs/libsodium/libavx512f.la b/benchmark_programs/libsodium/libavx512f.la new file mode 100644 index 00000000..8cb4823b --- /dev/null +++ b/benchmark_programs/libsodium/libavx512f.la @@ -0,0 +1,41 @@ +# libavx512f.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='' + +# Names of this library. +library_names='' + +# The name of the static archive. +old_library='libavx512f.a' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags=' -pthread' + +# Libraries that this one depends upon. +dependency_libs='' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libavx512f. +current= +age= +revision= + +# Is this an already installed library? +installed=no + +# Should we warn about portability when linking against -modules? +shouldnotlink=no + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='' diff --git a/benchmark_programs/libsodium/librdrand.la b/benchmark_programs/libsodium/librdrand.la new file mode 100644 index 00000000..dff500e9 --- /dev/null +++ b/benchmark_programs/libsodium/librdrand.la @@ -0,0 +1,41 @@ +# librdrand.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='' + +# Names of this library. +library_names='' + +# The name of the static archive. +old_library='librdrand.a' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags=' -pthread' + +# Libraries that this one depends upon. +dependency_libs='' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for librdrand. +current= +age= +revision= + +# Is this an already installed library? +installed=no + +# Should we warn about portability when linking against -modules? +shouldnotlink=no + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='' diff --git a/benchmark_programs/libsodium/libsodium.la b/benchmark_programs/libsodium/libsodium.la new file mode 100644 index 00000000..9d7afa66 --- /dev/null +++ b/benchmark_programs/libsodium/libsodium.la @@ -0,0 +1,41 @@ +# libsodium.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='libsodium.so.27' + +# Names of this library. +library_names='libsodium.so.27.0.0 libsodium.so.27 libsodium.so' + +# The name of the static archive. +old_library='libsodium.a' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags=' -pthread' + +# Libraries that this one depends upon. +dependency_libs='' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libsodium. +current=27 +age=0 +revision=0 + +# Is this an already installed library? +installed=no + +# Should we warn about portability when linking against -modules? +shouldnotlink=no + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/usr/local/lib' diff --git a/benchmark_programs/libsodium/libsse2.la b/benchmark_programs/libsodium/libsse2.la new file mode 100644 index 00000000..d5cc1fe0 --- /dev/null +++ b/benchmark_programs/libsodium/libsse2.la @@ -0,0 +1,41 @@ +# libsse2.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='' + +# Names of this library. +library_names='' + +# The name of the static archive. +old_library='libsse2.a' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags=' -pthread' + +# Libraries that this one depends upon. +dependency_libs='' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libsse2. +current= +age= +revision= + +# Is this an already installed library? +installed=no + +# Should we warn about portability when linking against -modules? +shouldnotlink=no + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='' diff --git a/benchmark_programs/libsodium/libsse41.la b/benchmark_programs/libsodium/libsse41.la new file mode 100644 index 00000000..9f42574f --- /dev/null +++ b/benchmark_programs/libsodium/libsse41.la @@ -0,0 +1,41 @@ +# libsse41.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='' + +# Names of this library. +library_names='' + +# The name of the static archive. +old_library='libsse41.a' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags=' -pthread' + +# Libraries that this one depends upon. +dependency_libs='' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libsse41. +current= +age= +revision= + +# Is this an already installed library? +installed=no + +# Should we warn about portability when linking against -modules? +shouldnotlink=no + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='' diff --git a/benchmark_programs/libsodium/libssse3.la b/benchmark_programs/libsodium/libssse3.la new file mode 100644 index 00000000..6421acd4 --- /dev/null +++ b/benchmark_programs/libsodium/libssse3.la @@ -0,0 +1,41 @@ +# libssse3.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='' + +# Names of this library. +library_names='' + +# The name of the static archive. +old_library='libssse3.a' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags=' -pthread' + +# Libraries that this one depends upon. +dependency_libs='' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libssse3. +current= +age= +revision= + +# Is this an already installed library? +installed=no + +# Should we warn about portability when linking against -modules? +shouldnotlink=no + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='' diff --git a/benchmark_programs/libsodium/onetimeauth_poly1305-strip.bc b/benchmark_programs/libsodium/onetimeauth_poly1305-strip.bc new file mode 100644 index 00000000..2abbc93a Binary files /dev/null and b/benchmark_programs/libsodium/onetimeauth_poly1305-strip.bc differ diff --git a/benchmark_programs/libsodium/onetimeauth_poly1305.bc b/benchmark_programs/libsodium/onetimeauth_poly1305.bc new file mode 100644 index 00000000..42475bd4 Binary files /dev/null and b/benchmark_programs/libsodium/onetimeauth_poly1305.bc differ diff --git a/benchmark_programs/libsodium/open-strip.bc b/benchmark_programs/libsodium/open-strip.bc new file mode 100644 index 00000000..2c7a5176 Binary files /dev/null and b/benchmark_programs/libsodium/open-strip.bc differ diff --git a/benchmark_programs/libsodium/open.bc b/benchmark_programs/libsodium/open.bc new file mode 100644 index 00000000..c918e81f Binary files /dev/null and b/benchmark_programs/libsodium/open.bc differ diff --git a/benchmark_programs/libsodium/pbkdf2-sha256-strip.bc b/benchmark_programs/libsodium/pbkdf2-sha256-strip.bc new file mode 100644 index 00000000..4170d599 Binary files /dev/null and b/benchmark_programs/libsodium/pbkdf2-sha256-strip.bc differ diff --git a/benchmark_programs/libsodium/pbkdf2-sha256.bc b/benchmark_programs/libsodium/pbkdf2-sha256.bc new file mode 100644 index 00000000..ca130323 Binary files /dev/null and b/benchmark_programs/libsodium/pbkdf2-sha256.bc differ diff --git a/benchmark_programs/libsodium/poly1305_donna-strip.bc b/benchmark_programs/libsodium/poly1305_donna-strip.bc new file mode 100644 index 00000000..257613a0 Binary files /dev/null and b/benchmark_programs/libsodium/poly1305_donna-strip.bc differ diff --git a/benchmark_programs/libsodium/poly1305_donna.bc b/benchmark_programs/libsodium/poly1305_donna.bc new file mode 100644 index 00000000..454a2dcc Binary files /dev/null and b/benchmark_programs/libsodium/poly1305_donna.bc differ diff --git a/benchmark_programs/libsodium/poly1305_sse2-strip.bc b/benchmark_programs/libsodium/poly1305_sse2-strip.bc new file mode 100644 index 00000000..80f29ef4 Binary files /dev/null and b/benchmark_programs/libsodium/poly1305_sse2-strip.bc differ diff --git a/benchmark_programs/libsodium/poly1305_sse2.bc b/benchmark_programs/libsodium/poly1305_sse2.bc new file mode 100644 index 00000000..652f9ea2 Binary files /dev/null and b/benchmark_programs/libsodium/poly1305_sse2.bc differ diff --git a/benchmark_programs/libsodium/pwhash_argon2i-strip.bc b/benchmark_programs/libsodium/pwhash_argon2i-strip.bc new file mode 100644 index 00000000..ec9b99b3 Binary files /dev/null and b/benchmark_programs/libsodium/pwhash_argon2i-strip.bc differ diff --git a/benchmark_programs/libsodium/pwhash_argon2i.bc b/benchmark_programs/libsodium/pwhash_argon2i.bc new file mode 100644 index 00000000..34b08525 Binary files /dev/null and b/benchmark_programs/libsodium/pwhash_argon2i.bc differ diff --git a/benchmark_programs/libsodium/pwhash_argon2id-strip.bc b/benchmark_programs/libsodium/pwhash_argon2id-strip.bc new file mode 100644 index 00000000..d27ee3b1 Binary files /dev/null and b/benchmark_programs/libsodium/pwhash_argon2id-strip.bc differ diff --git a/benchmark_programs/libsodium/pwhash_argon2id.bc b/benchmark_programs/libsodium/pwhash_argon2id.bc new file mode 100644 index 00000000..bbe98102 Binary files /dev/null and b/benchmark_programs/libsodium/pwhash_argon2id.bc differ diff --git a/benchmark_programs/libsodium/pwhash_scryptsalsa208sha256-strip.bc b/benchmark_programs/libsodium/pwhash_scryptsalsa208sha256-strip.bc new file mode 100644 index 00000000..43bde81c Binary files /dev/null and b/benchmark_programs/libsodium/pwhash_scryptsalsa208sha256-strip.bc differ diff --git a/benchmark_programs/libsodium/pwhash_scryptsalsa208sha256.bc b/benchmark_programs/libsodium/pwhash_scryptsalsa208sha256.bc new file mode 100644 index 00000000..7db59800 Binary files /dev/null and b/benchmark_programs/libsodium/pwhash_scryptsalsa208sha256.bc differ diff --git a/benchmark_programs/libsodium/pwhash_scryptsalsa208sha256_nosse-strip.bc b/benchmark_programs/libsodium/pwhash_scryptsalsa208sha256_nosse-strip.bc new file mode 100644 index 00000000..b5235687 Binary files /dev/null and b/benchmark_programs/libsodium/pwhash_scryptsalsa208sha256_nosse-strip.bc differ diff --git a/benchmark_programs/libsodium/pwhash_scryptsalsa208sha256_nosse.bc b/benchmark_programs/libsodium/pwhash_scryptsalsa208sha256_nosse.bc new file mode 100644 index 00000000..541297f3 Binary files /dev/null and b/benchmark_programs/libsodium/pwhash_scryptsalsa208sha256_nosse.bc differ diff --git a/benchmark_programs/libsodium/pwhash_scryptsalsa208sha256_sse-strip.bc b/benchmark_programs/libsodium/pwhash_scryptsalsa208sha256_sse-strip.bc new file mode 100644 index 00000000..86726d84 Binary files /dev/null and b/benchmark_programs/libsodium/pwhash_scryptsalsa208sha256_sse-strip.bc differ diff --git a/benchmark_programs/libsodium/pwhash_scryptsalsa208sha256_sse.bc b/benchmark_programs/libsodium/pwhash_scryptsalsa208sha256_sse.bc new file mode 100644 index 00000000..bd0b2aae Binary files /dev/null and b/benchmark_programs/libsodium/pwhash_scryptsalsa208sha256_sse.bc differ diff --git a/benchmark_programs/libsodium/randombytes-strip.bc b/benchmark_programs/libsodium/randombytes-strip.bc new file mode 100644 index 00000000..a0bb9e97 Binary files /dev/null and b/benchmark_programs/libsodium/randombytes-strip.bc differ diff --git a/benchmark_programs/libsodium/randombytes.bc b/benchmark_programs/libsodium/randombytes.bc new file mode 100644 index 00000000..806b9307 Binary files /dev/null and b/benchmark_programs/libsodium/randombytes.bc differ diff --git a/benchmark_programs/libsodium/randombytes_internal_random-strip.bc b/benchmark_programs/libsodium/randombytes_internal_random-strip.bc new file mode 100644 index 00000000..94104cc1 Binary files /dev/null and b/benchmark_programs/libsodium/randombytes_internal_random-strip.bc differ diff --git a/benchmark_programs/libsodium/randombytes_internal_random.bc b/benchmark_programs/libsodium/randombytes_internal_random.bc new file mode 100644 index 00000000..e60d5d0f Binary files /dev/null and b/benchmark_programs/libsodium/randombytes_internal_random.bc differ diff --git a/benchmark_programs/libsodium/randombytes_sysrandom-strip.bc b/benchmark_programs/libsodium/randombytes_sysrandom-strip.bc new file mode 100644 index 00000000..720f16db Binary files /dev/null and b/benchmark_programs/libsodium/randombytes_sysrandom-strip.bc differ diff --git a/benchmark_programs/libsodium/randombytes_sysrandom.bc b/benchmark_programs/libsodium/randombytes_sysrandom.bc new file mode 100644 index 00000000..bbe5239d Binary files /dev/null and b/benchmark_programs/libsodium/randombytes_sysrandom.bc differ diff --git a/benchmark_programs/libsodium/runtime-strip.bc b/benchmark_programs/libsodium/runtime-strip.bc new file mode 100644 index 00000000..504f67c9 Binary files /dev/null and b/benchmark_programs/libsodium/runtime-strip.bc differ diff --git a/benchmark_programs/libsodium/runtime.bc b/benchmark_programs/libsodium/runtime.bc new file mode 100644 index 00000000..65aaa02b Binary files /dev/null and b/benchmark_programs/libsodium/runtime.bc differ diff --git a/benchmark_programs/libsodium/salsa20_xmm6-strip.bc b/benchmark_programs/libsodium/salsa20_xmm6-strip.bc new file mode 100644 index 00000000..5a19e6db Binary files /dev/null and b/benchmark_programs/libsodium/salsa20_xmm6-strip.bc differ diff --git a/benchmark_programs/libsodium/salsa20_xmm6.bc b/benchmark_programs/libsodium/salsa20_xmm6.bc new file mode 100644 index 00000000..aad2d9ba Binary files /dev/null and b/benchmark_programs/libsodium/salsa20_xmm6.bc differ diff --git a/benchmark_programs/libsodium/salsa20_xmm6int-avx2-strip.bc b/benchmark_programs/libsodium/salsa20_xmm6int-avx2-strip.bc new file mode 100644 index 00000000..45d828ba Binary files /dev/null and b/benchmark_programs/libsodium/salsa20_xmm6int-avx2-strip.bc differ diff --git a/benchmark_programs/libsodium/salsa20_xmm6int-avx2.bc b/benchmark_programs/libsodium/salsa20_xmm6int-avx2.bc new file mode 100644 index 00000000..9c7f3e48 Binary files /dev/null and b/benchmark_programs/libsodium/salsa20_xmm6int-avx2.bc differ diff --git a/benchmark_programs/libsodium/scalarmult_curve25519-strip.bc b/benchmark_programs/libsodium/scalarmult_curve25519-strip.bc new file mode 100644 index 00000000..8b1572fb Binary files /dev/null and b/benchmark_programs/libsodium/scalarmult_curve25519-strip.bc differ diff --git a/benchmark_programs/libsodium/scalarmult_curve25519.bc b/benchmark_programs/libsodium/scalarmult_curve25519.bc new file mode 100644 index 00000000..c1fd8aba Binary files /dev/null and b/benchmark_programs/libsodium/scalarmult_curve25519.bc differ diff --git a/benchmark_programs/libsodium/scalarmult_ed25519_ref10-strip.bc b/benchmark_programs/libsodium/scalarmult_ed25519_ref10-strip.bc new file mode 100644 index 00000000..5f6fa886 Binary files /dev/null and b/benchmark_programs/libsodium/scalarmult_ed25519_ref10-strip.bc differ diff --git a/benchmark_programs/libsodium/scalarmult_ed25519_ref10.bc b/benchmark_programs/libsodium/scalarmult_ed25519_ref10.bc new file mode 100644 index 00000000..f4e547cf Binary files /dev/null and b/benchmark_programs/libsodium/scalarmult_ed25519_ref10.bc differ diff --git a/benchmark_programs/libsodium/scalarmult_ristretto255_ref10-strip.bc b/benchmark_programs/libsodium/scalarmult_ristretto255_ref10-strip.bc new file mode 100644 index 00000000..9649df8f Binary files /dev/null and b/benchmark_programs/libsodium/scalarmult_ristretto255_ref10-strip.bc differ diff --git a/benchmark_programs/libsodium/scalarmult_ristretto255_ref10.bc b/benchmark_programs/libsodium/scalarmult_ristretto255_ref10.bc new file mode 100644 index 00000000..294dcd0a Binary files /dev/null and b/benchmark_programs/libsodium/scalarmult_ristretto255_ref10.bc differ diff --git a/benchmark_programs/libsodium/scrypt_platform-strip.bc b/benchmark_programs/libsodium/scrypt_platform-strip.bc new file mode 100644 index 00000000..339f9fc3 Binary files /dev/null and b/benchmark_programs/libsodium/scrypt_platform-strip.bc differ diff --git a/benchmark_programs/libsodium/scrypt_platform.bc b/benchmark_programs/libsodium/scrypt_platform.bc new file mode 100644 index 00000000..0721b7f6 Binary files /dev/null and b/benchmark_programs/libsodium/scrypt_platform.bc differ diff --git a/benchmark_programs/libsodium/secretbox_xchacha20poly1305-strip.bc b/benchmark_programs/libsodium/secretbox_xchacha20poly1305-strip.bc new file mode 100644 index 00000000..57ab7cfa Binary files /dev/null and b/benchmark_programs/libsodium/secretbox_xchacha20poly1305-strip.bc differ diff --git a/benchmark_programs/libsodium/secretbox_xchacha20poly1305.bc b/benchmark_programs/libsodium/secretbox_xchacha20poly1305.bc new file mode 100644 index 00000000..0f4934a6 Binary files /dev/null and b/benchmark_programs/libsodium/secretbox_xchacha20poly1305.bc differ diff --git a/benchmark_programs/libsodium/secretbox_xsalsa20poly1305-strip.bc b/benchmark_programs/libsodium/secretbox_xsalsa20poly1305-strip.bc new file mode 100644 index 00000000..7a9b9871 Binary files /dev/null and b/benchmark_programs/libsodium/secretbox_xsalsa20poly1305-strip.bc differ diff --git a/benchmark_programs/libsodium/secretbox_xsalsa20poly1305.bc b/benchmark_programs/libsodium/secretbox_xsalsa20poly1305.bc new file mode 100644 index 00000000..7a9b9871 Binary files /dev/null and b/benchmark_programs/libsodium/secretbox_xsalsa20poly1305.bc differ diff --git a/benchmark_programs/libsodium/secretstream_xchacha20poly1305-strip.bc b/benchmark_programs/libsodium/secretstream_xchacha20poly1305-strip.bc new file mode 100644 index 00000000..45c27a97 Binary files /dev/null and b/benchmark_programs/libsodium/secretstream_xchacha20poly1305-strip.bc differ diff --git a/benchmark_programs/libsodium/secretstream_xchacha20poly1305.bc b/benchmark_programs/libsodium/secretstream_xchacha20poly1305.bc new file mode 100644 index 00000000..24a018a1 Binary files /dev/null and b/benchmark_programs/libsodium/secretstream_xchacha20poly1305.bc differ diff --git a/benchmark_programs/libsodium/shorthash_siphash24-strip.bc b/benchmark_programs/libsodium/shorthash_siphash24-strip.bc new file mode 100644 index 00000000..484ae146 Binary files /dev/null and b/benchmark_programs/libsodium/shorthash_siphash24-strip.bc differ diff --git a/benchmark_programs/libsodium/shorthash_siphash24.bc b/benchmark_programs/libsodium/shorthash_siphash24.bc new file mode 100644 index 00000000..484ae146 Binary files /dev/null and b/benchmark_programs/libsodium/shorthash_siphash24.bc differ diff --git a/benchmark_programs/libsodium/shorthash_siphash24_ref-strip.bc b/benchmark_programs/libsodium/shorthash_siphash24_ref-strip.bc new file mode 100644 index 00000000..4ebd673d Binary files /dev/null and b/benchmark_programs/libsodium/shorthash_siphash24_ref-strip.bc differ diff --git a/benchmark_programs/libsodium/shorthash_siphash24_ref.bc b/benchmark_programs/libsodium/shorthash_siphash24_ref.bc new file mode 100644 index 00000000..57ba12ac Binary files /dev/null and b/benchmark_programs/libsodium/shorthash_siphash24_ref.bc differ diff --git a/benchmark_programs/libsodium/shorthash_siphashx24-strip.bc b/benchmark_programs/libsodium/shorthash_siphashx24-strip.bc new file mode 100644 index 00000000..4d8e8fa7 Binary files /dev/null and b/benchmark_programs/libsodium/shorthash_siphashx24-strip.bc differ diff --git a/benchmark_programs/libsodium/shorthash_siphashx24.bc b/benchmark_programs/libsodium/shorthash_siphashx24.bc new file mode 100644 index 00000000..4d8e8fa7 Binary files /dev/null and b/benchmark_programs/libsodium/shorthash_siphashx24.bc differ diff --git a/benchmark_programs/libsodium/shorthash_siphashx24_ref-strip.bc b/benchmark_programs/libsodium/shorthash_siphashx24_ref-strip.bc new file mode 100644 index 00000000..10f21c81 Binary files /dev/null and b/benchmark_programs/libsodium/shorthash_siphashx24_ref-strip.bc differ diff --git a/benchmark_programs/libsodium/shorthash_siphashx24_ref.bc b/benchmark_programs/libsodium/shorthash_siphashx24_ref.bc new file mode 100644 index 00000000..8d20f3a1 Binary files /dev/null and b/benchmark_programs/libsodium/shorthash_siphashx24_ref.bc differ diff --git a/benchmark_programs/libsodium/sign-strip.bc b/benchmark_programs/libsodium/sign-strip.bc new file mode 100644 index 00000000..0aa19ee8 Binary files /dev/null and b/benchmark_programs/libsodium/sign-strip.bc differ diff --git a/benchmark_programs/libsodium/sign.bc b/benchmark_programs/libsodium/sign.bc new file mode 100644 index 00000000..42143b8a Binary files /dev/null and b/benchmark_programs/libsodium/sign.bc differ diff --git a/benchmark_programs/libsodium/sign_ed25519-strip.bc b/benchmark_programs/libsodium/sign_ed25519-strip.bc new file mode 100644 index 00000000..c8dd2c18 Binary files /dev/null and b/benchmark_programs/libsodium/sign_ed25519-strip.bc differ diff --git a/benchmark_programs/libsodium/sign_ed25519.bc b/benchmark_programs/libsodium/sign_ed25519.bc new file mode 100644 index 00000000..9eba1875 Binary files /dev/null and b/benchmark_programs/libsodium/sign_ed25519.bc differ diff --git a/benchmark_programs/libsodium/stream_chacha20-strip.bc b/benchmark_programs/libsodium/stream_chacha20-strip.bc new file mode 100644 index 00000000..6a998b63 Binary files /dev/null and b/benchmark_programs/libsodium/stream_chacha20-strip.bc differ diff --git a/benchmark_programs/libsodium/stream_chacha20.bc b/benchmark_programs/libsodium/stream_chacha20.bc new file mode 100644 index 00000000..c76fe6fd Binary files /dev/null and b/benchmark_programs/libsodium/stream_chacha20.bc differ diff --git a/benchmark_programs/libsodium/stream_salsa20-strip.bc b/benchmark_programs/libsodium/stream_salsa20-strip.bc new file mode 100644 index 00000000..90b05c7b Binary files /dev/null and b/benchmark_programs/libsodium/stream_salsa20-strip.bc differ diff --git a/benchmark_programs/libsodium/stream_salsa20.bc b/benchmark_programs/libsodium/stream_salsa20.bc new file mode 100644 index 00000000..04d01a22 Binary files /dev/null and b/benchmark_programs/libsodium/stream_salsa20.bc differ diff --git a/benchmark_programs/libsodium/stream_salsa2012-strip.bc b/benchmark_programs/libsodium/stream_salsa2012-strip.bc new file mode 100644 index 00000000..72b4094c Binary files /dev/null and b/benchmark_programs/libsodium/stream_salsa2012-strip.bc differ diff --git a/benchmark_programs/libsodium/stream_salsa2012.bc b/benchmark_programs/libsodium/stream_salsa2012.bc new file mode 100644 index 00000000..72b4094c Binary files /dev/null and b/benchmark_programs/libsodium/stream_salsa2012.bc differ diff --git a/benchmark_programs/libsodium/stream_salsa2012_ref-strip.bc b/benchmark_programs/libsodium/stream_salsa2012_ref-strip.bc new file mode 100644 index 00000000..b3d75d2a Binary files /dev/null and b/benchmark_programs/libsodium/stream_salsa2012_ref-strip.bc differ diff --git a/benchmark_programs/libsodium/stream_salsa2012_ref.bc b/benchmark_programs/libsodium/stream_salsa2012_ref.bc new file mode 100644 index 00000000..b3d75d2a Binary files /dev/null and b/benchmark_programs/libsodium/stream_salsa2012_ref.bc differ diff --git a/benchmark_programs/libsodium/stream_salsa208-strip.bc b/benchmark_programs/libsodium/stream_salsa208-strip.bc new file mode 100644 index 00000000..07de0359 Binary files /dev/null and b/benchmark_programs/libsodium/stream_salsa208-strip.bc differ diff --git a/benchmark_programs/libsodium/stream_salsa208.bc b/benchmark_programs/libsodium/stream_salsa208.bc new file mode 100644 index 00000000..07de0359 Binary files /dev/null and b/benchmark_programs/libsodium/stream_salsa208.bc differ diff --git a/benchmark_programs/libsodium/stream_salsa208_ref-strip.bc b/benchmark_programs/libsodium/stream_salsa208_ref-strip.bc new file mode 100644 index 00000000..ad14306a Binary files /dev/null and b/benchmark_programs/libsodium/stream_salsa208_ref-strip.bc differ diff --git a/benchmark_programs/libsodium/stream_salsa208_ref.bc b/benchmark_programs/libsodium/stream_salsa208_ref.bc new file mode 100644 index 00000000..ad14306a Binary files /dev/null and b/benchmark_programs/libsodium/stream_salsa208_ref.bc differ diff --git a/benchmark_programs/libsodium/stream_xchacha20-strip.bc b/benchmark_programs/libsodium/stream_xchacha20-strip.bc new file mode 100644 index 00000000..fc905bf7 Binary files /dev/null and b/benchmark_programs/libsodium/stream_xchacha20-strip.bc differ diff --git a/benchmark_programs/libsodium/stream_xchacha20.bc b/benchmark_programs/libsodium/stream_xchacha20.bc new file mode 100644 index 00000000..fc905bf7 Binary files /dev/null and b/benchmark_programs/libsodium/stream_xchacha20.bc differ diff --git a/benchmark_programs/libsodium/stream_xsalsa20-strip.bc b/benchmark_programs/libsodium/stream_xsalsa20-strip.bc new file mode 100644 index 00000000..0aaba766 Binary files /dev/null and b/benchmark_programs/libsodium/stream_xsalsa20-strip.bc differ diff --git a/benchmark_programs/libsodium/stream_xsalsa20.bc b/benchmark_programs/libsodium/stream_xsalsa20.bc new file mode 100644 index 00000000..0aaba766 Binary files /dev/null and b/benchmark_programs/libsodium/stream_xsalsa20.bc differ diff --git a/benchmark_programs/libsodium/utils-strip.bc b/benchmark_programs/libsodium/utils-strip.bc new file mode 100644 index 00000000..230aa8ac Binary files /dev/null and b/benchmark_programs/libsodium/utils-strip.bc differ diff --git a/benchmark_programs/libsodium/utils.bc b/benchmark_programs/libsodium/utils.bc new file mode 100644 index 00000000..4644c54d Binary files /dev/null and b/benchmark_programs/libsodium/utils.bc differ diff --git a/benchmark_programs/libsodium/verify-strip.bc b/benchmark_programs/libsodium/verify-strip.bc new file mode 100644 index 00000000..9cab4832 Binary files /dev/null and b/benchmark_programs/libsodium/verify-strip.bc differ diff --git a/benchmark_programs/libsodium/verify.bc b/benchmark_programs/libsodium/verify.bc new file mode 100644 index 00000000..c85f462d Binary files /dev/null and b/benchmark_programs/libsodium/verify.bc differ diff --git a/benchmark_programs/libsodium/version-strip.bc b/benchmark_programs/libsodium/version-strip.bc new file mode 100644 index 00000000..b4728e7c Binary files /dev/null and b/benchmark_programs/libsodium/version-strip.bc differ diff --git a/benchmark_programs/libsodium/version.bc b/benchmark_programs/libsodium/version.bc new file mode 100644 index 00000000..ec582b12 Binary files /dev/null and b/benchmark_programs/libsodium/version.bc differ diff --git a/benchmark_programs/libsodium/x25519_ref10-strip.bc b/benchmark_programs/libsodium/x25519_ref10-strip.bc new file mode 100644 index 00000000..6ff223e5 Binary files /dev/null and b/benchmark_programs/libsodium/x25519_ref10-strip.bc differ diff --git a/benchmark_programs/libsodium/x25519_ref10.bc b/benchmark_programs/libsodium/x25519_ref10.bc new file mode 100644 index 00000000..534c2ac3 Binary files /dev/null and b/benchmark_programs/libsodium/x25519_ref10.bc differ diff --git a/benchmark_programs/rossetta/the_sixties/count_cloc.sh b/benchmark_programs/rossetta/the_sixties/count_cloc.sh new file mode 100755 index 00000000..9787ca26 --- /dev/null +++ b/benchmark_programs/rossetta/the_sixties/count_cloc.sh @@ -0,0 +1,56 @@ +cloc "100_doors.c" +cloc "99_Bottles_of_Beer.c" +cloc "Babbage_problem.c" +cloc "Best_shuffle.c" +cloc "Burrows–Wheeler_transform.c" +cloc "Cartesian_product_of_two_or_more_lists.c" +cloc "Catalan_numbers.c" +cloc "Chebyshev_coefficients.c" +cloc "Combinations.c" +cloc "Continued_fraction.c" +cloc "Cycle_detection.c" +cloc "Day_of_the_week.c" +cloc "Deconvolution-1D.c" +cloc "Evaluate_binomial_coefficients.c" +cloc "Execute_HQ9+.c" +cloc "Fast_Fourier_transform.c" +cloc "Feigenbaum_constant_calculation.c" +cloc "Fibonacci_sequence.c" +cloc "Flatten_a_list.c" +cloc "Forward_difference.c" +cloc "Gray_code.c" +cloc "Hilbert_curve.c" +cloc "Hofstadter-Conway_\$10,000_sequence.c" +cloc "Holidays_related_to_Easter.c" +cloc "Horner's_rule_for_polynomial_evaluation.c" +cloc "Knuth_shuffle.c" +cloc "Largest_number_divisible_by_its_digits.c" +cloc "Law_of_cosines_-_triples.c" +cloc "Longest_increasing_subsequence.c" +cloc "Look-and-say_sequence.c" +cloc "Magic_squares_of_singly_even_order.c" +cloc "Mian-Chowla_sequence.c" +cloc "Middle_three_digits.c" +cloc "Multiplication_tables.c" +cloc "N'th.c" +cloc "Nth_root.c" +cloc "Palindrome_detection.c" +cloc "Permutations-Rank_of_a_permutation.c" +cloc "Price_fraction.c" +cloc "Quickselect_algorithm.c" +cloc "Ramsey's_theorem.c" +cloc "Remove_duplicate_elements.c" +cloc "Roots_of_unity.c" +cloc "Sailors,_coconuts_and_a_monkey_problem.c" +cloc "Show_Ascii_table.c" +cloc "Sierpinski_triangle.c" +cloc "Sort_numbers_lexicographically.c" +cloc "Sorting_algorithms-Bubble_sort.c" +cloc "Sorting_algorithms-Merge_sort.c" +cloc "Sparkline_in_unicode.c" +cloc "Thiele's_interpolation_formula.c" +cloc "Tokenize_a_string_with_escaping.c" +cloc "Total_circles_area.c" +cloc "URL_decoding.c" +cloc "Vampire_number.c" +cloc "Zeckendorf_number_representation.c" \ No newline at end of file diff --git a/benchmark_programs/rossetta/the_sixties/lines.txt b/benchmark_programs/rossetta/the_sixties/lines.txt new file mode 100644 index 00000000..dfa4c2c8 --- /dev/null +++ b/benchmark_programs/rossetta/the_sixties/lines.txt @@ -0,0 +1,560 @@ + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (83.4 files/s, 1501.9 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 4 2 12 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (84.6 files/s, 2367.5 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 7 3 18 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.03 s (32.5 files/s, 845.8 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 6 5 15 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (82.0 files/s, 9096.9 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 16 8 87 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.02 s (42.0 files/s, 4154.2 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 6 0 93 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (82.4 files/s, 9636.0 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 29 0 88 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (83.3 files/s, 3832.3 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 10 0 36 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (84.0 files/s, 5628.8 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 12 5 50 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (85.9 files/s, 2320.4 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 5 2 20 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (82.2 files/s, 5837.4 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 15 7 49 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (85.0 files/s, 6714.3 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 14 0 65 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (75.9 files/s, 1822.6 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 5 1 18 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (80.5 files/s, 7406.7 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 17 1 74 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (79.2 files/s, 3406.7 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 4 1 38 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (77.8 files/s, 3268.7 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 6 2 34 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (82.9 files/s, 4391.8 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 13 0 40 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (75.6 files/s, 2193.6 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 2 0 27 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (67.8 files/s, 542.0 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 1 0 7 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.02 s (52.7 files/s, 6217.7 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 16 1 101 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (82.2 files/s, 3204.4 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 8 2 29 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (82.8 files/s, 3229.6 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 6 1 32 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.02 s (61.5 files/s, 4365.8 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 5 0 66 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (76.6 files/s, 2680.6 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 5 0 30 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (81.4 files/s, 9933.1 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 17 15 90 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (83.5 files/s, 1837.0 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 5 0 17 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (82.9 files/s, 4310.0 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 6 11 35 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (77.3 files/s, 2086.5 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 5 0 22 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (80.2 files/s, 3450.5 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 5 10 28 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (85.6 files/s, 3768.1 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 8 2 34 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (75.3 files/s, 1656.3 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 3 0 19 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (69.8 files/s, 8233.3 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 23 0 95 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (72.2 files/s, 3248.9 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 4 0 41 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (81.0 files/s, 2671.4 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 4 1 28 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (79.8 files/s, 1356.1 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 4 0 13 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (77.6 files/s, 4036.3 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 8 0 44 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (83.5 files/s, 2837.4 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 3 0 31 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (72.7 files/s, 1381.8 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 4 0 15 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.02 s (63.5 files/s, 4319.9 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 12 6 50 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.02 s (63.9 files/s, 1789.3 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 5 0 23 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (81.8 files/s, 2862.1 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 7 0 28 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (83.5 files/s, 5179.2 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 10 3 49 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (82.3 files/s, 2716.5 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 5 0 28 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (78.8 files/s, 1892.0 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 4 0 20 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (79.3 files/s, 1507.5 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 2 0 17 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (86.1 files/s, 1550.6 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 1 0 17 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (84.9 files/s, 1103.8 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 1 0 12 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (86.9 files/s, 4433.6 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 3 0 48 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (85.1 files/s, 2468.9 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 2 0 27 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (81.1 files/s, 3080.4 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 3 0 35 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (83.4 files/s, 4001.3 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 6 0 42 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (84.2 files/s, 5385.8 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 10 10 44 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (85.2 files/s, 8607.5 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 21 23 57 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (76.2 files/s, 7539.5 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 16 4 79 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (83.1 files/s, 3323.1 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 8 0 32 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (80.7 files/s, 6621.4 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 15 0 67 +------------------------------------------------------------------------------- + 1 text file. + 1 unique file. + 0 files ignored. + +github.com/AlDanial/cloc v 1.85 T=0.01 s (84.3 files/s, 4891.2 lines/s) +------------------------------------------------------------------------------- +Language files blank comment code +------------------------------------------------------------------------------- +C 1 12 0 46 +------------------------------------------------------------------------------- diff --git a/benchmark_programs/rossetta/the_sixties/variants b/benchmark_programs/rossetta/the_sixties/variants deleted file mode 120000 index af93c833..00000000 --- a/benchmark_programs/rossetta/the_sixties/variants +++ /dev/null @@ -1 +0,0 @@ -/Volumes/2MacOS/slumps-distributed-wasi-7h9vf/variants/ \ No newline at end of file diff --git a/benchmark_programs/wasi_test/wasm-ld b/benchmark_programs/wasi_test/wasm-ld new file mode 120000 index 00000000..f863ff61 --- /dev/null +++ b/benchmark_programs/wasi_test/wasm-ld @@ -0,0 +1 @@ +/usr/bin/wasm-ld-9 \ No newline at end of file diff --git a/crow/dump.rdb b/crow/dump.rdb index 46f77d16..706a27dc 100644 Binary files a/crow/dump.rdb and b/crow/dump.rdb differ diff --git a/crow/nohup.out b/crow/nohup.out index d355362f..32bab870 100644 --- a/crow/nohup.out +++ b/crow/nohup.out @@ -1,42 +1,1721 @@ -6:C 01 Apr 19:10:41.100 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo -6:C 01 Apr 19:10:41.102 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started -6:C 01 Apr 19:10:41.103 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf -6:M 01 Apr 19:10:41.108 * Running mode=standalone, port=6379. -6:M 01 Apr 19:10:41.109 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. -6:M 01 Apr 19:10:41.109 # Server initialized -6:M 01 Apr 19:10:41.110 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. -6:M 01 Apr 19:10:41.115 * DB loaded from disk: 0.004 seconds -6:M 01 Apr 19:10:41.116 * Ready to accept connections -7:C 01 Apr 19:11:18.600 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo -7:C 01 Apr 19:11:18.602 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started -7:C 01 Apr 19:11:18.603 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf -7:M 01 Apr 19:11:18.605 * Running mode=standalone, port=6379. -7:M 01 Apr 19:11:18.606 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. -7:M 01 Apr 19:11:18.606 # Server initialized -7:M 01 Apr 19:11:18.607 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. -7:M 01 Apr 19:11:18.612 * DB loaded from disk: 0.005 seconds -7:M 01 Apr 19:11:18.612 * Ready to accept connections -7:C 01 Apr 19:14:54.393 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo -7:C 01 Apr 19:14:54.398 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started -7:C 01 Apr 19:14:54.399 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf -7:M 01 Apr 19:14:54.405 * Running mode=standalone, port=6379. -7:M 01 Apr 19:14:54.406 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. -7:M 01 Apr 19:14:54.406 # Server initialized -7:M 01 Apr 19:14:54.407 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. -7:M 01 Apr 19:14:54.410 * DB loaded from disk: 0.003 seconds -7:M 01 Apr 19:14:54.411 * Ready to accept connections -7:signal-handler (1585768504) Received SIGINT scheduling shutdown... -7:M 01 Apr 19:15:04.854 # User requested shutdown... -7:M 01 Apr 19:15:04.856 * Saving the final RDB snapshot before exiting. -7:M 01 Apr 19:15:04.861 * DB saved on disk -7:M 01 Apr 19:15:04.862 # Redis is now ready to exit, bye bye... -6:C 01 Apr 19:15:05.889 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo -6:C 01 Apr 19:15:05.891 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started -6:C 01 Apr 19:15:05.892 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf -6:M 01 Apr 19:15:05.898 * Running mode=standalone, port=6379. -6:M 01 Apr 19:15:05.898 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. -6:M 01 Apr 19:15:05.899 # Server initialized -6:M 01 Apr 19:15:05.900 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. -6:M 01 Apr 19:15:05.903 * DB loaded from disk: 0.003 seconds -6:M 01 Apr 19:15:05.903 * Ready to accept connections -6:signal-handler (1585768507) Received SIGINT scheduling shutdown... +6:C 15 Apr 19:03:02.335 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 15 Apr 19:03:02.336 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 15 Apr 19:03:02.336 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 15 Apr 19:03:02.341 * Running mode=standalone, port=6379. +6:M 15 Apr 19:03:02.341 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 15 Apr 19:03:02.342 # Server initialized +6:M 15 Apr 19:03:02.344 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 15 Apr 19:03:02.345 * Ready to accept connections +6:C 15 Apr 19:05:00.514 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 15 Apr 19:05:00.515 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 15 Apr 19:05:00.516 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 15 Apr 19:05:00.518 * Running mode=standalone, port=6379. +6:M 15 Apr 19:05:00.519 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 15 Apr 19:05:00.519 # Server initialized +6:M 15 Apr 19:05:00.520 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 15 Apr 19:05:00.521 * Ready to accept connections +6:signal-handler (1586977500) Received SIGINT scheduling shutdown... +6:C 15 Apr 19:05:13.088 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 15 Apr 19:05:13.091 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 15 Apr 19:05:13.092 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 15 Apr 19:05:13.096 * Running mode=standalone, port=6379. +6:M 15 Apr 19:05:13.099 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 15 Apr 19:05:13.100 # Server initialized +6:M 15 Apr 19:05:13.103 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 15 Apr 19:05:13.105 * Ready to accept connections +6:C 15 Apr 19:05:48.374 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 15 Apr 19:05:48.375 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 15 Apr 19:05:48.376 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 15 Apr 19:05:48.378 * Running mode=standalone, port=6379. +6:M 15 Apr 19:05:48.381 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 15 Apr 19:05:48.382 # Server initialized +6:M 15 Apr 19:05:48.383 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 15 Apr 19:05:48.385 * Ready to accept connections +6:C 15 Apr 19:05:54.072 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 15 Apr 19:05:54.073 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 15 Apr 19:05:54.073 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 15 Apr 19:05:54.075 * Running mode=standalone, port=6379. +6:M 15 Apr 19:05:54.076 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 15 Apr 19:05:54.076 # Server initialized +6:M 15 Apr 19:05:54.077 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 15 Apr 19:05:54.078 * Ready to accept connections +7:C 15 Apr 19:13:12.663 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 15 Apr 19:13:12.664 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 15 Apr 19:13:12.665 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 15 Apr 19:13:12.669 * Running mode=standalone, port=6379. +7:M 15 Apr 19:13:12.670 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 15 Apr 19:13:12.670 # Server initialized +7:M 15 Apr 19:13:12.671 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 15 Apr 19:13:12.674 * Ready to accept connections +6:C 15 Apr 19:13:23.023 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 15 Apr 19:13:23.026 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 15 Apr 19:13:23.028 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 15 Apr 19:13:23.036 * Running mode=standalone, port=6379. +6:M 15 Apr 19:13:23.036 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 15 Apr 19:13:23.037 # Server initialized +6:M 15 Apr 19:13:23.038 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 15 Apr 19:13:23.039 * Ready to accept connections +6:C 15 Apr 19:13:31.273 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 15 Apr 19:13:31.274 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 15 Apr 19:13:31.275 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 15 Apr 19:13:31.278 * Running mode=standalone, port=6379. +6:M 15 Apr 19:13:31.279 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 15 Apr 19:13:31.279 # Server initialized +6:M 15 Apr 19:13:31.281 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 15 Apr 19:13:31.283 * Ready to accept connections +7:C 15 Apr 19:26:10.966 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 15 Apr 19:26:10.967 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 15 Apr 19:26:10.968 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 15 Apr 19:26:10.973 * Running mode=standalone, port=6379. +7:M 15 Apr 19:26:10.973 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 15 Apr 19:26:10.974 # Server initialized +7:M 15 Apr 19:26:10.974 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 15 Apr 19:26:10.975 * Ready to accept connections +7:C 15 Apr 20:17:13.614 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 15 Apr 20:17:13.616 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 15 Apr 20:17:13.616 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 15 Apr 20:17:13.620 * Running mode=standalone, port=6379. +7:M 15 Apr 20:17:13.620 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 15 Apr 20:17:13.620 # Server initialized +7:M 15 Apr 20:17:13.621 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 15 Apr 20:17:13.646 * Ready to accept connections +7:signal-handler (1586981836) Received SIGINT scheduling shutdown... +6:C 16 Apr 10:52:47.950 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 16 Apr 10:52:47.952 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 16 Apr 10:52:47.953 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 16 Apr 10:52:47.955 * Running mode=standalone, port=6379. +6:M 16 Apr 10:52:47.955 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 16 Apr 10:52:47.956 # Server initialized +6:M 16 Apr 10:52:47.956 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 16 Apr 10:52:47.957 * Ready to accept connections +7:C 16 Apr 10:53:06.464 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 16 Apr 10:53:06.465 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 16 Apr 10:53:06.465 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 16 Apr 10:53:06.467 * Running mode=standalone, port=6379. +7:M 16 Apr 10:53:06.467 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 16 Apr 10:53:06.468 # Server initialized +7:M 16 Apr 10:53:06.468 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 16 Apr 10:53:06.469 * Ready to accept connections +7:C 16 Apr 10:53:12.062 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 16 Apr 10:53:12.063 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 16 Apr 10:53:12.064 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 16 Apr 10:53:12.067 * Running mode=standalone, port=6379. +7:M 16 Apr 10:53:12.067 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 16 Apr 10:53:12.068 # Server initialized +7:M 16 Apr 10:53:12.069 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 16 Apr 10:53:12.070 * Ready to accept connections +7:signal-handler (1587034393) Received SIGINT scheduling shutdown... +7:M 16 Apr 10:53:13.378 # User requested shutdown... +7:M 16 Apr 10:53:13.381 * Saving the final RDB snapshot before exiting. +7:M 16 Apr 10:53:13.385 * DB saved on disk +7:M 16 Apr 10:53:13.386 # Redis is now ready to exit, bye bye... +7:C 16 Apr 10:53:52.593 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 16 Apr 10:53:52.594 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 16 Apr 10:53:52.595 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 16 Apr 10:53:52.600 * Running mode=standalone, port=6379. +7:M 16 Apr 10:53:52.601 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 16 Apr 10:53:52.602 # Server initialized +7:M 16 Apr 10:53:52.603 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 16 Apr 10:53:52.607 * DB loaded from disk: 0.003 seconds +7:M 16 Apr 10:53:52.607 * Ready to accept connections +7:C 16 Apr 10:54:20.826 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 16 Apr 10:54:20.828 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 16 Apr 10:54:20.828 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 16 Apr 10:54:20.832 * Running mode=standalone, port=6379. +7:M 16 Apr 10:54:20.833 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 16 Apr 10:54:20.833 # Server initialized +7:M 16 Apr 10:54:20.834 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 16 Apr 10:54:20.840 * DB loaded from disk: 0.004 seconds +7:M 16 Apr 10:54:20.841 * Ready to accept connections +7:C 16 Apr 10:55:21.664 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 16 Apr 10:55:21.669 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 16 Apr 10:55:21.669 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 16 Apr 10:55:21.672 * Running mode=standalone, port=6379. +7:M 16 Apr 10:55:21.672 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 16 Apr 10:55:21.673 # Server initialized +7:M 16 Apr 10:55:21.674 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 16 Apr 10:55:21.677 * DB loaded from disk: 0.003 seconds +7:M 16 Apr 10:55:21.678 * Ready to accept connections +7:signal-handler (1587034528) Received SIGINT scheduling shutdown... +7:M 16 Apr 10:55:28.206 # User requested shutdown... +7:M 16 Apr 10:55:28.207 * Saving the final RDB snapshot before exiting. +7:M 16 Apr 10:55:28.214 * DB saved on disk +7:M 16 Apr 10:55:28.215 # Redis is now ready to exit, bye bye... +6:C 16 Apr 10:56:46.713 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 16 Apr 10:56:46.714 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 16 Apr 10:56:46.714 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 16 Apr 10:56:46.716 * Running mode=standalone, port=6379. +6:M 16 Apr 10:56:46.716 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 16 Apr 10:56:46.717 # Server initialized +6:M 16 Apr 10:56:46.717 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 16 Apr 10:56:46.722 * DB loaded from disk: 0.004 seconds +6:M 16 Apr 10:56:46.723 * Ready to accept connections +7:C 16 Apr 10:56:52.221 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 16 Apr 10:56:52.223 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 16 Apr 10:56:52.224 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 16 Apr 10:56:52.229 * Running mode=standalone, port=6379. +7:M 16 Apr 10:56:52.230 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 16 Apr 10:56:52.231 # Server initialized +7:M 16 Apr 10:56:52.232 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 16 Apr 10:56:52.237 * DB loaded from disk: 0.004 seconds +7:M 16 Apr 10:56:52.237 * Ready to accept connections +7:signal-handler (1587034616) Received SIGINT scheduling shutdown... +7:M 16 Apr 10:56:56.558 # User requested shutdown... +7:M 16 Apr 10:56:56.558 * Saving the final RDB snapshot before exiting. +6:C 16 Apr 10:58:11.476 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 16 Apr 10:58:11.479 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 16 Apr 10:58:11.479 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 16 Apr 10:58:11.482 * Running mode=standalone, port=6379. +6:M 16 Apr 10:58:11.483 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 16 Apr 10:58:11.483 # Server initialized +6:M 16 Apr 10:58:11.484 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 16 Apr 10:58:11.489 * DB loaded from disk: 0.004 seconds +6:M 16 Apr 10:58:11.489 * Ready to accept connections +6:C 16 Apr 10:58:23.511 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 16 Apr 10:58:23.514 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 16 Apr 10:58:23.516 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 16 Apr 10:58:23.519 * Running mode=standalone, port=6379. +6:M 16 Apr 10:58:23.520 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 16 Apr 10:58:23.521 # Server initialized +6:M 16 Apr 10:58:23.521 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 16 Apr 10:58:23.526 * DB loaded from disk: 0.004 seconds +6:M 16 Apr 10:58:23.527 * Ready to accept connections +6:signal-handler (1587034704) Received SIGINT scheduling shutdown... +7:C 16 Apr 10:59:18.046 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 16 Apr 10:59:18.048 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 16 Apr 10:59:18.049 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 16 Apr 10:59:18.053 * Running mode=standalone, port=6379. +7:M 16 Apr 10:59:18.053 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 16 Apr 10:59:18.054 # Server initialized +7:M 16 Apr 10:59:18.055 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 16 Apr 10:59:18.059 * DB loaded from disk: 0.003 seconds +7:M 16 Apr 10:59:18.060 * Ready to accept connections +7:signal-handler (1587034759) Received SIGINT scheduling shutdown... +7:M 16 Apr 10:59:19.068 # User requested shutdown... +7:M 16 Apr 10:59:19.068 * Saving the final RDB snapshot before exiting. +7:M 16 Apr 10:59:19.072 * DB saved on disk +7:M 16 Apr 10:59:19.073 # Redis is now ready to exit, bye bye... +6:C 16 Apr 10:59:20.667 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 16 Apr 10:59:20.670 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 16 Apr 10:59:20.670 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 16 Apr 10:59:20.673 * Running mode=standalone, port=6379. +6:M 16 Apr 10:59:20.673 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 16 Apr 10:59:20.674 # Server initialized +6:M 16 Apr 10:59:20.675 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 16 Apr 10:59:20.681 * DB loaded from disk: 0.005 seconds +6:M 16 Apr 10:59:20.681 * Ready to accept connections +6:signal-handler (1587034762) Received SIGINT scheduling shutdown... +7:C 16 Apr 11:12:20.528 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 16 Apr 11:12:20.530 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 16 Apr 11:12:20.531 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 16 Apr 11:12:20.535 * Running mode=standalone, port=6379. +7:M 16 Apr 11:12:20.535 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 16 Apr 11:12:20.536 # Server initialized +7:M 16 Apr 11:12:20.537 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 16 Apr 11:12:20.542 * DB loaded from disk: 0.005 seconds +7:M 16 Apr 11:12:20.543 * Ready to accept connections +6:C 16 Apr 11:13:08.652 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 16 Apr 11:13:08.654 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 16 Apr 11:13:08.654 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 16 Apr 11:13:08.658 * Running mode=standalone, port=6379. +6:M 16 Apr 11:13:08.658 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 16 Apr 11:13:08.659 # Server initialized +6:M 16 Apr 11:13:08.659 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 16 Apr 11:13:08.664 * DB loaded from disk: 0.004 seconds +6:M 16 Apr 11:13:08.665 * Ready to accept connections +6:signal-handler (1587035589) Received SIGINT scheduling shutdown... +6:C 16 Apr 11:13:59.781 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 16 Apr 11:13:59.783 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 16 Apr 11:13:59.783 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 16 Apr 11:13:59.785 * Running mode=standalone, port=6379. +6:M 16 Apr 11:13:59.785 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 16 Apr 11:13:59.786 # Server initialized +6:M 16 Apr 11:13:59.786 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 16 Apr 11:13:59.792 * DB loaded from disk: 0.005 seconds +6:M 16 Apr 11:13:59.792 * Ready to accept connections +6:C 17 Apr 05:35:13.925 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 17 Apr 05:35:13.927 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 17 Apr 05:35:13.927 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 17 Apr 05:35:13.930 * Running mode=standalone, port=6379. +6:M 17 Apr 05:35:13.930 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 17 Apr 05:35:13.938 # Server initialized +6:M 17 Apr 05:35:13.938 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 17 Apr 05:35:13.941 * DB loaded from disk: 0.003 seconds +6:M 17 Apr 05:35:13.942 * Ready to accept connections +6:signal-handler (1587101847) Received SIGINT scheduling shutdown... +6:M 17 Apr 05:37:28.017 # User requested shutdown... +6:M 17 Apr 05:37:27.985 * Saving the final RDB snapshot before exiting. +6:M 17 Apr 05:37:27.994 * DB saved on disk +6:M 17 Apr 05:37:27.996 # Redis is now ready to exit, bye bye... +8:C 17 Apr 05:37:53.734 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +8:C 17 Apr 05:37:53.741 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=8, just started +8:C 17 Apr 05:37:53.742 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +8:M 17 Apr 05:37:53.745 * Running mode=standalone, port=6379. +8:M 17 Apr 05:37:53.747 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +8:M 17 Apr 05:37:53.748 # Server initialized +8:M 17 Apr 05:37:53.748 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +8:M 17 Apr 05:37:53.752 * DB loaded from disk: 0.003 seconds +8:M 17 Apr 05:37:53.752 * Ready to accept connections +6:C 17 Apr 05:41:19.426 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 17 Apr 05:41:19.430 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 17 Apr 05:41:19.430 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 17 Apr 05:41:19.433 * Running mode=standalone, port=6379. +6:M 17 Apr 05:41:19.434 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 17 Apr 05:41:19.434 # Server initialized +6:M 17 Apr 05:41:19.434 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 17 Apr 05:41:19.437 * DB loaded from disk: 0.003 seconds +6:M 17 Apr 05:41:19.438 * Ready to accept connections +8:M 17 Apr 06:37:54.014 * 1 changes in 3600 seconds. Saving... +8:M 17 Apr 06:37:54.023 * Background saving started by pid 3780 +3780:C 17 Apr 06:37:54.032 * DB saved on disk +3780:C 17 Apr 06:37:54.033 * RDB: 0 MB of memory used by copy-on-write +8:M 17 Apr 06:37:54.127 * Background saving terminated with success +6:M 17 Apr 06:41:20.003 * 1 changes in 3600 seconds. Saving... +6:M 17 Apr 06:41:20.007 * Background saving started by pid 142 +142:C 17 Apr 06:41:20.011 * DB saved on disk +142:C 17 Apr 06:41:20.011 * RDB: 0 MB of memory used by copy-on-write +6:M 17 Apr 06:41:20.108 * Background saving terminated with success +6:M 17 Apr 07:41:21.028 * 1 changes in 3600 seconds. Saving... +6:M 17 Apr 07:41:21.033 * Background saving started by pid 330 +330:C 17 Apr 07:41:21.066 * DB saved on disk +330:C 17 Apr 07:41:21.068 * RDB: 0 MB of memory used by copy-on-write +6:M 17 Apr 07:41:21.135 * Background saving terminated with success +8:M 17 Apr 08:02:07.505 * 1 changes in 3600 seconds. Saving... +8:M 17 Apr 08:02:07.508 * Background saving started by pid 5688 +5688:C 17 Apr 08:02:07.515 * DB saved on disk +5688:C 17 Apr 08:02:07.516 * RDB: 0 MB of memory used by copy-on-write +8:M 17 Apr 08:02:07.609 * Background saving terminated with success +6:M 17 Apr 08:41:22.050 * 1 changes in 3600 seconds. Saving... +6:M 17 Apr 08:41:22.053 * Background saving started by pid 506 +506:C 17 Apr 08:41:22.126 * DB saved on disk +506:C 17 Apr 08:41:22.127 * RDB: 0 MB of memory used by copy-on-write +6:M 17 Apr 08:41:22.155 * Background saving terminated with success +6:M 17 Apr 10:47:17.229 * 1 changes in 3600 seconds. Saving... +6:M 17 Apr 10:47:17.235 * Background saving started by pid 531 +531:C 17 Apr 10:47:17.786 * DB saved on disk +531:C 17 Apr 10:47:17.787 * RDB: 0 MB of memory used by copy-on-write +6:M 17 Apr 10:47:17.841 * Background saving terminated with success +6:M 17 Apr 11:47:18.111 * 1 changes in 3600 seconds. Saving... +6:M 17 Apr 11:47:18.116 * Background saving started by pid 723 +723:C 17 Apr 11:47:18.128 * DB saved on disk +723:C 17 Apr 11:47:18.129 * RDB: 0 MB of memory used by copy-on-write +6:M 17 Apr 11:47:18.217 * Background saving terminated with success +6:M 17 Apr 13:02:07.317 * 1 changes in 3600 seconds. Saving... +6:M 17 Apr 13:02:07.320 * Background saving started by pid 899 +899:C 17 Apr 13:02:07.325 * DB saved on disk +899:C 17 Apr 13:02:07.326 * RDB: 0 MB of memory used by copy-on-write +6:M 17 Apr 13:02:07.421 * Background saving terminated with success +8:M 17 Apr 14:48:15.990 * 1 changes in 3600 seconds. Saving... +8:M 17 Apr 14:48:15.996 * Background saving started by pid 13542 +13542:C 17 Apr 14:48:16.009 * DB saved on disk +13542:C 17 Apr 14:48:16.010 * RDB: 0 MB of memory used by copy-on-write +8:M 17 Apr 14:48:16.098 * Background saving terminated with success +6:M 17 Apr 14:56:55.093 * 1 changes in 3600 seconds. Saving... +6:M 17 Apr 14:56:55.096 * Background saving started by pid 920 +920:C 17 Apr 14:56:55.107 * DB saved on disk +920:C 17 Apr 14:56:55.108 * RDB: 0 MB of memory used by copy-on-write +6:M 17 Apr 14:56:55.197 * Background saving terminated with success +8:M 17 Apr 16:24:30.097 * 1 changes in 3600 seconds. Saving... +8:M 17 Apr 16:24:30.101 * Background saving started by pid 16617 +16617:C 17 Apr 16:24:30.108 * DB saved on disk +16617:C 17 Apr 16:24:30.110 * RDB: 0 MB of memory used by copy-on-write +8:M 17 Apr 16:24:30.202 * Background saving terminated with success +6:C 19 Apr 11:51:35.984 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 19 Apr 11:51:35.986 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 19 Apr 11:51:35.986 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 19 Apr 11:51:35.989 * Running mode=standalone, port=6379. +6:M 19 Apr 11:51:35.989 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 19 Apr 11:51:35.989 # Server initialized +6:M 19 Apr 11:51:35.989 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 19 Apr 11:51:35.992 * DB loaded from disk: 0.002 seconds +6:M 19 Apr 11:51:35.992 * Ready to accept connections +7:C 19 Apr 11:54:14.487 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 19 Apr 11:54:14.488 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 19 Apr 11:54:14.490 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 19 Apr 11:54:14.493 * Running mode=standalone, port=6379. +7:M 19 Apr 11:54:14.494 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 19 Apr 11:54:14.495 # Server initialized +7:M 19 Apr 11:54:14.495 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 19 Apr 11:54:14.497 * DB loaded from disk: 0.002 seconds +7:M 19 Apr 11:54:14.498 * Ready to accept connections +6:C 19 Apr 12:10:05.357 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 19 Apr 12:10:05.359 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 19 Apr 12:10:05.359 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 19 Apr 12:10:05.363 * Running mode=standalone, port=6379. +6:M 19 Apr 12:10:05.363 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 19 Apr 12:10:05.364 # Server initialized +6:M 19 Apr 12:10:05.364 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 19 Apr 12:10:05.367 * DB loaded from disk: 0.002 seconds +6:M 19 Apr 12:10:05.367 * Ready to accept connections +6:C 19 Apr 12:10:24.430 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 19 Apr 12:10:24.437 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 19 Apr 12:10:24.439 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 19 Apr 12:10:24.442 * Running mode=standalone, port=6379. +6:M 19 Apr 12:10:24.443 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 19 Apr 12:10:24.443 # Server initialized +6:M 19 Apr 12:10:24.444 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 19 Apr 12:10:24.447 * DB loaded from disk: 0.003 seconds +6:M 19 Apr 12:10:24.447 * Ready to accept connections +6:C 19 Apr 12:14:58.137 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 19 Apr 12:14:58.139 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 19 Apr 12:14:58.142 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 19 Apr 12:14:58.146 * Running mode=standalone, port=6379. +6:M 19 Apr 12:14:58.147 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 19 Apr 12:14:58.147 # Server initialized +6:M 19 Apr 12:14:58.147 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 19 Apr 12:14:58.150 * DB loaded from disk: 0.003 seconds +6:M 19 Apr 12:14:58.151 * Ready to accept connections +6:C 19 Apr 12:19:58.461 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 19 Apr 12:19:58.463 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 19 Apr 12:19:58.463 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 19 Apr 12:19:58.466 * Running mode=standalone, port=6379. +6:M 19 Apr 12:19:58.466 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 19 Apr 12:19:58.467 # Server initialized +6:M 19 Apr 12:19:58.467 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 19 Apr 12:19:58.471 * DB loaded from disk: 0.003 seconds +6:M 19 Apr 12:19:58.471 * Ready to accept connections +6:M 19 Apr 12:24:59.091 * 100 changes in 300 seconds. Saving... +6:M 19 Apr 12:24:59.095 * Background saving started by pid 754 +754:C 19 Apr 12:24:59.102 * DB saved on disk +754:C 19 Apr 12:24:59.102 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 12:24:59.196 * Background saving terminated with success +6:M 19 Apr 12:51:36.058 * 1 changes in 3600 seconds. Saving... +6:M 19 Apr 12:51:36.068 * Background saving started by pid 698 +698:C 19 Apr 12:51:36.077 * DB saved on disk +698:C 19 Apr 12:51:36.078 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 12:51:36.169 * Background saving terminated with success +6:M 19 Apr 13:51:37.057 * 1 changes in 3600 seconds. Saving... +6:M 19 Apr 13:51:37.061 * Background saving started by pid 1124 +1124:C 19 Apr 13:51:37.066 * DB saved on disk +1124:C 19 Apr 13:51:37.067 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 13:51:37.162 * Background saving terminated with success +6:M 19 Apr 14:51:38.008 * 1 changes in 3600 seconds. Saving... +6:M 19 Apr 14:51:38.010 * Background saving started by pid 1544 +1544:C 19 Apr 14:51:38.015 * DB saved on disk +1544:C 19 Apr 14:51:38.015 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 14:51:38.111 * Background saving terminated with success +6:C 19 Apr 15:21:58.095 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 19 Apr 15:21:58.096 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 19 Apr 15:21:58.096 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 19 Apr 15:21:58.100 * Running mode=standalone, port=6379. +6:M 19 Apr 15:21:58.100 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 19 Apr 15:21:58.101 # Server initialized +6:M 19 Apr 15:21:58.101 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 19 Apr 15:21:58.103 * DB loaded from disk: 0.002 seconds +6:M 19 Apr 15:21:58.104 * Ready to accept connections +6:C 19 Apr 15:22:00.562 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 19 Apr 15:22:00.565 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 19 Apr 15:22:00.565 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 19 Apr 15:22:00.571 * Running mode=standalone, port=6379. +6:M 19 Apr 15:22:00.571 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 19 Apr 15:22:00.572 # Server initialized +6:M 19 Apr 15:22:00.572 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 19 Apr 15:22:00.575 * DB loaded from disk: 0.002 seconds +6:M 19 Apr 15:22:00.575 * Ready to accept connections +6:C 19 Apr 15:22:03.248 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 19 Apr 15:22:03.258 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 19 Apr 15:22:03.259 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 19 Apr 15:22:03.262 * Running mode=standalone, port=6379. +6:M 19 Apr 15:22:03.262 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 19 Apr 15:22:03.262 # Server initialized +6:M 19 Apr 15:22:03.263 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 19 Apr 15:22:03.266 * DB loaded from disk: 0.003 seconds +6:M 19 Apr 15:22:03.267 * Ready to accept connections +6:C 19 Apr 15:22:09.516 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 19 Apr 15:22:09.519 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 19 Apr 15:22:09.520 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 19 Apr 15:22:09.527 * Running mode=standalone, port=6379. +6:M 19 Apr 15:22:09.528 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 19 Apr 15:22:09.528 # Server initialized +6:M 19 Apr 15:22:09.529 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 19 Apr 15:22:09.531 * DB loaded from disk: 0.003 seconds +6:M 19 Apr 15:22:09.532 * Ready to accept connections +6:C 19 Apr 15:22:13.245 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 19 Apr 15:22:13.246 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 19 Apr 15:22:13.247 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 19 Apr 15:22:13.250 * Running mode=standalone, port=6379. +6:M 19 Apr 15:22:13.251 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 19 Apr 15:22:13.251 # Server initialized +6:M 19 Apr 15:22:13.253 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 19 Apr 15:22:13.258 * DB loaded from disk: 0.004 seconds +6:M 19 Apr 15:22:13.258 * Ready to accept connections +6:M 19 Apr 15:26:59.100 * 100 changes in 300 seconds. Saving... +6:M 19 Apr 15:26:59.102 * Background saving started by pid 754 +754:C 19 Apr 15:26:59.107 * DB saved on disk +754:C 19 Apr 15:26:59.107 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 15:26:59.203 * Background saving terminated with success +6:M 19 Apr 15:51:39.040 * 1 changes in 3600 seconds. Saving... +6:M 19 Apr 15:51:39.042 * Background saving started by pid 2392 +2392:C 19 Apr 15:51:39.046 * DB saved on disk +2392:C 19 Apr 15:51:39.046 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 15:51:39.143 * Background saving terminated with success +6:M 19 Apr 16:22:01.075 * 1 changes in 3600 seconds. Saving... +6:M 19 Apr 16:22:01.091 * Background saving started by pid 260 +260:C 19 Apr 16:22:01.107 * DB saved on disk +260:C 19 Apr 16:22:01.109 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 16:22:01.195 * Background saving terminated with success +6:M 19 Apr 16:22:04.039 * 1 changes in 3600 seconds. Saving... +6:M 19 Apr 16:22:04.044 * Background saving started by pid 231 +231:C 19 Apr 16:22:04.049 * DB saved on disk +231:C 19 Apr 16:22:04.050 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 16:22:04.146 * Background saving terminated with success +6:M 19 Apr 16:22:10.033 * 1 changes in 3600 seconds. Saving... +320:C 19 Apr 16:22:10.046 * DB saved on disk +320:C 19 Apr 16:22:10.048 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 16:22:10.040 * Background saving started by pid 320 +6:M 19 Apr 16:22:10.158 * Background saving terminated with success +6:M 19 Apr 16:22:14.071 * 1 changes in 3600 seconds. Saving... +6:M 19 Apr 16:22:14.076 * Background saving started by pid 261 +261:C 19 Apr 16:22:14.086 * DB saved on disk +261:C 19 Apr 16:22:14.086 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 16:22:14.178 * Background saving terminated with success +6:M 19 Apr 16:27:00.084 * 1 changes in 3600 seconds. Saving... +6:M 19 Apr 16:27:00.090 * Background saving started by pid 1771 +1771:C 19 Apr 16:27:00.134 * DB saved on disk +1771:C 19 Apr 16:27:00.135 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 16:27:00.194 * Background saving terminated with success +6:M 19 Apr 16:51:40.100 * 1 changes in 3600 seconds. Saving... +6:M 19 Apr 16:51:40.104 * Background saving started by pid 2814 +2814:C 19 Apr 16:51:40.111 * DB saved on disk +2814:C 19 Apr 16:51:40.113 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 16:51:40.213 * Background saving terminated with success +6:M 19 Apr 17:22:02.004 * 1 changes in 3600 seconds. Saving... +6:M 19 Apr 17:22:02.010 * Background saving started by pid 515 +515:C 19 Apr 17:22:02.026 * DB saved on disk +515:C 19 Apr 17:22:02.027 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 17:22:02.114 * Background saving terminated with success +6:M 19 Apr 17:22:11.040 * 1 changes in 3600 seconds. Saving... +6:M 19 Apr 17:22:11.045 * Background saving started by pid 561 +561:C 19 Apr 17:22:11.051 * DB saved on disk +561:C 19 Apr 17:22:11.052 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 17:22:11.146 * Background saving terminated with success +6:M 19 Apr 17:27:01.067 * 1 changes in 3600 seconds. Saving... +6:M 19 Apr 17:27:01.070 * Background saving started by pid 3549 +3549:C 19 Apr 17:27:01.077 * DB saved on disk +3549:C 19 Apr 17:27:01.078 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 17:27:01.171 * Background saving terminated with success +6:M 19 Apr 17:44:57.977 * 100 changes in 300 seconds. Saving... +6:M 19 Apr 17:44:57.992 * Background saving started by pid 33609 +33609:C 19 Apr 17:44:57.998 * DB saved on disk +33609:C 19 Apr 17:44:57.999 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 17:44:58.093 * Background saving terminated with success +6:M 19 Apr 18:21:34.737 * 1 changes in 3600 seconds. Saving... +6:M 19 Apr 18:21:34.751 * Background saving started by pid 251 +251:C 19 Apr 18:21:34.757 * DB saved on disk +251:C 19 Apr 18:21:34.758 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 18:21:34.852 * Background saving terminated with success +6:M 19 Apr 18:22:03.051 * 1 changes in 3600 seconds. Saving... +6:M 19 Apr 18:22:03.053 * Background saving started by pid 758 +758:C 19 Apr 18:22:03.060 * DB saved on disk +758:C 19 Apr 18:22:03.061 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 18:22:03.158 * Background saving terminated with success +6:M 19 Apr 18:22:12.099 * 1 changes in 3600 seconds. Saving... +6:M 19 Apr 18:22:12.102 * Background saving started by pid 608 +608:C 19 Apr 18:22:12.107 * DB saved on disk +608:C 19 Apr 18:22:12.108 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 18:22:12.203 * Background saving terminated with success +6:M 19 Apr 18:27:02.095 * 1 changes in 3600 seconds. Saving... +6:M 19 Apr 18:27:02.101 * Background saving started by pid 4610 +4610:C 19 Apr 18:27:02.112 * DB saved on disk +4610:C 19 Apr 18:27:02.113 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 18:27:02.202 * Background saving terminated with success +6:M 19 Apr 18:44:59.082 * 1 changes in 3600 seconds. Saving... +6:M 19 Apr 18:44:59.106 * Background saving started by pid 57876 +57876:C 19 Apr 18:44:59.128 * DB saved on disk +57876:C 19 Apr 18:44:59.129 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 18:44:59.210 * Background saving terminated with success +6:M 19 Apr 19:00:29.483 * 1 changes in 3600 seconds. Saving... +6:M 19 Apr 19:00:29.486 * Background saving started by pid 280 +280:C 19 Apr 19:00:29.493 * DB saved on disk +280:C 19 Apr 19:00:29.494 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 19:00:29.587 * Background saving terminated with success +6:M 19 Apr 19:12:48.321 * 100 changes in 300 seconds. Saving... +6:M 19 Apr 19:12:48.335 * Background saving started by pid 5300 +5300:C 19 Apr 19:12:48.365 * DB saved on disk +5300:C 19 Apr 19:12:48.366 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 19:12:48.437 * Background saving terminated with success +6:M 19 Apr 19:21:35.019 * 1 changes in 3600 seconds. Saving... +6:M 19 Apr 19:21:35.023 * Background saving started by pid 391 +391:C 19 Apr 19:21:35.034 * DB saved on disk +391:C 19 Apr 19:21:35.035 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 19:21:35.126 * Background saving terminated with success +6:M 19 Apr 19:22:13.036 * 1 changes in 3600 seconds. Saving... +6:M 19 Apr 19:22:13.041 * Background saving started by pid 845 +845:C 19 Apr 19:22:13.062 * DB saved on disk +845:C 19 Apr 19:22:13.063 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 19:22:13.145 * Background saving terminated with success +6:M 19 Apr 19:29:00.895 * 100 changes in 300 seconds. Saving... +6:M 19 Apr 19:29:00.899 * Background saving started by pid 6550 +6550:C 19 Apr 19:29:00.910 * DB saved on disk +6550:C 19 Apr 19:29:00.910 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 19:29:01.001 * Background saving terminated with success +6:M 19 Apr 19:34:02.099 * 100 changes in 300 seconds. Saving... +6:M 19 Apr 19:34:02.111 * Background saving started by pid 18574 +18574:C 19 Apr 19:34:02.119 * DB saved on disk +18574:C 19 Apr 19:34:02.122 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 19:34:02.217 * Background saving terminated with success +6:M 19 Apr 20:02:33.058 * 1 changes in 3600 seconds. Saving... +6:M 19 Apr 20:02:33.082 * Background saving started by pid 533 +533:C 19 Apr 20:02:33.124 * DB saved on disk +533:C 19 Apr 20:02:33.126 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 20:02:33.206 * Background saving terminated with success +7:C 19 Apr 20:16:55.998 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 19 Apr 20:16:56.002 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 19 Apr 20:16:56.003 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 19 Apr 20:16:56.010 * Running mode=standalone, port=6379. +7:M 19 Apr 20:16:56.012 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 19 Apr 20:16:56.013 # Server initialized +7:M 19 Apr 20:16:56.016 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 19 Apr 20:16:56.031 * DB loaded from disk: 0.014 seconds +7:M 19 Apr 20:16:56.032 * Ready to accept connections +7:C 19 Apr 20:18:16.615 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 19 Apr 20:18:16.616 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 19 Apr 20:18:16.617 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 19 Apr 20:18:16.632 * Running mode=standalone, port=6379. +7:M 19 Apr 20:18:16.640 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 19 Apr 20:18:16.643 # Server initialized +7:M 19 Apr 20:18:16.644 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 19 Apr 20:18:16.654 * DB loaded from disk: 0.010 seconds +7:M 19 Apr 20:18:16.654 * Ready to accept connections +6:C 19 Apr 20:19:50.150 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 19 Apr 20:19:50.153 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 19 Apr 20:19:50.153 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 19 Apr 20:19:50.164 * Running mode=standalone, port=6379. +6:M 19 Apr 20:19:50.164 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 19 Apr 20:19:50.165 # Server initialized +6:M 19 Apr 20:19:50.165 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 19 Apr 20:19:50.173 * DB loaded from disk: 0.007 seconds +6:M 19 Apr 20:19:50.174 * Ready to accept connections +6:M 19 Apr 20:21:36.094 * 1 changes in 3600 seconds. Saving... +6:M 19 Apr 20:21:36.105 * Background saving started by pid 723 +723:C 19 Apr 20:21:36.116 * DB saved on disk +723:C 19 Apr 20:21:36.117 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 20:21:36.207 * Background saving terminated with success +6:M 19 Apr 20:22:14.033 * 1 changes in 3600 seconds. Saving... +6:M 19 Apr 20:22:14.038 * Background saving started by pid 890 +890:C 19 Apr 20:22:14.046 * DB saved on disk +890:C 19 Apr 20:22:14.046 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 20:22:14.140 * Background saving terminated with success +6:M 19 Apr 20:35:08.452 * 1 changes in 3600 seconds. Saving... +6:M 19 Apr 20:35:08.458 * Background saving started by pid 791 +791:C 19 Apr 20:35:08.468 * DB saved on disk +791:C 19 Apr 20:35:08.468 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 20:35:08.559 * Background saving terminated with success +6:M 19 Apr 21:02:34.097 * 1 changes in 3600 seconds. Saving... +6:M 19 Apr 21:02:34.104 * Background saving started by pid 782 +782:C 19 Apr 21:02:34.112 * DB saved on disk +782:C 19 Apr 21:02:34.113 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 21:02:34.209 * Background saving terminated with success +7:M 19 Apr 21:16:57.045 * 1 changes in 3600 seconds. Saving... +7:M 19 Apr 21:16:57.054 * Background saving started by pid 245 +245:C 19 Apr 21:16:57.061 * DB saved on disk +245:C 19 Apr 21:16:57.062 * RDB: 0 MB of memory used by copy-on-write +7:M 19 Apr 21:16:57.170 * Background saving terminated with success +7:M 19 Apr 21:18:17.091 * 1 changes in 3600 seconds. Saving... +7:M 19 Apr 21:18:17.099 * Background saving started by pid 252 +252:C 19 Apr 21:18:17.114 * DB saved on disk +252:C 19 Apr 21:18:17.115 * RDB: 0 MB of memory used by copy-on-write +7:M 19 Apr 21:18:17.201 * Background saving terminated with success +6:M 19 Apr 21:19:51.014 * 1 changes in 3600 seconds. Saving... +6:M 19 Apr 21:19:51.019 * Background saving started by pid 314 +314:C 19 Apr 21:19:51.031 * DB saved on disk +314:C 19 Apr 21:19:51.032 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 21:19:51.123 * Background saving terminated with success +6:M 19 Apr 21:21:37.064 * 1 changes in 3600 seconds. Saving... +6:M 19 Apr 21:21:37.067 * Background saving started by pid 777 +777:C 19 Apr 21:21:37.081 * DB saved on disk +777:C 19 Apr 21:21:37.083 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 21:21:37.168 * Background saving terminated with success +6:M 19 Apr 21:35:09.031 * 1 changes in 3600 seconds. Saving... +6:M 19 Apr 21:35:09.035 * Background saving started by pid 1034 +1034:C 19 Apr 21:35:09.044 * DB saved on disk +1034:C 19 Apr 21:35:09.045 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 21:35:09.137 * Background saving terminated with success +6:M 19 Apr 21:37:51.059 * 1 changes in 3600 seconds. Saving... +6:M 19 Apr 21:37:51.063 * Background saving started by pid 901 +901:C 19 Apr 21:37:51.072 * DB saved on disk +901:C 19 Apr 21:37:51.073 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 21:37:51.164 * Background saving terminated with success +6:M 19 Apr 22:02:35.083 * 1 changes in 3600 seconds. Saving... +6:M 19 Apr 22:02:35.089 * Background saving started by pid 1029 +1029:C 19 Apr 22:02:35.098 * DB saved on disk +1029:C 19 Apr 22:02:35.098 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 22:02:35.191 * Background saving terminated with success +7:M 19 Apr 22:16:58.017 * 1 changes in 3600 seconds. Saving... +7:M 19 Apr 22:16:58.021 * Background saving started by pid 263 +263:C 19 Apr 22:16:58.051 * DB saved on disk +263:C 19 Apr 22:16:58.052 * RDB: 0 MB of memory used by copy-on-write +7:M 19 Apr 22:16:58.126 * Background saving terminated with success +7:M 19 Apr 22:18:18.030 * 1 changes in 3600 seconds. Saving... +7:M 19 Apr 22:18:18.036 * Background saving started by pid 309 +309:C 19 Apr 22:18:18.072 * DB saved on disk +309:C 19 Apr 22:18:18.073 * RDB: 0 MB of memory used by copy-on-write +7:M 19 Apr 22:18:18.146 * Background saving terminated with success +6:M 19 Apr 22:19:52.024 * 1 changes in 3600 seconds. Saving... +6:M 19 Apr 22:19:52.028 * Background saving started by pid 771 +771:C 19 Apr 22:19:52.045 * DB saved on disk +771:C 19 Apr 22:19:52.046 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 22:19:52.136 * Background saving terminated with success +6:M 19 Apr 22:24:36.187 * 1 changes in 3600 seconds. Saving... +6:M 19 Apr 22:24:36.190 * Background saving started by pid 969 +969:C 19 Apr 22:24:36.203 * DB saved on disk +969:C 19 Apr 22:24:36.204 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 22:24:36.291 * Background saving terminated with success +6:M 19 Apr 22:37:52.099 * 1 changes in 3600 seconds. Saving... +6:M 19 Apr 22:37:52.104 * Background saving started by pid 1168 +1168:C 19 Apr 22:37:52.114 * DB saved on disk +1168:C 19 Apr 22:37:52.115 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 22:37:52.206 * Background saving terminated with success +6:M 19 Apr 23:02:36.029 * 1 changes in 3600 seconds. Saving... +6:M 19 Apr 23:02:36.033 * Background saving started by pid 1098 +1098:C 19 Apr 23:02:36.045 * DB saved on disk +1098:C 19 Apr 23:02:36.047 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 23:02:36.135 * Background saving terminated with success +7:M 19 Apr 23:16:59.023 * 1 changes in 3600 seconds. Saving... +7:M 19 Apr 23:16:59.028 * Background saving started by pid 474 +474:C 19 Apr 23:16:59.038 * DB saved on disk +474:C 19 Apr 23:16:59.039 * RDB: 0 MB of memory used by copy-on-write +7:M 19 Apr 23:16:59.129 * Background saving terminated with success +7:M 19 Apr 23:18:19.034 * 1 changes in 3600 seconds. Saving... +7:M 19 Apr 23:18:19.037 * Background saving started by pid 622 +622:C 19 Apr 23:18:19.043 * DB saved on disk +622:C 19 Apr 23:18:19.043 * RDB: 0 MB of memory used by copy-on-write +7:M 19 Apr 23:18:19.139 * Background saving terminated with success +6:M 19 Apr 23:24:37.034 * 1 changes in 3600 seconds. Saving... +6:M 19 Apr 23:24:37.040 * Background saving started by pid 1049 +1049:C 19 Apr 23:24:37.048 * DB saved on disk +1049:C 19 Apr 23:24:37.049 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 23:24:37.142 * Background saving terminated with success +6:M 19 Apr 23:38:28.845 * 1 changes in 3600 seconds. Saving... +6:M 19 Apr 23:38:28.849 * Background saving started by pid 787 +787:C 19 Apr 23:38:28.858 * DB saved on disk +787:C 19 Apr 23:38:28.858 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 23:38:28.951 * Background saving terminated with success +6:M 19 Apr 23:46:17.725 * 1 changes in 3600 seconds. Saving... +6:M 19 Apr 23:46:17.728 * Background saving started by pid 1059 +1059:C 19 Apr 23:46:17.737 * DB saved on disk +1059:C 19 Apr 23:46:17.740 * RDB: 0 MB of memory used by copy-on-write +6:M 19 Apr 23:46:17.829 * Background saving terminated with success +6:M 20 Apr 00:02:37.073 * 1 changes in 3600 seconds. Saving... +6:M 20 Apr 00:02:37.076 * Background saving started by pid 1360 +1360:C 20 Apr 00:02:37.086 * DB saved on disk +1360:C 20 Apr 00:02:37.087 * RDB: 0 MB of memory used by copy-on-write +6:M 20 Apr 00:02:37.178 * Background saving terminated with success +6:M 20 Apr 00:15:27.545 * 1 changes in 3600 seconds. Saving... +6:M 20 Apr 00:15:27.547 * Background saving started by pid 1185 +1185:C 20 Apr 00:15:27.556 * DB saved on disk +1185:C 20 Apr 00:15:27.557 * RDB: 0 MB of memory used by copy-on-write +6:M 20 Apr 00:15:27.653 * Background saving terminated with success +7:M 20 Apr 00:17:00.060 * 1 changes in 3600 seconds. Saving... +7:M 20 Apr 00:17:00.062 * Background saving started by pid 498 +498:C 20 Apr 00:17:00.070 * DB saved on disk +498:C 20 Apr 00:17:00.071 * RDB: 0 MB of memory used by copy-on-write +7:M 20 Apr 00:17:00.163 * Background saving terminated with success +7:M 20 Apr 00:18:20.067 * 1 changes in 3600 seconds. Saving... +7:M 20 Apr 00:18:20.069 * Background saving started by pid 657 +657:C 20 Apr 00:18:20.074 * DB saved on disk +657:C 20 Apr 00:18:20.078 * RDB: 0 MB of memory used by copy-on-write +7:M 20 Apr 00:18:20.171 * Background saving terminated with success +6:M 20 Apr 00:38:29.068 * 1 changes in 3600 seconds. Saving... +6:M 20 Apr 00:38:29.071 * Background saving started by pid 1243 +1243:C 20 Apr 00:38:29.085 * DB saved on disk +1243:C 20 Apr 00:38:29.086 * RDB: 0 MB of memory used by copy-on-write +6:M 20 Apr 00:38:29.171 * Background saving terminated with success +6:M 20 Apr 00:46:18.049 * 1 changes in 3600 seconds. Saving... +6:M 20 Apr 00:46:18.052 * Background saving started by pid 1310 +1310:C 20 Apr 00:46:18.059 * DB saved on disk +1310:C 20 Apr 00:46:18.060 * RDB: 0 MB of memory used by copy-on-write +6:M 20 Apr 00:46:18.154 * Background saving terminated with success +6:M 20 Apr 01:02:38.021 * 1 changes in 3600 seconds. Saving... +6:M 20 Apr 01:02:38.023 * Background saving started by pid 1775 +1775:C 20 Apr 01:02:38.053 * DB saved on disk +1775:C 20 Apr 01:02:38.054 * RDB: 0 MB of memory used by copy-on-write +6:M 20 Apr 01:02:38.132 * Background saving terminated with success +6:M 20 Apr 01:15:28.074 * 1 changes in 3600 seconds. Saving... +6:M 20 Apr 01:15:28.078 * Background saving started by pid 1452 +1452:C 20 Apr 01:15:28.101 * DB saved on disk +1452:C 20 Apr 01:15:28.102 * RDB: 0 MB of memory used by copy-on-write +6:M 20 Apr 01:15:28.180 * Background saving terminated with success +7:M 20 Apr 01:17:01.070 * 1 changes in 3600 seconds. Saving... +7:M 20 Apr 01:17:01.083 * Background saving started by pid 518 +518:C 20 Apr 01:17:01.119 * DB saved on disk +518:C 20 Apr 01:17:01.120 * RDB: 0 MB of memory used by copy-on-write +7:M 20 Apr 01:17:01.184 * Background saving terminated with success +7:M 20 Apr 01:18:21.050 * 1 changes in 3600 seconds. Saving... +7:M 20 Apr 01:18:21.052 * Background saving started by pid 867 +867:C 20 Apr 01:18:21.058 * DB saved on disk +867:C 20 Apr 01:18:21.059 * RDB: 0 MB of memory used by copy-on-write +7:M 20 Apr 01:18:21.152 * Background saving terminated with success +6:M 20 Apr 01:38:30.099 * 1 changes in 3600 seconds. Saving... +6:M 20 Apr 01:38:30.101 * Background saving started by pid 1704 +1704:C 20 Apr 01:38:30.107 * DB saved on disk +1704:C 20 Apr 01:38:30.108 * RDB: 0 MB of memory used by copy-on-write +6:M 20 Apr 01:38:30.202 * Background saving terminated with success +7:M 20 Apr 02:17:02.017 * 1 changes in 3600 seconds. Saving... +7:M 20 Apr 02:17:02.019 * Background saving started by pid 769 +769:C 20 Apr 02:17:02.024 * DB saved on disk +769:C 20 Apr 02:17:02.025 * RDB: 0 MB of memory used by copy-on-write +7:M 20 Apr 02:17:02.120 * Background saving terminated with success +7:M 20 Apr 02:18:22.006 * 1 changes in 3600 seconds. Saving... +7:M 20 Apr 02:18:22.007 * Background saving started by pid 1027 +1027:C 20 Apr 02:18:22.013 * DB saved on disk +1027:C 20 Apr 02:18:22.014 * RDB: 0 MB of memory used by copy-on-write +7:M 20 Apr 02:18:22.108 * Background saving terminated with success +6:M 20 Apr 02:38:31.006 * 1 changes in 3600 seconds. Saving... +6:M 20 Apr 02:38:31.008 * Background saving started by pid 2168 +2168:C 20 Apr 02:38:31.012 * DB saved on disk +2168:C 20 Apr 02:38:31.013 * RDB: 0 MB of memory used by copy-on-write +6:M 20 Apr 02:38:31.109 * Background saving terminated with success +7:M 20 Apr 03:17:03.080 * 1 changes in 3600 seconds. Saving... +7:M 20 Apr 03:17:03.081 * Background saving started by pid 1029 +1029:C 20 Apr 03:17:03.086 * DB saved on disk +1029:C 20 Apr 03:17:03.087 * RDB: 0 MB of memory used by copy-on-write +7:M 20 Apr 03:17:03.182 * Background saving terminated with success +7:M 20 Apr 03:18:23.046 * 1 changes in 3600 seconds. Saving... +7:M 20 Apr 03:18:23.047 * Background saving started by pid 1404 +1404:C 20 Apr 03:18:23.051 * DB saved on disk +1404:C 20 Apr 03:18:23.052 * RDB: 0 MB of memory used by copy-on-write +7:M 20 Apr 03:18:23.148 * Background saving terminated with success +6:M 20 Apr 03:49:50.465 * 1 changes in 3600 seconds. Saving... +6:M 20 Apr 03:49:50.466 * Background saving started by pid 2196 +2196:C 20 Apr 03:49:50.470 * DB saved on disk +2196:C 20 Apr 03:49:50.470 * RDB: 0 MB of memory used by copy-on-write +6:M 20 Apr 03:49:50.567 * Background saving terminated with success +7:M 20 Apr 04:17:04.004 * 1 changes in 3600 seconds. Saving... +7:M 20 Apr 04:17:04.006 * Background saving started by pid 1286 +1286:C 20 Apr 04:17:04.011 * DB saved on disk +1286:C 20 Apr 04:17:04.012 * RDB: 0 MB of memory used by copy-on-write +7:M 20 Apr 04:17:04.107 * Background saving terminated with success +7:M 20 Apr 04:18:24.039 * 1 changes in 3600 seconds. Saving... +7:M 20 Apr 04:18:24.040 * Background saving started by pid 1422 +1422:C 20 Apr 04:18:24.044 * DB saved on disk +1422:C 20 Apr 04:18:24.045 * RDB: 0 MB of memory used by copy-on-write +7:M 20 Apr 04:18:24.141 * Background saving terminated with success +6:M 20 Apr 04:49:51.028 * 1 changes in 3600 seconds. Saving... +6:M 20 Apr 04:49:51.029 * Background saving started by pid 2676 +2676:C 20 Apr 04:49:51.035 * DB saved on disk +2676:C 20 Apr 04:49:51.036 * RDB: 0 MB of memory used by copy-on-write +6:M 20 Apr 04:49:51.130 * Background saving terminated with success +7:M 20 Apr 05:17:05.020 * 1 changes in 3600 seconds. Saving... +7:M 20 Apr 05:17:05.021 * Background saving started by pid 1529 +1529:C 20 Apr 05:17:05.025 * DB saved on disk +1529:C 20 Apr 05:17:05.026 * RDB: 0 MB of memory used by copy-on-write +7:M 20 Apr 05:17:05.123 * Background saving terminated with success +7:M 20 Apr 05:18:25.046 * 1 changes in 3600 seconds. Saving... +7:M 20 Apr 05:18:25.046 * Background saving started by pid 1792 +1792:C 20 Apr 05:18:25.053 * DB saved on disk +1792:C 20 Apr 05:18:25.053 * RDB: 0 MB of memory used by copy-on-write +7:M 20 Apr 05:18:25.147 * Background saving terminated with success +6:M 20 Apr 05:49:52.014 * 1 changes in 3600 seconds. Saving... +6:M 20 Apr 05:49:52.016 * Background saving started by pid 3147 +3147:C 20 Apr 05:49:52.022 * DB saved on disk +3147:C 20 Apr 05:49:52.023 * RDB: 0 MB of memory used by copy-on-write +6:M 20 Apr 05:49:52.117 * Background saving terminated with success +7:C 20 Apr 09:15:35.527 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 20 Apr 09:15:35.528 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 20 Apr 09:15:35.529 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 20 Apr 09:15:35.533 * Running mode=standalone, port=6379. +7:M 20 Apr 09:15:35.534 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 20 Apr 09:15:35.535 # Server initialized +7:M 20 Apr 09:15:35.535 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 20 Apr 09:15:35.542 * DB loaded from disk: 0.006 seconds +7:M 20 Apr 09:15:35.543 * Ready to accept connections +7:M 20 Apr 09:20:36.048 * 100 changes in 300 seconds. Saving... +7:M 20 Apr 09:20:36.073 * Background saving started by pid 3184 +3184:C 20 Apr 09:20:36.095 * DB saved on disk +3184:C 20 Apr 09:20:36.098 * RDB: 0 MB of memory used by copy-on-write +7:M 20 Apr 09:20:36.176 * Background saving terminated with success +7:C 06 May 07:41:39.317 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 06 May 07:41:39.320 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 06 May 07:41:39.320 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 06 May 07:41:39.324 * Running mode=standalone, port=6379. +7:M 06 May 07:41:39.324 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 06 May 07:41:39.325 # Server initialized +7:M 06 May 07:41:39.325 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 06 May 07:41:39.331 * DB loaded from disk: 0.005 seconds +7:M 06 May 07:41:39.332 * Ready to accept connections +7:signal-handler (1588751076) Received SIGINT scheduling shutdown... +7:M 06 May 07:44:36.367 # User requested shutdown... +7:M 06 May 07:44:36.368 * Saving the final RDB snapshot before exiting. +7:M 06 May 07:44:36.383 * DB saved on disk +7:M 06 May 07:44:36.385 # Redis is now ready to exit, bye bye... +6:C 06 May 07:44:38.235 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 06 May 07:44:38.239 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 06 May 07:44:38.240 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 06 May 07:44:38.245 * Running mode=standalone, port=6379. +6:M 06 May 07:44:38.246 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 06 May 07:44:38.246 # Server initialized +6:M 06 May 07:44:38.247 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 06 May 07:44:38.253 * DB loaded from disk: 0.005 seconds +6:M 06 May 07:44:38.254 * Ready to accept connections +6:signal-handler (1588751166) Received SIGINT scheduling shutdown... +6:M 06 May 07:46:06.381 # User requested shutdown... +6:M 06 May 07:46:06.382 * Saving the final RDB snapshot before exiting. +7:C 06 May 07:46:18.381 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 06 May 07:46:18.384 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 06 May 07:46:18.387 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 06 May 07:46:18.392 * Running mode=standalone, port=6379. +7:M 06 May 07:46:18.394 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 06 May 07:46:18.397 # Server initialized +7:M 06 May 07:46:18.397 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 06 May 07:46:18.400 * DB loaded from disk: 0.002 seconds +7:M 06 May 07:46:18.400 * Ready to accept connections +7:signal-handler (1588751245) Received SIGINT scheduling shutdown... +7:M 06 May 07:47:25.902 # User requested shutdown... +7:M 06 May 07:47:25.903 * Saving the final RDB snapshot before exiting. +7:M 06 May 07:47:25.909 * DB saved on disk +7:M 06 May 07:47:25.910 # Redis is now ready to exit, bye bye... +6:C 06 May 07:47:47.854 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 06 May 07:47:47.855 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 06 May 07:47:47.856 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 06 May 07:47:47.859 * Running mode=standalone, port=6379. +6:M 06 May 07:47:47.859 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 06 May 07:47:47.860 # Server initialized +6:M 06 May 07:47:47.861 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 06 May 07:47:47.872 * DB loaded from disk: 0.011 seconds +6:M 06 May 07:47:47.874 * Ready to accept connections +6:C 06 May 07:48:00.243 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 06 May 07:48:00.267 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 06 May 07:48:00.269 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 06 May 07:48:00.273 * Running mode=standalone, port=6379. +6:M 06 May 07:48:00.274 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 06 May 07:48:00.276 # Server initialized +6:M 06 May 07:48:00.277 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 06 May 07:48:00.288 * DB loaded from disk: 0.010 seconds +6:M 06 May 07:48:00.342 * Ready to accept connections +6:signal-handler (1588751304) Received SIGINT scheduling shutdown... +6:M 06 May 07:48:24.251 # User requested shutdown... +6:M 06 May 07:48:24.252 * Saving the final RDB snapshot before exiting. +6:M 06 May 07:48:24.271 * DB saved on disk +6:M 06 May 07:48:24.272 # Redis is now ready to exit, bye bye... +6:C 06 May 07:49:05.514 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 06 May 07:49:05.524 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 06 May 07:49:05.526 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 06 May 07:49:05.532 * Running mode=standalone, port=6379. +6:M 06 May 07:49:05.534 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 06 May 07:49:05.538 # Server initialized +6:M 06 May 07:49:05.539 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 06 May 07:49:05.554 * DB loaded from disk: 0.007 seconds +6:M 06 May 07:49:05.555 * Ready to accept connections +6:signal-handler (1588751363) Received SIGINT scheduling shutdown... +6:M 06 May 07:49:23.448 # User requested shutdown... +6:M 06 May 07:49:23.449 * Saving the final RDB snapshot before exiting. +6:M 06 May 07:49:23.467 * DB saved on disk +6:M 06 May 07:49:23.469 # Redis is now ready to exit, bye bye... +6:C 06 May 07:49:25.262 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 06 May 07:49:25.268 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 06 May 07:49:25.269 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 06 May 07:49:25.276 * Running mode=standalone, port=6379. +6:M 06 May 07:49:25.281 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 06 May 07:49:25.283 # Server initialized +6:M 06 May 07:49:25.284 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 06 May 07:49:25.300 * DB loaded from disk: 0.013 seconds +6:M 06 May 07:49:25.301 * Ready to accept connections +6:signal-handler (1588751411) Received SIGINT scheduling shutdown... +6:M 06 May 07:50:11.359 # User requested shutdown... +6:M 06 May 07:50:11.360 * Saving the final RDB snapshot before exiting. +6:M 06 May 07:50:11.366 * DB saved on disk +6:M 06 May 07:50:11.367 # Redis is now ready to exit, bye bye... +7:C 06 May 07:50:12.993 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 06 May 07:50:13.002 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 06 May 07:50:13.003 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 06 May 07:50:13.007 * Running mode=standalone, port=6379. +7:M 06 May 07:50:13.008 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 06 May 07:50:13.009 # Server initialized +7:M 06 May 07:50:13.009 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 06 May 07:50:13.016 * DB loaded from disk: 0.006 seconds +7:M 06 May 07:50:13.018 * Ready to accept connections +6:C 06 May 07:55:02.264 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 06 May 07:55:02.266 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 06 May 07:55:02.267 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 06 May 07:55:02.273 * Running mode=standalone, port=6379. +6:M 06 May 07:55:02.274 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 06 May 07:55:02.274 # Server initialized +6:M 06 May 07:55:02.275 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 06 May 07:55:02.283 * DB loaded from disk: 0.007 seconds +6:M 06 May 07:55:02.283 * Ready to accept connections +6:C 06 May 07:56:40.442 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 06 May 07:56:40.445 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 06 May 07:56:40.446 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 06 May 07:56:40.452 * Running mode=standalone, port=6379. +6:M 06 May 07:56:40.455 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 06 May 07:56:40.458 # Server initialized +6:M 06 May 07:56:40.460 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 06 May 07:56:40.467 * DB loaded from disk: 0.006 seconds +6:M 06 May 07:56:40.467 * Ready to accept connections +6:C 06 May 07:57:21.607 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 06 May 07:57:21.613 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 06 May 07:57:21.614 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 06 May 07:57:21.620 * Running mode=standalone, port=6379. +6:M 06 May 07:57:21.629 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 06 May 07:57:21.629 # Server initialized +6:M 06 May 07:57:21.630 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 06 May 07:57:21.642 * DB loaded from disk: 0.011 seconds +6:M 06 May 07:57:21.643 * Ready to accept connections +6:signal-handler (1588751848) Received SIGINT scheduling shutdown... +6:M 06 May 07:57:28.687 # User requested shutdown... +6:M 06 May 07:57:28.689 * Saving the final RDB snapshot before exiting. +6:M 06 May 07:57:28.697 * DB saved on disk +6:M 06 May 07:57:28.697 # Redis is now ready to exit, bye bye... +6:C 06 May 07:57:47.395 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 06 May 07:57:47.398 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 06 May 07:57:47.399 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 06 May 07:57:47.402 * Running mode=standalone, port=6379. +6:M 06 May 07:57:47.403 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 06 May 07:57:47.404 # Server initialized +6:M 06 May 07:57:47.405 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 06 May 07:57:47.411 * DB loaded from disk: 0.006 seconds +6:M 06 May 07:57:47.412 * Ready to accept connections +6:signal-handler (1588751875) Received SIGINT scheduling shutdown... +6:M 06 May 07:57:55.868 # User requested shutdown... +6:M 06 May 07:57:55.869 * Saving the final RDB snapshot before exiting. +6:M 06 May 07:57:55.877 * DB saved on disk +6:M 06 May 07:57:55.883 # Redis is now ready to exit, bye bye... +6:C 06 May 07:58:41.792 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 06 May 07:58:41.794 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 06 May 07:58:41.794 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 06 May 07:58:41.800 * Running mode=standalone, port=6379. +6:M 06 May 07:58:41.802 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 06 May 07:58:41.805 # Server initialized +6:M 06 May 07:58:41.806 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 06 May 07:58:41.813 * DB loaded from disk: 0.006 seconds +6:M 06 May 07:58:41.813 * Ready to accept connections +6:C 06 May 07:58:54.426 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 06 May 07:58:54.428 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 06 May 07:58:54.428 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 06 May 07:58:54.432 * Running mode=standalone, port=6379. +6:M 06 May 07:58:54.432 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 06 May 07:58:54.433 # Server initialized +6:M 06 May 07:58:54.433 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 06 May 07:58:54.436 * DB loaded from disk: 0.003 seconds +6:M 06 May 07:58:54.437 * Ready to accept connections +6:signal-handler (1588751940) Received SIGINT scheduling shutdown... +6:M 06 May 07:59:00.373 # User requested shutdown... +6:M 06 May 07:59:00.374 * Saving the final RDB snapshot before exiting. +6:M 06 May 07:59:00.380 * DB saved on disk +6:M 06 May 07:59:00.381 # Redis is now ready to exit, bye bye... +7:C 06 May 07:59:32.573 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 06 May 07:59:32.579 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 06 May 07:59:32.580 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 06 May 07:59:32.583 * Running mode=standalone, port=6379. +7:M 06 May 07:59:32.584 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 06 May 07:59:32.584 # Server initialized +7:M 06 May 07:59:32.585 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 06 May 07:59:32.589 * DB loaded from disk: 0.004 seconds +7:M 06 May 07:59:32.589 * Ready to accept connections +7:signal-handler (1588751982) Received SIGINT scheduling shutdown... +7:M 06 May 07:59:42.927 # User requested shutdown... +7:M 06 May 07:59:42.928 * Saving the final RDB snapshot before exiting. +7:C 06 May 08:00:47.855 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 06 May 08:00:47.857 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 06 May 08:00:47.858 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 06 May 08:00:47.860 * Running mode=standalone, port=6379. +7:M 06 May 08:00:47.861 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 06 May 08:00:47.861 # Server initialized +7:M 06 May 08:00:47.862 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 06 May 08:00:47.866 * DB loaded from disk: 0.004 seconds +7:M 06 May 08:00:47.867 * Ready to accept connections +6:C 06 May 08:01:00.276 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 06 May 08:01:00.277 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 06 May 08:01:00.279 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 06 May 08:01:00.281 * Running mode=standalone, port=6379. +6:M 06 May 08:01:00.282 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 06 May 08:01:00.282 # Server initialized +6:M 06 May 08:01:00.283 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 06 May 08:01:00.288 * DB loaded from disk: 0.004 seconds +6:M 06 May 08:01:00.288 * Ready to accept connections +7:C 06 May 08:01:16.959 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 06 May 08:01:16.960 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 06 May 08:01:16.960 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 06 May 08:01:16.963 * Running mode=standalone, port=6379. +7:M 06 May 08:01:16.964 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 06 May 08:01:16.965 # Server initialized +7:M 06 May 08:01:16.966 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 06 May 08:01:16.972 * DB loaded from disk: 0.005 seconds +7:M 06 May 08:01:16.972 * Ready to accept connections +6:C 06 May 08:01:48.002 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 06 May 08:01:48.004 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 06 May 08:01:48.005 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 06 May 08:01:48.007 * Running mode=standalone, port=6379. +6:M 06 May 08:01:48.008 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 06 May 08:01:48.010 # Server initialized +6:M 06 May 08:01:48.011 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 06 May 08:01:48.015 * DB loaded from disk: 0.004 seconds +6:M 06 May 08:01:48.016 * Ready to accept connections +6:signal-handler (1588752127) Received SIGINT scheduling shutdown... +6:C 06 May 08:02:09.277 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 06 May 08:02:09.278 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 06 May 08:02:09.278 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 06 May 08:02:09.285 * Running mode=standalone, port=6379. +6:M 06 May 08:02:09.287 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 06 May 08:02:09.288 # Server initialized +6:M 06 May 08:02:09.289 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 06 May 08:02:09.294 * DB loaded from disk: 0.004 seconds +6:M 06 May 08:02:09.294 * Ready to accept connections +6:C 06 May 08:03:59.475 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 06 May 08:03:59.477 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 06 May 08:03:59.477 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 06 May 08:03:59.482 * Running mode=standalone, port=6379. +6:M 06 May 08:03:59.483 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 06 May 08:03:59.484 # Server initialized +6:M 06 May 08:03:59.485 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 06 May 08:03:59.492 * DB loaded from disk: 0.005 seconds +6:M 06 May 08:03:59.492 * Ready to accept connections +6:C 06 May 08:05:13.125 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 06 May 08:05:13.127 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 06 May 08:05:13.128 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 06 May 08:05:13.130 * Running mode=standalone, port=6379. +6:M 06 May 08:05:13.130 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 06 May 08:05:13.130 # Server initialized +6:M 06 May 08:05:13.131 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 06 May 08:05:13.135 * DB loaded from disk: 0.003 seconds +6:M 06 May 08:05:13.135 * Ready to accept connections +6:signal-handler (1588752331) Received SIGINT scheduling shutdown... +7:C 06 May 08:05:33.088 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 06 May 08:05:33.090 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 06 May 08:05:33.092 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 06 May 08:05:33.096 * Running mode=standalone, port=6379. +7:M 06 May 08:05:33.097 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 06 May 08:05:33.097 # Server initialized +7:M 06 May 08:05:33.098 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 06 May 08:05:33.103 * DB loaded from disk: 0.005 seconds +7:M 06 May 08:05:33.104 * Ready to accept connections +7:signal-handler (1588752348) Received SIGINT scheduling shutdown... +7:M 06 May 08:05:48.890 # User requested shutdown... +7:M 06 May 08:05:48.891 * Saving the final RDB snapshot before exiting. +7:M 06 May 08:05:48.899 * DB saved on disk +7:M 06 May 08:05:48.899 # Redis is now ready to exit, bye bye... +6:C 06 May 08:05:50.216 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 06 May 08:05:50.217 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 06 May 08:05:50.218 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 06 May 08:05:50.221 * Running mode=standalone, port=6379. +6:M 06 May 08:05:50.222 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 06 May 08:05:50.223 # Server initialized +6:M 06 May 08:05:50.224 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 06 May 08:05:50.228 * DB loaded from disk: 0.004 seconds +6:M 06 May 08:05:50.229 * Ready to accept connections +6:signal-handler (1588752416) Received SIGINT scheduling shutdown... +6:M 06 May 08:06:56.754 # User requested shutdown... +6:M 06 May 08:06:56.755 * Saving the final RDB snapshot before exiting. +6:C 06 May 08:07:12.860 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 06 May 08:07:12.868 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 06 May 08:07:12.873 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 06 May 08:07:12.875 * Running mode=standalone, port=6379. +6:M 06 May 08:07:12.877 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 06 May 08:07:12.878 # Server initialized +6:M 06 May 08:07:12.879 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 06 May 08:07:12.883 * DB loaded from disk: 0.003 seconds +6:M 06 May 08:07:12.883 * Ready to accept connections +6:signal-handler (1588752438) Received SIGINT scheduling shutdown... +7:C 06 May 08:07:27.404 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 06 May 08:07:27.405 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 06 May 08:07:27.406 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 06 May 08:07:27.409 * Running mode=standalone, port=6379. +7:M 06 May 08:07:27.411 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 06 May 08:07:27.412 # Server initialized +7:M 06 May 08:07:27.413 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 06 May 08:07:27.417 * DB loaded from disk: 0.003 seconds +7:M 06 May 08:07:27.417 * Ready to accept connections +7:signal-handler (1588752466) Received SIGINT scheduling shutdown... +7:M 06 May 08:07:46.433 # User requested shutdown... +7:M 06 May 08:07:46.434 * Saving the final RDB snapshot before exiting. +7:M 06 May 08:07:46.441 * DB saved on disk +7:M 06 May 08:07:46.441 # Redis is now ready to exit, bye bye... +7:C 06 May 08:07:47.752 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 06 May 08:07:47.753 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 06 May 08:07:47.754 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 06 May 08:07:47.757 * Running mode=standalone, port=6379. +7:M 06 May 08:07:47.758 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 06 May 08:07:47.758 # Server initialized +7:M 06 May 08:07:47.759 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 06 May 08:07:47.763 * DB loaded from disk: 0.004 seconds +7:M 06 May 08:07:47.764 * Ready to accept connections +7:signal-handler (1588752523) Received SIGINT scheduling shutdown... +7:M 06 May 08:08:43.473 # User requested shutdown... +7:M 06 May 08:08:43.474 * Saving the final RDB snapshot before exiting. +7:M 06 May 08:08:43.482 * DB saved on disk +7:M 06 May 08:08:43.482 # Redis is now ready to exit, bye bye... +7:C 06 May 08:08:44.642 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 06 May 08:08:44.643 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 06 May 08:08:44.644 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 06 May 08:08:44.646 * Running mode=standalone, port=6379. +7:M 06 May 08:08:44.647 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 06 May 08:08:44.648 # Server initialized +7:M 06 May 08:08:44.648 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 06 May 08:08:44.658 * DB loaded from disk: 0.007 seconds +7:M 06 May 08:08:44.658 * Ready to accept connections +7:signal-handler (1588752549) Received SIGINT scheduling shutdown... +7:M 06 May 08:09:09.879 # User requested shutdown... +7:M 06 May 08:09:09.879 * Saving the final RDB snapshot before exiting. +7:M 06 May 08:09:09.883 * DB saved on disk +7:M 06 May 08:09:09.884 # Redis is now ready to exit, bye bye... +6:C 06 May 08:09:16.176 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 06 May 08:09:16.178 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 06 May 08:09:16.179 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 06 May 08:09:16.183 * Running mode=standalone, port=6379. +6:M 06 May 08:09:16.184 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 06 May 08:09:16.185 # Server initialized +6:M 06 May 08:09:16.186 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 06 May 08:09:16.191 * DB loaded from disk: 0.005 seconds +6:M 06 May 08:09:16.192 * Ready to accept connections +6:signal-handler (1588752636) Received SIGINT scheduling shutdown... +6:M 06 May 08:10:36.311 # User requested shutdown... +6:M 06 May 08:10:36.314 * Saving the final RDB snapshot before exiting. +6:M 06 May 08:10:36.329 * DB saved on disk +6:M 06 May 08:10:36.329 # Redis is now ready to exit, bye bye... +6:C 06 May 08:10:37.483 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 06 May 08:10:37.485 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 06 May 08:10:37.487 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 06 May 08:10:37.491 * Running mode=standalone, port=6379. +6:M 06 May 08:10:37.491 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 06 May 08:10:37.492 # Server initialized +6:M 06 May 08:10:37.492 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 06 May 08:10:37.496 * DB loaded from disk: 0.003 seconds +6:M 06 May 08:10:37.497 * Ready to accept connections +6:signal-handler (1588752686) Received SIGINT scheduling shutdown... +6:M 06 May 08:11:26.857 # User requested shutdown... +6:M 06 May 08:11:26.858 * Saving the final RDB snapshot before exiting. +6:M 06 May 08:11:26.866 * DB saved on disk +6:M 06 May 08:11:26.866 # Redis is now ready to exit, bye bye... +7:C 06 May 08:11:28.241 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 06 May 08:11:28.242 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 06 May 08:11:28.242 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 06 May 08:11:28.244 * Running mode=standalone, port=6379. +7:M 06 May 08:11:28.245 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 06 May 08:11:28.246 # Server initialized +7:M 06 May 08:11:28.246 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 06 May 08:11:28.248 * DB loaded from disk: 0.002 seconds +7:M 06 May 08:11:28.248 * Ready to accept connections +7:signal-handler (1588752706) Received SIGINT scheduling shutdown... +6:C 06 May 08:11:48.008 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 06 May 08:11:48.009 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 06 May 08:11:48.010 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 06 May 08:11:48.013 * Running mode=standalone, port=6379. +6:M 06 May 08:11:48.013 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 06 May 08:11:48.014 # Server initialized +6:M 06 May 08:11:48.014 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 06 May 08:11:48.017 * DB loaded from disk: 0.002 seconds +6:M 06 May 08:11:48.017 * Ready to accept connections +6:signal-handler (1588752726) Received SIGINT scheduling shutdown... +6:C 06 May 08:12:07.733 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 06 May 08:12:07.734 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 06 May 08:12:07.735 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 06 May 08:12:07.738 * Running mode=standalone, port=6379. +6:M 06 May 08:12:07.739 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 06 May 08:12:07.739 # Server initialized +6:M 06 May 08:12:07.740 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 06 May 08:12:07.745 * DB loaded from disk: 0.004 seconds +6:M 06 May 08:12:07.746 * Ready to accept connections +6:signal-handler (1588752755) Received SIGINT scheduling shutdown... +6:M 06 May 08:12:35.999 # User requested shutdown... +6:M 06 May 08:12:36.000 * Saving the final RDB snapshot before exiting. +6:M 06 May 08:12:36.008 * DB saved on disk +6:M 06 May 08:12:36.011 # Redis is now ready to exit, bye bye... +7:C 06 May 08:12:37.326 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 06 May 08:12:37.327 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 06 May 08:12:37.328 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 06 May 08:12:37.331 * Running mode=standalone, port=6379. +7:M 06 May 08:12:37.331 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 06 May 08:12:37.332 # Server initialized +7:M 06 May 08:12:37.333 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 06 May 08:12:37.340 * DB loaded from disk: 0.006 seconds +7:M 06 May 08:12:37.340 * Ready to accept connections +7:signal-handler (1588752768) Received SIGINT scheduling shutdown... +7:M 06 May 08:12:48.793 # User requested shutdown... +7:M 06 May 08:12:48.794 * Saving the final RDB snapshot before exiting. +7:M 06 May 08:12:48.799 * DB saved on disk +7:M 06 May 08:12:48.800 # Redis is now ready to exit, bye bye... +6:C 06 May 08:12:50.039 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 06 May 08:12:50.041 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 06 May 08:12:50.041 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 06 May 08:12:50.050 * Running mode=standalone, port=6379. +6:M 06 May 08:12:50.053 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 06 May 08:12:50.062 # Server initialized +6:M 06 May 08:12:50.063 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 06 May 08:12:50.069 * DB loaded from disk: 0.005 seconds +6:M 06 May 08:12:50.069 * Ready to accept connections +6:signal-handler (1588752819) Received SIGINT scheduling shutdown... +7:C 06 May 08:13:40.961 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 06 May 08:13:40.962 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 06 May 08:13:40.963 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 06 May 08:13:40.968 * Running mode=standalone, port=6379. +7:M 06 May 08:13:40.970 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 06 May 08:13:40.970 # Server initialized +7:M 06 May 08:13:40.971 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 06 May 08:13:40.975 * DB loaded from disk: 0.003 seconds +7:M 06 May 08:13:40.975 * Ready to accept connections +7:signal-handler (1588752834) Received SIGINT scheduling shutdown... +6:C 06 May 08:33:54.600 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 06 May 08:33:54.602 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 06 May 08:33:54.602 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 06 May 08:33:54.605 * Running mode=standalone, port=6379. +6:M 06 May 08:33:54.606 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 06 May 08:33:54.606 # Server initialized +6:M 06 May 08:33:54.607 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 06 May 08:33:54.612 * DB loaded from disk: 0.004 seconds +6:M 06 May 08:33:54.612 * Ready to accept connections +7:C 06 May 08:34:15.943 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 06 May 08:34:15.944 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 06 May 08:34:15.944 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 06 May 08:34:15.947 * Running mode=standalone, port=6379. +7:M 06 May 08:34:15.947 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 06 May 08:34:15.948 # Server initialized +7:M 06 May 08:34:15.948 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 06 May 08:34:15.955 * DB loaded from disk: 0.006 seconds +7:M 06 May 08:34:15.956 * Ready to accept connections +7:M 06 May 08:39:16.085 * 100 changes in 300 seconds. Saving... +7:M 06 May 08:39:16.094 * Background saving started by pid 857 +857:C 06 May 08:39:16.112 * DB saved on disk +857:C 06 May 08:39:16.113 * RDB: 0 MB of memory used by copy-on-write +7:M 06 May 08:39:16.195 * Background saving terminated with success +7:signal-handler (1588754521) Received SIGINT scheduling shutdown... +7:M 06 May 08:42:01.181 # User requested shutdown... +7:M 06 May 08:42:01.201 * Saving the final RDB snapshot before exiting. +7:M 06 May 08:42:01.261 * DB saved on disk +7:M 06 May 08:42:01.289 # Redis is now ready to exit, bye bye... +7:signal-handler (1588754521) You insist... exiting now. +6:C 06 May 08:42:08.829 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 06 May 08:42:08.831 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 06 May 08:42:08.832 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 06 May 08:42:08.837 * Running mode=standalone, port=6379. +6:M 06 May 08:42:08.837 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 06 May 08:42:08.838 # Server initialized +6:M 06 May 08:42:08.839 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 06 May 08:42:08.842 * DB loaded from disk: 0.003 seconds +6:M 06 May 08:42:08.842 * Ready to accept connections +6:signal-handler (1588754614) Received SIGINT scheduling shutdown... +6:M 06 May 08:43:34.191 # User requested shutdown... +6:M 06 May 08:43:34.194 * Saving the final RDB snapshot before exiting. +6:M 06 May 08:43:34.211 * DB saved on disk +6:M 06 May 08:43:34.212 # Redis is now ready to exit, bye bye... +7:C 06 May 08:43:36.804 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 06 May 08:43:36.807 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 06 May 08:43:36.811 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 06 May 08:43:36.817 * Running mode=standalone, port=6379. +7:M 06 May 08:43:36.818 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 06 May 08:43:36.820 # Server initialized +7:M 06 May 08:43:36.820 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 06 May 08:43:36.826 * DB loaded from disk: 0.005 seconds +7:M 06 May 08:43:36.827 * Ready to accept connections +6:C 06 May 08:55:22.364 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 06 May 08:55:22.365 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 06 May 08:55:22.366 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 06 May 08:55:22.368 * Running mode=standalone, port=6379. +6:M 06 May 08:55:22.368 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 06 May 08:55:22.369 # Server initialized +6:M 06 May 08:55:22.369 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 06 May 08:55:22.372 * DB loaded from disk: 0.003 seconds +6:M 06 May 08:55:22.373 * Ready to accept connections +6:signal-handler (1588755326) Received SIGINT scheduling shutdown... +6:M 06 May 08:55:26.096 # User requested shutdown... +6:M 06 May 08:55:26.098 * Saving the final RDB snapshot before exiting. +6:M 06 May 08:55:26.109 * DB saved on disk +6:M 06 May 08:55:26.110 # Redis is now ready to exit, bye bye... +6:C 06 May 08:55:36.261 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 06 May 08:55:36.263 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 06 May 08:55:36.264 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 06 May 08:55:36.267 * Running mode=standalone, port=6379. +6:M 06 May 08:55:36.268 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 06 May 08:55:36.268 # Server initialized +6:M 06 May 08:55:36.269 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 06 May 08:55:36.273 * DB loaded from disk: 0.004 seconds +6:M 06 May 08:55:36.274 * Ready to accept connections +6:signal-handler (1588755337) Received SIGINT scheduling shutdown... +6:M 06 May 08:55:37.993 # User requested shutdown... +6:M 06 May 08:55:37.997 * Saving the final RDB snapshot before exiting. +6:M 06 May 08:55:38.003 * DB saved on disk +6:M 06 May 08:55:38.003 # Redis is now ready to exit, bye bye... +6:C 06 May 08:55:42.592 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 06 May 08:55:42.595 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 06 May 08:55:42.597 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 06 May 08:55:42.607 * Running mode=standalone, port=6379. +6:M 06 May 08:55:42.608 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 06 May 08:55:42.608 # Server initialized +6:M 06 May 08:55:42.609 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 06 May 08:55:42.613 * DB loaded from disk: 0.003 seconds +6:M 06 May 08:55:42.613 * Ready to accept connections +6:signal-handler (1588755346) Received SIGINT scheduling shutdown... +7:C 06 May 13:53:34.604 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 06 May 13:53:34.607 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 06 May 13:53:34.640 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 06 May 13:53:34.644 * Running mode=standalone, port=6379. +7:M 06 May 13:53:34.644 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 06 May 13:53:34.644 # Server initialized +7:M 06 May 13:53:34.645 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 06 May 13:53:34.648 * DB loaded from disk: 0.003 seconds +7:M 06 May 13:53:34.648 * Ready to accept connections +7:signal-handler (1588773228) Received SIGINT scheduling shutdown... +7:M 06 May 13:53:48.319 # User requested shutdown... +7:M 06 May 13:53:48.321 * Saving the final RDB snapshot before exiting. +7:M 06 May 13:53:48.350 * DB saved on disk +7:M 06 May 13:53:48.351 # Redis is now ready to exit, bye bye... +6:C 18 May 06:38:25.884 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 18 May 06:38:25.885 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 18 May 06:38:25.886 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 18 May 06:38:25.890 * Running mode=standalone, port=6379. +6:M 18 May 06:38:25.891 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 18 May 06:38:25.891 # Server initialized +6:M 18 May 06:38:25.892 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 18 May 06:38:25.895 * DB loaded from disk: 0.003 seconds +6:M 18 May 06:38:25.895 * Ready to accept connections +7:C 18 May 06:38:46.091 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 18 May 06:38:46.093 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 18 May 06:38:46.093 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 18 May 06:38:46.095 * Running mode=standalone, port=6379. +7:M 18 May 06:38:46.096 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 18 May 06:38:46.096 # Server initialized +7:M 18 May 06:38:46.096 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 18 May 06:38:46.100 * DB loaded from disk: 0.003 seconds +7:M 18 May 06:38:46.100 * Ready to accept connections +6:C 18 May 06:39:16.233 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 18 May 06:39:16.234 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 18 May 06:39:16.234 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 18 May 06:39:16.237 * Running mode=standalone, port=6379. +6:M 18 May 06:39:16.237 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 18 May 06:39:16.238 # Server initialized +6:M 18 May 06:39:16.239 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 18 May 06:39:16.246 * DB loaded from disk: 0.005 seconds +6:M 18 May 06:39:16.246 * Ready to accept connections +7:C 18 May 06:39:52.586 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 18 May 06:39:52.588 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 18 May 06:39:52.589 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 18 May 06:39:52.591 * Running mode=standalone, port=6379. +7:M 18 May 06:39:52.592 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 18 May 06:39:52.593 # Server initialized +7:M 18 May 06:39:52.593 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 18 May 06:39:52.598 * DB loaded from disk: 0.005 seconds +7:M 18 May 06:39:52.599 * Ready to accept connections +6:C 18 May 06:42:40.506 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 18 May 06:42:40.508 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 18 May 06:42:40.509 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 18 May 06:42:40.512 * Running mode=standalone, port=6379. +6:M 18 May 06:42:40.513 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 18 May 06:42:40.513 # Server initialized +6:M 18 May 06:42:40.513 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 18 May 06:42:40.517 * DB loaded from disk: 0.004 seconds +6:M 18 May 06:42:40.518 * Ready to accept connections +7:C 18 May 06:43:41.933 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 18 May 06:43:41.936 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 18 May 06:43:41.936 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 18 May 06:43:41.939 * Running mode=standalone, port=6379. +7:M 18 May 06:43:41.940 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 18 May 06:43:41.941 # Server initialized +7:M 18 May 06:43:41.941 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 18 May 06:43:41.945 * DB loaded from disk: 0.003 seconds +7:M 18 May 06:43:41.945 * Ready to accept connections +8:C 18 May 06:44:07.802 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +8:C 18 May 06:44:07.804 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=8, just started +8:C 18 May 06:44:07.805 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +8:M 18 May 06:44:07.808 * Running mode=standalone, port=6379. +8:M 18 May 06:44:07.809 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +8:M 18 May 06:44:07.809 # Server initialized +8:M 18 May 06:44:07.809 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +8:M 18 May 06:44:07.813 * DB loaded from disk: 0.003 seconds +8:M 18 May 06:44:07.813 * Ready to accept connections +8:C 18 May 06:44:26.825 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +8:C 18 May 06:44:26.829 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=8, just started +8:C 18 May 06:44:26.829 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +8:M 18 May 06:44:26.831 * Running mode=standalone, port=6379. +8:M 18 May 06:44:26.832 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +8:M 18 May 06:44:26.832 # Server initialized +8:M 18 May 06:44:26.833 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +8:M 18 May 06:44:26.837 * DB loaded from disk: 0.004 seconds +8:M 18 May 06:44:26.837 * Ready to accept connections +7:C 18 May 06:44:56.515 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 18 May 06:44:56.516 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 18 May 06:44:56.517 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 18 May 06:44:56.520 * Running mode=standalone, port=6379. +7:M 18 May 06:44:56.521 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 18 May 06:44:56.521 # Server initialized +7:M 18 May 06:44:56.522 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 18 May 06:44:56.526 * DB loaded from disk: 0.004 seconds +7:M 18 May 06:44:56.526 * Ready to accept connections +7:C 18 May 06:45:25.973 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 18 May 06:45:25.980 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 18 May 06:45:25.981 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 18 May 06:45:25.983 * Running mode=standalone, port=6379. +7:M 18 May 06:45:25.984 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 18 May 06:45:25.984 # Server initialized +7:M 18 May 06:45:25.985 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 18 May 06:45:25.989 * DB loaded from disk: 0.004 seconds +7:M 18 May 06:45:25.989 * Ready to accept connections +6:C 18 May 06:45:47.201 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 18 May 06:45:47.203 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 18 May 06:45:47.204 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 18 May 06:45:47.208 * Running mode=standalone, port=6379. +6:M 18 May 06:45:47.209 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 18 May 06:45:47.209 # Server initialized +6:M 18 May 06:45:47.210 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 18 May 06:45:47.214 * DB loaded from disk: 0.004 seconds +6:M 18 May 06:45:47.215 * Ready to accept connections +7:C 18 May 06:46:35.256 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 18 May 06:46:35.258 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 18 May 06:46:35.259 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 18 May 06:46:35.262 * Running mode=standalone, port=6379. +7:M 18 May 06:46:35.263 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 18 May 06:46:35.263 # Server initialized +7:M 18 May 06:46:35.264 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 18 May 06:46:35.268 * DB loaded from disk: 0.004 seconds +7:M 18 May 06:46:35.269 * Ready to accept connections +6:C 18 May 06:47:07.771 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 18 May 06:47:07.773 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 18 May 06:47:07.773 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 18 May 06:47:07.780 * Running mode=standalone, port=6379. +6:M 18 May 06:47:07.782 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 18 May 06:47:07.785 # Server initialized +6:M 18 May 06:47:07.786 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 18 May 06:47:07.791 * DB loaded from disk: 0.005 seconds +6:M 18 May 06:47:07.792 * Ready to accept connections +6:C 18 May 06:48:18.402 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 18 May 06:48:18.403 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 18 May 06:48:18.403 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 18 May 06:48:18.405 * Running mode=standalone, port=6379. +6:M 18 May 06:48:18.406 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 18 May 06:48:18.406 # Server initialized +6:M 18 May 06:48:18.407 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 18 May 06:48:18.411 * DB loaded from disk: 0.004 seconds +6:M 18 May 06:48:18.411 * Ready to accept connections +7:C 18 May 06:48:55.646 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 18 May 06:48:55.649 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 18 May 06:48:55.650 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 18 May 06:48:55.655 * Running mode=standalone, port=6379. +7:M 18 May 06:48:55.655 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 18 May 06:48:55.656 # Server initialized +7:M 18 May 06:48:55.657 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 18 May 06:48:55.661 * DB loaded from disk: 0.004 seconds +7:M 18 May 06:48:55.661 * Ready to accept connections +8:C 18 May 06:55:15.494 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +8:C 18 May 06:55:15.496 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=8, just started +8:C 18 May 06:55:15.496 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +8:M 18 May 06:55:15.501 * Running mode=standalone, port=6379. +8:M 18 May 06:55:15.502 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +8:M 18 May 06:55:15.503 # Server initialized +8:M 18 May 06:55:15.504 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +8:M 18 May 06:55:15.509 * DB loaded from disk: 0.004 seconds +8:M 18 May 06:55:15.509 * Ready to accept connections +6:C 18 May 06:56:07.892 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 18 May 06:56:07.895 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 18 May 06:56:07.895 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 18 May 06:56:07.899 * Running mode=standalone, port=6379. +6:M 18 May 06:56:07.900 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 18 May 06:56:07.901 # Server initialized +6:M 18 May 06:56:07.903 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 18 May 06:56:07.909 * DB loaded from disk: 0.005 seconds +6:M 18 May 06:56:07.910 * Ready to accept connections +6:C 18 May 07:01:17.555 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 18 May 07:01:17.556 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 18 May 07:01:17.557 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 18 May 07:01:17.562 * Running mode=standalone, port=6379. +6:M 18 May 07:01:17.563 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 18 May 07:01:17.563 # Server initialized +6:M 18 May 07:01:17.564 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 18 May 07:01:17.570 * DB loaded from disk: 0.005 seconds +6:M 18 May 07:01:17.571 * Ready to accept connections +8:C 18 May 07:01:45.677 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +8:C 18 May 07:01:45.680 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=8, just started +8:C 18 May 07:01:45.680 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +8:M 18 May 07:01:45.684 * Running mode=standalone, port=6379. +8:M 18 May 07:01:45.685 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +8:M 18 May 07:01:45.686 # Server initialized +8:M 18 May 07:01:45.688 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +8:M 18 May 07:01:45.692 * DB loaded from disk: 0.003 seconds +8:M 18 May 07:01:45.692 * Ready to accept connections +6:C 18 May 07:02:03.466 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 18 May 07:02:03.469 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 18 May 07:02:03.470 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 18 May 07:02:03.476 * Running mode=standalone, port=6379. +6:M 18 May 07:02:03.476 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 18 May 07:02:03.477 # Server initialized +6:M 18 May 07:02:03.477 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 18 May 07:02:03.482 * DB loaded from disk: 0.004 seconds +6:M 18 May 07:02:03.483 * Ready to accept connections +6:C 18 May 07:03:46.577 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 18 May 07:03:46.580 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 18 May 07:03:46.580 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 18 May 07:03:46.583 * Running mode=standalone, port=6379. +6:M 18 May 07:03:46.583 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 18 May 07:03:46.584 # Server initialized +6:M 18 May 07:03:46.584 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 18 May 07:03:46.589 * DB loaded from disk: 0.005 seconds +6:M 18 May 07:03:46.590 * Ready to accept connections +6:C 18 May 07:05:20.935 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 18 May 07:05:20.936 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 18 May 07:05:20.936 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 18 May 07:05:20.939 * Running mode=standalone, port=6379. +6:M 18 May 07:05:20.940 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 18 May 07:05:20.941 # Server initialized +6:M 18 May 07:05:20.943 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 18 May 07:05:20.951 * DB loaded from disk: 0.007 seconds +6:M 18 May 07:05:20.951 * Ready to accept connections +8:C 18 May 07:06:24.932 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +8:C 18 May 07:06:24.934 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=8, just started +8:C 18 May 07:06:24.934 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +8:M 18 May 07:06:24.936 * Running mode=standalone, port=6379. +8:M 18 May 07:06:24.937 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +8:M 18 May 07:06:24.937 # Server initialized +8:M 18 May 07:06:24.938 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +8:M 18 May 07:06:24.943 * DB loaded from disk: 0.005 seconds +8:M 18 May 07:06:24.944 * Ready to accept connections +6:C 18 May 07:07:27.016 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 18 May 07:07:27.022 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 18 May 07:07:27.023 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 18 May 07:07:27.028 * Running mode=standalone, port=6379. +6:M 18 May 07:07:27.029 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 18 May 07:07:27.029 # Server initialized +6:M 18 May 07:07:27.029 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 18 May 07:07:27.034 * DB loaded from disk: 0.004 seconds +6:M 18 May 07:07:27.035 * Ready to accept connections +6:C 18 May 07:08:21.806 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 18 May 07:08:21.808 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 18 May 07:08:21.809 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 18 May 07:08:21.815 * Running mode=standalone, port=6379. +6:M 18 May 07:08:21.816 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 18 May 07:08:21.817 # Server initialized +6:M 18 May 07:08:21.817 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 18 May 07:08:21.823 * DB loaded from disk: 0.005 seconds +6:M 18 May 07:08:21.824 * Ready to accept connections +7:C 18 May 07:17:08.881 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 18 May 07:17:08.883 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 18 May 07:17:08.883 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 18 May 07:17:08.886 * Running mode=standalone, port=6379. +7:M 18 May 07:17:08.888 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 18 May 07:17:08.890 # Server initialized +7:M 18 May 07:17:08.891 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 18 May 07:17:08.903 * DB loaded from disk: 0.010 seconds +7:M 18 May 07:17:08.908 * Ready to accept connections +6:C 18 May 07:17:19.371 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 18 May 07:17:19.381 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 18 May 07:17:19.382 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 18 May 07:17:19.386 * Running mode=standalone, port=6379. +6:M 18 May 07:17:19.387 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 18 May 07:17:19.387 # Server initialized +6:M 18 May 07:17:19.388 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 18 May 07:17:19.391 * DB loaded from disk: 0.003 seconds +6:M 18 May 07:17:19.392 * Ready to accept connections +6:C 18 May 07:17:49.494 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 18 May 07:17:49.496 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 18 May 07:17:49.497 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 18 May 07:17:49.499 * Running mode=standalone, port=6379. +6:M 18 May 07:17:49.500 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 18 May 07:17:49.500 # Server initialized +6:M 18 May 07:17:49.501 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 18 May 07:17:49.505 * DB loaded from disk: 0.004 seconds +6:M 18 May 07:17:49.506 * Ready to accept connections +6:C 18 May 07:18:26.613 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 18 May 07:18:26.615 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 18 May 07:18:26.615 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 18 May 07:18:26.620 * Running mode=standalone, port=6379. +6:M 18 May 07:18:26.621 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 18 May 07:18:26.622 # Server initialized +6:M 18 May 07:18:26.622 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 18 May 07:18:26.627 * DB loaded from disk: 0.004 seconds +6:M 18 May 07:18:26.628 * Ready to accept connections +6:C 18 May 07:22:21.296 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 18 May 07:22:21.298 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 18 May 07:22:21.298 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 18 May 07:22:21.303 * Running mode=standalone, port=6379. +6:M 18 May 07:22:21.303 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 18 May 07:22:21.304 # Server initialized +6:M 18 May 07:22:21.304 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 18 May 07:22:21.311 * DB loaded from disk: 0.005 seconds +6:M 18 May 07:22:21.311 * Ready to accept connections +7:C 18 May 07:24:07.821 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 18 May 07:24:07.823 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 18 May 07:24:07.823 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 18 May 07:24:07.827 * Running mode=standalone, port=6379. +7:M 18 May 07:24:07.828 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 18 May 07:24:07.828 # Server initialized +7:M 18 May 07:24:07.829 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 18 May 07:24:07.833 * DB loaded from disk: 0.003 seconds +7:M 18 May 07:24:07.833 * Ready to accept connections +7:C 18 May 07:24:31.948 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 18 May 07:24:31.949 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 18 May 07:24:31.949 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 18 May 07:24:31.952 * Running mode=standalone, port=6379. +7:M 18 May 07:24:31.952 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 18 May 07:24:31.953 # Server initialized +7:M 18 May 07:24:31.955 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 18 May 07:24:31.959 * DB loaded from disk: 0.003 seconds +7:M 18 May 07:24:31.960 * Ready to accept connections +6:C 18 May 07:25:46.322 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 18 May 07:25:46.325 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 18 May 07:25:46.325 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 18 May 07:25:46.329 * Running mode=standalone, port=6379. +6:M 18 May 07:25:46.330 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 18 May 07:25:46.331 # Server initialized +6:M 18 May 07:25:46.332 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 18 May 07:25:46.337 * DB loaded from disk: 0.004 seconds +6:M 18 May 07:25:46.338 * Ready to accept connections +6:C 18 May 07:26:33.810 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 18 May 07:26:33.813 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 18 May 07:26:33.813 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 18 May 07:26:33.816 * Running mode=standalone, port=6379. +6:M 18 May 07:26:33.817 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 18 May 07:26:33.817 # Server initialized +6:M 18 May 07:26:33.818 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 18 May 07:26:33.823 * DB loaded from disk: 0.004 seconds +6:M 18 May 07:26:33.823 * Ready to accept connections +6:signal-handler (1589786820) Received SIGINT scheduling shutdown... +6:M 18 May 07:27:00.757 # User requested shutdown... +6:M 18 May 07:27:00.757 * Saving the final RDB snapshot before exiting. +6:M 18 May 07:27:00.767 * DB saved on disk +6:M 18 May 07:27:00.768 # Redis is now ready to exit, bye bye... +7:C 18 May 07:38:47.319 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 18 May 07:38:47.322 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 18 May 07:38:47.323 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 18 May 07:38:47.329 * Running mode=standalone, port=6379. +7:M 18 May 07:38:47.331 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 18 May 07:38:47.332 # Server initialized +7:M 18 May 07:38:47.332 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 18 May 07:38:47.337 * DB loaded from disk: 0.004 seconds +7:M 18 May 07:38:47.337 * Ready to accept connections +7:signal-handler (1589787532) Received SIGINT scheduling shutdown... +7:C 18 May 07:39:21.834 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +7:C 18 May 07:39:21.838 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=7, just started +7:C 18 May 07:39:21.839 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +7:M 18 May 07:39:21.842 * Running mode=standalone, port=6379. +7:M 18 May 07:39:21.843 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +7:M 18 May 07:39:21.843 # Server initialized +7:M 18 May 07:39:21.844 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +7:M 18 May 07:39:21.849 * DB loaded from disk: 0.005 seconds +7:M 18 May 07:39:21.849 * Ready to accept connections +7:signal-handler (1589787682) Received SIGINT scheduling shutdown... +7:M 18 May 07:41:22.083 # User requested shutdown... +7:M 18 May 07:41:22.083 * Saving the final RDB snapshot before exiting. +6:C 18 May 07:41:28.867 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 18 May 07:41:28.868 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 18 May 07:41:28.869 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 18 May 07:41:28.875 * Running mode=standalone, port=6379. +6:M 18 May 07:41:28.876 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 18 May 07:41:28.877 # Server initialized +6:M 18 May 07:41:28.877 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 18 May 07:41:28.882 * DB loaded from disk: 0.005 seconds +6:M 18 May 07:41:28.883 * Ready to accept connections +6:signal-handler (1589787728) Received SIGINT scheduling shutdown... +6:C 18 May 07:42:14.451 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo +6:C 18 May 07:42:14.452 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6, just started +6:C 18 May 07:42:14.452 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf +6:M 18 May 07:42:14.456 * Running mode=standalone, port=6379. +6:M 18 May 07:42:14.457 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. +6:M 18 May 07:42:14.457 # Server initialized +6:M 18 May 07:42:14.458 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. +6:M 18 May 07:42:14.463 * DB loaded from disk: 0.005 seconds +6:M 18 May 07:42:14.464 * Ready to accept connections +6:M 18 May 07:47:15.028 * 100 changes in 300 seconds. Saving... +6:M 18 May 07:47:15.032 * Background saving started by pid 1607 +1607:C 18 May 07:47:15.038 * DB saved on disk +1607:C 18 May 07:47:15.040 * RDB: 0 MB of memory used by copy-on-write +6:M 18 May 07:47:15.133 * Background saving terminated with success +6:M 18 May 07:53:14.397 * 100 changes in 300 seconds. Saving... +6:M 18 May 07:53:14.398 * Background saving started by pid 2604 +2604:C 18 May 07:53:14.405 * DB saved on disk +2604:C 18 May 07:53:14.405 * RDB: 0 MB of memory used by copy-on-write +6:M 18 May 07:53:14.500 * Background saving terminated with success +6:M 18 May 07:58:15.009 * 100 changes in 300 seconds. Saving... +6:M 18 May 07:58:15.011 * Background saving started by pid 4963 +4963:C 18 May 07:58:15.024 * DB saved on disk +4963:C 18 May 07:58:15.024 * RDB: 0 MB of memory used by copy-on-write +6:M 18 May 07:58:15.112 * Background saving terminated with success +6:signal-handler (1589789010) Received SIGINT scheduling shutdown... +6:M 18 May 08:03:30.406 # User requested shutdown... +6:M 18 May 08:03:30.407 * Saving the final RDB snapshot before exiting. diff --git a/crow/settings/config.ini b/crow/settings/config.ini index 8a927c25..bef1fc73 100644 --- a/crow/settings/config.ini +++ b/crow/settings/config.ini @@ -3,18 +3,19 @@ slumpspath = /slumps debugfile = ${slumpspath}/crow/slumps.debug.txt outfolder = ${slumpspath}/crow/out print-sha = True -prune-equal = False +prune-equal = True exit-on-find = False link-wasi = true generator-method = subset candidates-threshold = 1 -thread-pool-size = 2 +thread-pool-size = 1 fail-silently = True upper-bound = 8000 timeout = 36000 generate-bc-only = True workers = 20 -level-workers = 5 +level-workers = 1 +order = 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 [clang] path = ${DEFAULT:slumpspath}/souper/third_party/llvm/Release/bin/clang @@ -31,7 +32,7 @@ command = %s -f [wasm-ld] path = wasm-ld-9 wasi-header = -L/tmp/wasi-libc/lib/wasm32-wasi /tmp/wasi-libc/lib/wasm32-wasi/crt1.o -lc /opt/wasi-sdk/lib/clang/9.0.0/lib/wasi/libclang_rt.builtins-wasm32.a -command = --verbose %s --export-all -o %s +command = --verbose %s --export-all --allow-undefined -o %s [wabt] path = ${slumpspath}/wabt/bin @@ -48,7 +49,7 @@ check = ${path}/souper-check solver = -z3-path=${slumpspath}/souper/third_party/z3/build/z3 passname = libsouperPass.so souper-debug-level = 2 -souper-common = -solver-timeout=1800 -souper-synthesis-debug-level=4 +souper-common = -solver-timeout=600 -souper-synthesis-debug-level=2 souper-level-1 = -souper-infer-iN souper-level-2 = -souper-infer-iN -souper-synthesis-const-with-cegis -souper-infer-inst -souper-synthesis-comps=mul,select,const,const,shl,lshr,ashr,and,or,xor,add,sub,slt,ult,sle,ule,eq,ne souper-level-3 = -souper-infer-iN -souper-enumerative-synthesis-num-instructions=2 -souper-infer-inst -souper-synthesis-comps=mul,select,const,const,shl,lshr,ashr,and,or,xor,add,sub,slt,ult,sle,ule,eq,ne @@ -66,6 +67,13 @@ souper-level-14 = -souper-enumerative-synthesis -souper-enumerative-synthesis-ig souper-level-15 = -souper-enumerative-synthesis -souper-enumerative-synthesis-ignore-cost -souper-infer-iN -souper-enumerative-synthesis-num-instructions=5 -souper-infer-inst -souper-synthesis-comps=mul,select,const,const,shl,lshr,ashr,and,or,xor,add,sub,slt,ult,sle,ule,eq,ne souper-level-16 = -souper-enumerative-synthesis -souper-enumerative-synthesis-ignore-cost -souper-infer-iN -souper-enumerative-synthesis-num-instructions=8 -souper-infer-inst -souper-synthesis-comps=mul,select,const,const,shl,lshr,ashr,and,or,xor,add,sub,slt,ult,sle,ule,eq,ne souper-level-17 = -souper-enumerative-synthesis -souper-enumerative-synthesis-ignore-cost -souper-infer-iN -souper-enumerative-synthesis-num-instructions=15 -souper-infer-inst -souper-synthesis-comps=mul,select,const,const,shl,lshr,ashr,and,or,xor,add,sub,slt,ult,sle,ule,eq,ne +souper-level-18 = -souper-enumerative-synthesis -souper-enumerative-synthesis-ignore-cost -souper-synthesis-ignore-cost -souper-infer-iN -souper-enumerative-synthesis-num-instructions=15 -souper-infer-inst -souper-synthesis-comps=mul,select,const,const,shl,lshr,ashr,and,or,xor,add,sub,slt,ult,sle,ule,eq,ne +souper-level-19 = -souper-enumerative-synthesis -souper-enumerative-synthesis-ignore-cost -souper-synthesis-ignore-cost -souper-infer-iN -souper-enumerative-synthesis-num-instructions=15 -souper-infer-inst -souper-synthesis-comps=mul,select,const,const,shl,lshr,ashr,and,or,xor,add,sub,slt,ult,sle,ule,eq,ne +souper-level-20 = -souper-enumerative-synthesis -souper-enumerative-synthesis-ignore-cost -souper-synthesis-ignore-cost -souper-infer-iN -souper-enumerative-synthesis-num-instructions=15 -souper-infer-inst -souper-synthesis-comps=mul,select,const,const,shl,lshr,ashr,and,or,xor,add,sub,slt,ult,sle,ule,eq,ne +souper-level-21 = -souper-infer-iN -souper-synthesis-ignore-cost -souper-infer-inst -souper-synthesis-comps=mul,select,const,const,shl,lshr,ashr,and,or,xor,add,sub,slt,ult,sle,ule,eq,ne +souper-level-22 = -souper-infer-iN -souper-synthesis-ignore-cost -souper-infer-inst -souper-synthesis-comps=mul,select,const,const,shl,lshr,ashr,and,or,xor,add,sub,slt,ult,sle,ule,eq,ne +souper-level-23 = -souper-infer-iN -souper-synthesis-ignore-cost -souper-infer-inst +souper-level-24 = -souper-infer-iN -souper-synthesis-ignore-cost -souper-infer-inst -souper-synthesis-const-with-cegis -souper-synthesis-comps=mul,select,const,const,shl,lshr,ashr,and,or,xor,add,sub,slt,ult,sle,ule,eq,ne load-opt = -load ${DEFAULT:slumpspath}/souper/build/${passName} -souper list-candidates = ${load-opt} ${souper-common} -souper-valid-count -souper-debug-level=${souper-debug-level} %s ${solver} %s super-opt-pass = ${load-opt} ${souper-common} %s ${solver} -souper-debug-level=${souper-debug-level} %s diff --git a/crow/slumps.py b/crow/slumps.py index e3005c1c..07433598 100644 --- a/crow/slumps.py +++ b/crow/slumps.py @@ -34,32 +34,7 @@ def check_file(self, file: str): return False - def process(self, file, outResult=None): - - program_name = file.split("/")[-1].split(".")[0] - OUT_FOLDER = "%s/%s" % (config["DEFAULT"]["outfolder"], program_name) - onlybc = config["DEFAULT"].getboolean("generate-bc-only") - - if not os.path.exists(OUT_FOLDER): - os.mkdir(OUT_FOLDER) - - if not self.check_file(file): - LOGGER.error(program_name, "Invalid file %s" % (file,)) - return - - if not os.path.exists(OUT_FOLDER): - os.mkdir(OUT_FOLDER) - - ll1 = b'' - - if file.endswith(".c") or file.endswith(".cpp"): - ctoll = CToLLStage(program_name) - ll1 = ctoll(file) - if file.endswith(".ll"): - ll1 = open(file, 'rb') - - lltobc = LLToBC(program_name, debug=False) - bc = lltobc(std=ll1) + def processBitcode(self,bc, outResult, program_name, OUT_FOLDER, onlybc): sha = set() meta = dict() @@ -93,14 +68,36 @@ def process(self, file, outResult=None): for s in sha: LOGGER.warning(program_name, "WASM SHA256 %s. Size %s. Combination %s" % (s, sizes[s][0], sizes[s][1])) - print("Saving metadata...") - metaF = open("%s/%s" % (OUT_FOLDER, "meta.json"), 'w') - metaF.write(json.dumps(meta, indent=4)) - metaF.close() return dict(programs=meta, count=len(meta.keys())) + def process(self, file, OUT_FOLDER, program_name, onlybc, outResult=None): + + + if not os.path.exists(OUT_FOLDER): + os.mkdir(OUT_FOLDER) + + if not self.check_file(file): + LOGGER.error(program_name, "Invalid file %s" % (file,)) + return + + if not os.path.exists(OUT_FOLDER): + os.mkdir(OUT_FOLDER) + + ll1 = b'' + + if file.endswith(".c") or file.endswith(".cpp"): + ctoll = CToLLStage(program_name) + ll1 = ctoll(file) + if file.endswith(".ll"): + ll1 = open(file, 'rb') + + lltobc = LLToBC(program_name, debug=False) + bc = lltobc(std=ll1) + + self.processBitcode(bc, outResult, program_name, OUT_FOLDER, onlybc) + def processLevel(self, level,program_name, bc, OUT_FOLDER, onlybc, meta, outResult): pool = ThreadPoolExecutor(max_workers=config["DEFAULT"].getint("workers")) @@ -221,7 +218,41 @@ def generateWasm(self, namespace, bc, OUT_FOLDER, fileName, debug=True, generate -def process(f): +def getFileMeta( file, outResult=None): + + program_name = file.split("/")[-1].split(".")[0] + OUT_FOLDER = "%s/%s" % (config["DEFAULT"]["outfolder"], program_name) + onlybc = config["DEFAULT"].getboolean("generate-bc-only") + + return (program_name, OUT_FOLDER, onlybc) + +def removeDuplicate(program_name, folder, filt = "*.wasm", remove=False): + + LOGGER.warning(program_name,"Removing duplicated variants") + + l = [f for f in os.listdir(folder) if f.endswith(filt)] + LOGGER.info(program_name,"Total candidates: %s"%(len(l), )) + + st = set() + + for f in l: + realPath = f"{folder}/{f}" + content = open(realPath, 'rb').read() + hashvalue = hashlib.sha256(content).hexdigest() + + if hashvalue in st: + if remove: + os.remove(realPath) + else: + st.add(hashvalue) + LOGGER.info(program_name,"Unique: %s"%(len(st), )) + + + + + + +def process(f, OUT_FOLDER, onlybc, program_name, isBc = False): MANAGER = multiprocessing.Manager() pipeline = Pipeline() @@ -231,9 +262,21 @@ def launch(file, result): result[file] = MANAGER.dict() result[file]["candidates"] = MANAGER.list() try: - pipeline.process(file, outResult=result[file]) + if not isBc: + pipeline.process(file, OUT_FOLDER, program_name, onlybc, outResult=result[file]) + else: + + bc = open(file, 'rb').read() + + if not os.path.exists(f"{OUT_FOLDER}"): + os.mkdir(f"{OUT_FOLDER}") + + tmp = open(f"{OUT_FOLDER}/{program_name}.bc", 'wb') + tmp.write(bc) + tmp.close() + + pipeline.processBitcode(bc, result[file], program_name, OUT_FOLDER, onlybc) except Exception as e: - print(e) result[file]["error"] = e.__str__() th = multiprocessing.Process(target=launch, args=(f, result_overall,)) @@ -255,6 +298,13 @@ def launch(file, result): result_overall[f] = result_overall[f].copy() result_overall = result_overall.copy() + # clean OUT_FOLDER + + remove_duplicate = config["DEFAULT"].getboolean("prune-equal") + filt = ".bc" if onlybc else ".wasm" + + removeDuplicate(program_name,OUT_FOLDER, filt, remove_duplicate) + return result_overall @@ -272,33 +322,33 @@ def main(f): program_name = f.split("/")[-1].split(".")[0] if os.path.isfile(f): - try: - r = process(f) - except Exception as e: - print(e) + program_name, OUT_FOLDER, onlybc = getFileMeta(f) + if f.endswith(".c") or f.endswith(".cpp") or f.endswith(".bc"): + try: + r = process(f, OUT_FOLDER, onlybc, program_name, isBc=f.endswith(".bc")) + except Exception as e: + print(e) else: LOGGER.info(program_name, "Pool size: %s" % config["DEFAULT"].getint("thread-pool-size")) result = dict(namespace=program_name, programs=[]) attach = [] for final in ["%s/%s" % (f, i) for i in os.listdir(f)]: - try: - r = process(final) - result["programs"].append(r) - attach.append(getlogfilename(final.split("/")[-1].replace(".c", ""))) - except Exception as e: - print(e) + program_name, OUT_FOLDER, onlybc = getFileMeta(final) + if final.endswith(".bc") or final.endswith(".c") or final.endswith(".cpp"): + try: + r = process(final, OUT_FOLDER, onlybc, program_name, isBc=final.endswith(".bc")) + result["programs"].append(r) + attach.append(getlogfilename(final.split("/")[-1].replace(".c", ""))) + except Exception as e: + print(e) OUT_FOLDER = "%s" % config["DEFAULT"]["outfolder"] if not os.path.exists(OUT_FOLDER): os.mkdir(OUT_FOLDER) - metaF = open("%s/%s" % (OUT_FOLDER, "meta.json"), 'w') - metaF.write(json.dumps(result, indent=4)) - metaF.close() - print(json.dumps(result, indent=4)) if __name__ == "__main__": diff --git a/crow/start_docker.sh b/crow/start_docker.sh index f0854d3c..ac408f08 100755 --- a/crow/start_docker.sh +++ b/crow/start_docker.sh @@ -4,4 +4,6 @@ nohup redis-server & wget $1 name=${1##*/} shift; -python3.7 slumps.py $@ $name \ No newline at end of file +python3.7 slumps.py $@ $name + +ls -la out | wc -l \ No newline at end of file diff --git a/crow/temp-7.rdb b/crow/temp-7.rdb new file mode 100644 index 00000000..55b143cd Binary files /dev/null and b/crow/temp-7.rdb differ diff --git a/docker_images/Dockerfile.dep b/docker_images/Dockerfile.dep index 4d026ea4..3ca6e722 100644 --- a/docker_images/Dockerfile.dep +++ b/docker_images/Dockerfile.dep @@ -12,6 +12,6 @@ WORKDIR /slumps/souper/build RUN cmake ../ -RUN make -j8 +RUN make -j 8 diff --git a/kubernetes/Readme.md b/kubernetes/Readme.md index 76c9a727..c90eb300 100644 --- a/kubernetes/Readme.md +++ b/kubernetes/Readme.md @@ -5,7 +5,7 @@ For more information about Argo workflows and experiments parallelization, go to ### Settings: - If its an Azure Cluster: ```az aks get-credentials --resource-group myResourceGroup --name myAKSCluster``` - Create argo namespace: ```kubectl create ns argo``` -- Install argo in the cluster: ```kubectl apply -n argo -f https://raw.githubusercontent.com/argoproj/argo/v2.3.0/manifests/install.yaml``` +- Install argo in the cluster: ```kubectl apply -n argo -f https://raw.githubusercontent.com/argoproj/argo/stable/manifests/install.yaml``` - Forward argo ui: ```kubectl port-forward -n argo service/argo-ui 8001:80``` - Create admin role: ```kubectl create rolebinding default-admin --clusterrole=admin --serviceaccount=default:default``` - Ensure you have the minIO service deployed to collect the outputs: ```kubectl create ns minio``` @@ -57,12 +57,28 @@ Examples ``` +```bash + argo submit slumps.yml --watch -p repo="https://github.com/KTH/slumps.git" -p folder="/slumps/benchmark_programs/rossetta/the_sixties" -p raw="https://raw.githubusercontent.com/KTH/slumps/master/benchmark_programs/rossetta/the_sixties" + +``` + + +```bash +argo submit --watch slumps_pararallel_exploration.yml -p repo="https://github.com/kth-tcs/verificatum-vjsc.git" -p raw="https://raw.githubusercontent.com/kth-tcs/verificatum-vjsc/master/src/wasm" -p folder="verificatum-vjsc/src/wasm" +``` ## Dashboard for kubernetes: - ```kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.0-beta8/aio/deploy/recommended.yaml ``` - ```kubectl proxy``` To access the dashboard in localhost - - ```az aks get-credentials --admin``` To be able of monitoring the kubernetes cluster + - ```az aks get-credentials --admin -g tcs -n slumps-WASI``` To be able of monitoring the kubernetes cluster ## [Local deployment with minikube](https://kubernetes.io/docs/setup/learning-environment/minikube/) + +## Useful scripts: + +- get kubernetes token ```kubectl -n kubernetes-dashboard describe secret $(kubectl -n kubernetes-dashboard get secret | grep admin-user | grep token | awk '{print $1}')``` +- List and copy speciic files ```find . -name \*.wasm -exec cp {} \;``` +- Create execytion pattern ```find . -name \*.wasm -exec echo mill cli.run \$pw/{} \;``` +- Extract all tgz from folder ```find . -type f -name "*.tgz" -exec tar -xf {} \;``` diff --git a/kubernetes/deploy.sh b/kubernetes/deploy.sh new file mode 100755 index 00000000..7cf3ebae --- /dev/null +++ b/kubernetes/deploy.sh @@ -0,0 +1,11 @@ +az aks get-credentials --resource-group $1 --name $2 +kubectl create ns argo +kubectl apply -n argo -f https://raw.githubusercontent.com/argoproj/argo/stable/manifests/install.yaml +kubectl create rolebinding default-admin --clusterrole=admin --serviceaccount=default:default + +kubectl create ns minio +kubectl apply -n minio -f minio.yml +kubectl edit cm -n argo workflow-controller-configmap + + +kubectl create secret generic argo-artifacts --from-literal=accesskey="minio" --from-literal=secretkey="minio123" \ No newline at end of file diff --git a/kubernetes/minio.yml b/kubernetes/minio.yml index 5011e944..be0a5952 100755 --- a/kubernetes/minio.yml +++ b/kubernetes/minio.yml @@ -12,7 +12,7 @@ spec: resources: # This is the request for storage. Should be available in the cluster. requests: - storage: 2Ti + storage: 1Ti # Uncomment and add storageClass specific to your requirements below. Read more https://kubernetes.io/docs/concepts/storage/persistent-volumes/#class-1 #storageClassName: --- diff --git a/kubernetes/scripts/create_run_all.sh b/kubernetes/scripts/create_run_all.sh new file mode 100755 index 00000000..1631b223 --- /dev/null +++ b/kubernetes/scripts/create_run_all.sh @@ -0,0 +1,2 @@ + +find $1 -name \*.wasm -exec printf "echo '{}' \nmill cli.run '{}' \n" \;; diff --git a/kubernetes/scripts/merge.py b/kubernetes/scripts/merge.py index 0b881dce..44db9bc6 100644 --- a/kubernetes/scripts/merge.py +++ b/kubernetes/scripts/merge.py @@ -5,7 +5,7 @@ from scipy.stats import pearsonr import matplotlib.pyplot as plt import math - +from scipy.interpolate import interp1d import csv from sklearn import manifold @@ -91,7 +91,7 @@ def flat(l): #print(pearsonr(flat(values_opcode), flat(values_stack))) #plt.legend(ps, names) - latexify(fig_width=9, fig_height=6, font_size=10, tick_size=10) + latexify(fig_width=9, fig_height=8, font_size=10, tick_size=10) marginLeft=0.02 marginRight=0.02 @@ -183,59 +183,84 @@ def plot_horizontal(names, valuesStack, valuesMem): format_axes(ax, hide=['top', 'right'], show=['bottom', 'left']) legends = [None, None] - limx = -0.1 - limX = 2 - for i,v in enumerate(valuesStack): + + def plotSimple(index, ax, v): mx = max(v + [1]) + normalized = [x/mx for x in v] - std = np.std(normalized) - mean = np.mean(normalized) - xmin = mean-std - xmax = mean+std + + bins, edges = np.histogram(normalized, 200) + mx = max(bins) + + print(names[index]) + print(bins, edges) + center = (edges[:-1] + edges[1:]) / 2 + #X = np.array([left,right]).T.flatten() + #Y = np.array([bins,bins]).T.flatten() + #std = np.std(normalized) + #mean = np.mean(normalized) - if xmin <= limx: - limx = xmin - if xmax >= limX: - limX = xmax - if xmin != xmax: - p2 = ax1.plot([xmin, xmax], [i, i], color='orange', linewidth=1) - legends[1] = p2[0] - p1 = ax1.scatter(mean, i, color='red', s=1.5 + 2*math.log(len(normalized) + 1)) + #f2 = interp1d(center, [h/mx for h in hist]) + + # + i = index - 1 + #dots = zip(center, [e/mx + i for e in bins]) + #dots = list(filter(lambda x: x[1] > i, dots)) + #ax.plot(center, [e/mx + i for e in bins],'-', linewidth=1, color='royalblue') + + #ax.scatter([d[0] for d in dots],[d[1] + 0.1 for d in dots], s=3, color='royalblue') + #ax1.fill_between(center, index, [e/mx for e in bins]) + #for i,v in enumerate(valuesStack): + #plotSimple(i, ax1, v) + #p1 = ax1.fill_between(center, i, f2(center), color='royalblue') + #p1 = ax1.scatter(mean, i, color='red', s=1.5 + 2*math.log(len(normalized) + 1)) - legends[0] = p1 + #legends[0] = p1 - print(names[i], mean, std) - ax1.grid(True, linestyle='--', alpha=0.4) - print(legends) - limx1 = -0.1 - limX1 = 2 - for i,v in enumerate(valuesMem): - mx = max(v + [1]) - normalized = [x/mx for x in v] - std = np.std(normalized) - mean = np.mean(normalized) - xmin = mean-std - xmax = mean+std + valuesMem[0] = [1] + for i, v in enumerate(valuesStack): - if xmin <= limx1: - limx1 = xmin - if xmax >= limX1: - limX1 = xmax + ax2.scatter(valuesMem[i], [i]*len(valuesMem[i]), alpha=0.1, color='orange', s=1) + ax1.scatter(v, [i]*len(v), alpha=0.1, color='orange', s=1) + #print(heatmap) + #ax1.violinplot(valuesStack, range(len(names)), vert=False, widths=1.5, points=1000) + + #for pc in partsS1["bodies"]: + # pc.set_linestyle("--") + # pc.set_linewidth(0.6) + + + ax1.grid(True, alpha=0.4) - if xmin != xmax: - ax2.plot([xmin, xmax], [i, i], color='orange', linewidth=1) + print(legends) - ax2.scatter(mean, i, color='red', s=1.5 + 2*math.log(len(normalized) + 1)) + #for i,v in enumerate(valuesMem): + #plotSimple(i, ax2, v) + + #ax1.plot(newBins, f2(newBins), color='blue', linewidth=1) + #p1 = ax2.fill_between(newBins, i, f2(newBins), color='royalblue') + # HACK + #ax2.violinplot(valuesMem, range(len(names)), vert=False, widths=1.5) + + + #for pc in partsS1["bodies"]: + # pc.set_linestyle("--") + # pc.set_linewidth(0.6) + ax2.grid(True, linestyle='--', alpha=0.4) - ax1.set_yticklabels( [n.replace("_", " ").replace("Mt", "Multiplication tables") for n in names]) + + tuple_names = ["%s (%s CMPs)"%(n.replace("_", " ").replace("Mt", "Multiplication tables"), len(valuesStack[i])) for i, n in enumerate(names)] + + ax1.set_yticklabels(tuple_names) ax1.set_yticks(range(len(names))) ax2.set_yticks(range(len(names))) ax2.axes.get_yaxis().set_visible(False) #ax3.axes.get_yaxis().set_visible(False) # Limits - ax1.set_xlim(limx - 0.1, limX + 0.2) - ax2.set_xlim(limx1 - 0.1, limX1 + 0.2) + ax1.set_xlim(0) + ax2.set_xlim(0) + #ax2.set_xlim(limx1 - 0.1, limX1 + 0.2) ax1.set_ylabel('Program name') ax1.set_xlabel('Stack') @@ -243,14 +268,14 @@ def plot_horizontal(names, valuesStack, valuesMem): #ax3.set_xlabel('$\delta$') top = 0.04 - ax1.legend(legends, ('Mean value', 'Standard deviation interval'),loc='best', bbox_to_anchor=(0,1.1)) + # ax1.legend(legends, ('Mean value', 'Standard deviation interval'),loc='best', bbox_to_anchor=(0,1.1)) box1 = ax1.get_position() box2 = ax2.get_position() # box3 = ax2.get_position() pos = 0.2 pos2 = 0.1 - pos3 = 0.1 + pos3 = 0.07 pos4 = 0.2 ax1.set_position([box1.x0 + pos, box1.y0, box1.width - pos2, box1.height - top]) ax2.set_position([box2.x0 + pos3, box2.y0, box2.width - pos3, box2.height - top]) @@ -258,7 +283,8 @@ def plot_horizontal(names, valuesStack, valuesMem): # #plt.show() #plt.subplots_adjust(hspace=0.05) s - plt.savefig("%s/variance.pdf"%out) + #plt.savefig("%s/variance_distribution.pdf"%out) + plt.savefig("variance.png") def plot_manifold(): for i,namespace in enumerate(opcode_matrices): diff --git a/kubernetes/scripts/merge_distribution.py b/kubernetes/scripts/merge_distribution.py new file mode 100644 index 00000000..b0b17f75 --- /dev/null +++ b/kubernetes/scripts/merge_distribution.py @@ -0,0 +1,323 @@ +import os +import json +import numpy as np +from sklearn.decomposition import PCA +from scipy.stats import pearsonr +import matplotlib.pyplot as plt +import math +from scipy.interpolate import interp1d +import csv +from sklearn import manifold + +from common import * + +def process(folder, out): + + values_mem = [] + values_stack = [] + values_opcode = [] + values_static = [] + + opcode_matrices = [] + mem_matrices = [] + names_matrices = [] + + overall = [] + + values_mem_normalized = [] + values_stack_normalized = [] + values_opcode_normalized = [] + values_static_normalized = [] + + + names = [] + ps = [] + + def getDifferentComparisons(matrix): + result = [] + for i in range(1,len(matrix)): + for j in range(i): + result.append(matrix[i][j]) + return result + + def normalize(arr): + return [a/max(max(arr), 1) for a in arr] + + + def flat(l): + flat_list = [] + for sublist in l: + for item in sublist: + flat_list.append(item) + return flat_list + + for namespace in os.listdir(folder): + if namespace != ".DS_Store" and namespace != "variance.pdf" and not namespace.endswith(".pdf") and not namespace.endswith(".png"): + print(namespace) + names.append(namespace) + #DTW_static = json.loads(open("%s/%s/%s_static_DTW.json"%(folder, namespace, namespace), 'r').read()) + try: + DTW_mem = json.loads(open("%s/%s/%s_mem_DTW.json"%(folder, namespace, namespace), 'r').read()) + mem_matrices.append(DTW_mem["DTWS"]) + except: + mem_matrices.append([[]]) + + try: + #DTW_stack = json.loads(open("%s/%s/%s_stack_DTW.json"%(folder, namespace, namespace), 'r').read()) + DTW_opcode = json.loads(open("%s/%s/%s_stack_DTW.json"%(folder, namespace, namespace), 'r').read()) + opcode_matrices.append(DTW_opcode["DTWS"]) + except: + opcode_matrices.append([[]]) + + names_matrices.append(DTW_opcode["NAMES"]) + + #static = getDifferentComparisons(DTW_static["DTWS"]) + #stack = getDifferentComparisons(DTW_stack["DTWS"]) + #mem = getDifferentComparisons(DTW_mem["DTWS"]) + #opcode = getDifferentComparisons(DTW_opcode["DTWS"]) + + #mem_matrices.append(DTW_mem["DTWS"]) + + #values_mem.append(mem) + #values_opcode.append(opcode) + #values_stack.append(stack) + #values_static.append(static) + + #values_static_normalized.append(normalize(static)) + #values_stack_normalized.append(normalize(stack)) + #values_mem_normalized.append(normalize(mem)) + #values_opcode_normalized.append(normalize(opcode)) + + #print(pearsonr(flat(values_opcode), flat(values_stack))) + + #plt.legend(ps, names) + latexify(fig_width=9, fig_height=8, font_size=10, tick_size=10) + + marginLeft=0.02 + marginRight=0.02 + marginBottom = 0.10 + marginTop = 0.2 + #plt.tight_layout(rect=(0 + marginLeft,marginBottom,1 - marginRight,1 - marginTop), w_pad=1.0) + #plt.subplots_adjust(0.5, 0.1, 0.9, 0.9, 0.1, 0.1) + def plot_distribution(): + + fix, axs = plt.subplots(ncols=3) + + ax1, ax2, ax3 = axs + for ax in axs: + format_axes(ax, hide=['top', 'right'], show=['bottom', 'left']) + #ax.violinplot([overall]) +# ax1.violinplot([variances_stack, variances_mem, variances_opcode]) +# ax2.violinplot([variances_static]) + + + ax1.hist(flat(values_stack_normalized)) + ax2.hist(flat(values_opcode_normalized)) + ax3.hist(flat(values_mem_normalized)) + #ax1.set_xticks([1, 2, 3]) + ax1.set_ylabel("Class count") + ax1.set_xlabel("Stack") + ax2.set_xlabel("Opcode") + ax3.set_xlabel("Memory") + #ax2.set_xticks([1]) + #ax2.set_xticklabels( ["Static"]) + #ax2.set_ylim(0) + + #plt.show() + #plt.savefig("%s/variance.pdf"%out) + + + def plot_custom(): + fix, axs = plt.subplots(ncols=2) + + + ax1, ax2 = axs + # + + for ax in axs: + format_axes(ax, hide=['top', 'right'], show=['bottom', 'left']) + + def plotSimple(ax, values, label=""): + #ax.set_yscale('log') + + nm = list(sorted(enumerate(names), key = lambda x: len(values[x[0]]), reverse=True)) + values = list(sorted(values, key = lambda x: len(x), reverse=True)) + limits = [min(flat(values)), max(flat(values)) + [1000]] # + padding + + for index, l in enumerate(values): + #print(index, min(l), max(l)) + ax.axvline(index, linewidth = 2, color=(0.2,0.2,0.2,0.05)) + #print(len(l), len([index for _ in range(len(l))])) + ax.plot([index for _ in l], l, 'o', color='orange') + #ax.axvline(index, min(l)/limits[1], max(l)/limits[1]) + + #ax.set_xticks(np.arange(len(names)), ) + ax.set_xticklabels([n[1] for n in nm], rotation=45) + ax.set_xticks(range(len(values))) + #ax.set_xticks([]) + # + + ax.set_xlabel(label) + + plotSimple(ax1, opcode_matrices, "Stack") + #plotSimple(ax2, values_stack, "Stack") + #plotSimple(ax2, opcode_matrices, "Memory") + #plt.show() + plt.savefig("%s/variance.pdf"%out) + def plot_horizontal(names, valuesStack, valuesMem): + + # Sorting values + names = list(sorted(enumerate(names), key= lambda x: len(valuesStack[x[0]]))) + valuesStack = list(sorted(valuesStack, key = lambda x: len(x))) + valuesMem = list(sorted(valuesMem, key = lambda x: len(x))) + names = [n[1] for n in names] + + # flatten and removing redundant comparisons + valuesStack = [getDifferentComparisons(v) for v in valuesStack] + valuesMem = [getDifferentComparisons(v) for v in valuesMem] + + fig, axs = plt.subplots(ncols=2, sharey=True) + + ax1, ax2 = axs + for ax in axs: + format_axes(ax, hide=['top', 'right'], show=['bottom', 'left']) + + legends = [None, None] + + def plotSimple(index, ax, v): + mx = max(v + [1]) + + normalized = [x/mx for x in v] + + bins, edges = np.histogram(normalized, 200) + mx = max(bins) + + print(names[index]) + print(bins, edges) + center = (edges[:-1] + edges[1:]) / 2 + #X = np.array([left,right]).T.flatten() + #Y = np.array([bins,bins]).T.flatten() + #std = np.std(normalized) + #mean = np.mean(normalized) + + #f2 = interp1d(center, [h/mx for h in hist]) + + # + i = index - 1 + #dots = zip(center, [e/mx + i for e in bins]) + #dots = list(filter(lambda x: x[1] > i, dots)) + #ax.plot(center, [e/mx + i for e in bins],'-', linewidth=1, color='royalblue') + + #ax.scatter([d[0] for d in dots],[d[1] + 0.1 for d in dots], s=3, color='royalblue') + #ax1.fill_between(center, index, [e/mx for e in bins]) + #for i,v in enumerate(valuesStack): + #plotSimple(i, ax1, v) + #p1 = ax1.fill_between(center, i, f2(center), color='royalblue') + #p1 = ax1.scatter(mean, i, color='red', s=1.5 + 2*math.log(len(normalized) + 1)) + + #legends[0] = p1 + ax1.violinplot(valuesStack, range(len(names)), vert=False, widths=1.5, points=1000) + + #for pc in partsS1["bodies"]: + # pc.set_linestyle("--") + # pc.set_linewidth(0.6) + + + ax1.grid(True, alpha=0.4) + + print(legends) + + #for i,v in enumerate(valuesMem): + #plotSimple(i, ax2, v) + + #ax1.plot(newBins, f2(newBins), color='blue', linewidth=1) + #p1 = ax2.fill_between(newBins, i, f2(newBins), color='royalblue') + + # HACK + valuesMem[0] = [1] + ax2.violinplot(valuesMem, range(len(names)), vert=False, widths=1.5) + + + #for pc in partsS1["bodies"]: + # pc.set_linestyle("--") + # pc.set_linewidth(0.6) + + ax2.grid(True, linestyle='--', alpha=0.4) + + tuple_names = ["%s (%s CMPs)"%(n.replace("_", " ").replace("Mt", "Multiplication tables"), len(valuesStack[i])) for i, n in enumerate(names)] + + ax1.set_yticklabels(tuple_names) + ax1.set_yticks(range(len(names))) + ax2.set_yticks(range(len(names))) + ax2.axes.get_yaxis().set_visible(False) + #ax3.axes.get_yaxis().set_visible(False) + # Limits + ax1.set_xlim(0) + ax2.set_xlim(0) + #ax2.set_xlim(limx1 - 0.1, limX1 + 0.2) + + ax1.set_ylabel('Program name') + ax1.set_xlabel('Stack') + ax2.set_xlabel('Memory') + #ax3.set_xlabel('$\delta$') + + top = 0.04 + # ax1.legend(legends, ('Mean value', 'Standard deviation interval'),loc='best', bbox_to_anchor=(0,1.1)) + + box1 = ax1.get_position() + box2 = ax2.get_position() + # box3 = ax2.get_position() + pos = 0.25 + pos2 = 0.1 + pos3 = 0.07 + pos4 = 0.2 + ax1.set_position([box1.x0 + pos, box1.y0, box1.width - pos2, box1.height - top]) + ax2.set_position([box2.x0 + pos3, box2.y0, box2.width - pos3, box2.height - top]) + #ax3.set_position([box3.x0 + pos3 + pos, box3.y0, box3.width - pos4, box3.height - top]) + # + #plt.show() + #plt.subplots_adjust(hspace=0.05) s + plt.savefig("%s/variance_distribution.pdf"%out) + #plt.savefig("variance.png") + def plot_manifold(): + + for i,namespace in enumerate(opcode_matrices): + + dists = namespace + cities = [n.replace("_", " ") for n in names_matrices[i]] + + adist = np.array(dists) + amax = max(1, np.amax(adist)) + adist /= amax + + mds = manifold.MDS(n_components=2, dissimilarity="precomputed", random_state=6) + results = mds.fit(adist) + + coords = results.embedding_ + + plt.subplots_adjust(bottom = 0.1) + plt.scatter( + coords[:, 0], coords[:, 1], marker = 'o' + ) + for label, x, y in zip(cities, coords[:, 0], coords[:, 1]): + plt.annotate( + label, + xy = (x, y), xytext = (-20, 20), + textcoords = 'offset points', ha = 'right', va = 'bottom', + bbox = dict(boxstyle = 'round,pad=0.5', fc = 'yellow', alpha = 0.5), + arrowprops = dict(arrowstyle = '->', connectionstyle = 'arc3,rad=0')) + + plt.savefig("%s/%s.pdf"%(folder, names[i])) + plt.clf() + + #plot_distribution() + #plot_custom() + # plot_manifold() + plot_horizontal(names, opcode_matrices, mem_matrices) + + + + + +if __name__ == "__main__": + process("/programs/results", "/programs/results") \ No newline at end of file diff --git a/kubernetes/scripts/run_all.sh b/kubernetes/scripts/run_all.sh new file mode 100644 index 00000000..c39af99e --- /dev/null +++ b/kubernetes/scripts/run_all.sh @@ -0,0 +1,112 @@ +echo '/Users/javierca/Documents/slumps/results/wasms/Cartesian_product_of_two_or_more_lists.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Cartesian_product_of_two_or_more_lists.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Evaluate_binomial_coefficients.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Evaluate_binomial_coefficients.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Knuth_shuffle.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Knuth_shuffle.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Flatten_a_list.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Flatten_a_list.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Best_shuffle.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Best_shuffle.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Sierpinski_triangle.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Sierpinski_triangle.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Law_of_cosines_-_triples.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Law_of_cosines_-_triples.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Tokenize_a_string_with_escaping.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Tokenize_a_string_with_escaping.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Nth_root.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Nth_root.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Price_fraction.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Price_fraction.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Sailors,_coconuts_and_a_monkey_problem.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Sailors,_coconuts_and_a_monkey_problem.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Middle_three_digits.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Middle_three_digits.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Holidays_related_to_Easter.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Holidays_related_to_Easter.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Zeckendorf_number_representation.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Zeckendorf_number_representation.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/URL_decoding.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/URL_decoding.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/99_Bottles_of_Beer.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/99_Bottles_of_Beer.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Gray_code.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Gray_code.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Thiele's_interpolation_formula.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Thiele's_interpolation_formula.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Sort_numbers_lexicographically.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Sort_numbers_lexicographically.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Hilbert_curve.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Hilbert_curve.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Burrows–Wheeler_transform.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Burrows–Wheeler_transform.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Execute_HQ9+.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Execute_HQ9+.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Catalan_numbers.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Catalan_numbers.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Roots_of_unity.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Roots_of_unity.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Day_of_the_week.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Day_of_the_week.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Magic_squares_of_singly_even_order.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Magic_squares_of_singly_even_order.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Feigenbaum_constant_calculation.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Feigenbaum_constant_calculation.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Combinations.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Combinations.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Ramsey's_theorem.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Ramsey's_theorem.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Permutations-Rank_of_a_permutation.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Permutations-Rank_of_a_permutation.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Hofstadter-Conway_$10,000_sequence.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Hofstadter-Conway_$10,000_sequence.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Sparkline_in_unicode.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Sparkline_in_unicode.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Show_Ascii_table.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Show_Ascii_table.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Continued_fraction.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Continued_fraction.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Fibonacci_sequence.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Fibonacci_sequence.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Largest_number_divisible_by_its_digits.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Largest_number_divisible_by_its_digits.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Multiplication_tables.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Multiplication_tables.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Longest_increasing_subsequence.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Longest_increasing_subsequence.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Sorting_algorithms-Bubble_sort.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Sorting_algorithms-Bubble_sort.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/N'th.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/N'th.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Horner's_rule_for_polynomial_evaluation.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Horner's_rule_for_polynomial_evaluation.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Sorting_algorithms-Merge_sort.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Sorting_algorithms-Merge_sort.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Total_circles_area.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Total_circles_area.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Remove_duplicate_elements.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Remove_duplicate_elements.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Forward_difference.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Forward_difference.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Fast_Fourier_transform.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Fast_Fourier_transform.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Babbage_problem.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Babbage_problem.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Vampire_number.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Vampire_number.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Quickselect_algorithm.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Quickselect_algorithm.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Cycle_detection.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Cycle_detection.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Chebyshev_coefficients.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Chebyshev_coefficients.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Deconvolution-1D.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Deconvolution-1D.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Palindrome_detection.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Palindrome_detection.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/100_doors.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/100_doors.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Look-and-say_sequence.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Look-and-say_sequence.wasm' +echo '/Users/javierca/Documents/slumps/results/wasms/Mian-Chowla_sequence.wasm' +mill cli.run '/Users/javierca/Documents/slumps/results/wasms/Mian-Chowla_sequence.wasm' diff --git a/kubernetes/scripts/variance.png b/kubernetes/scripts/variance.png new file mode 100644 index 00000000..3c141ac7 Binary files /dev/null and b/kubernetes/scripts/variance.png differ diff --git a/kubernetes/slumps-local.yml b/kubernetes/slumps-local.yml new file mode 100644 index 00000000..a3e590be --- /dev/null +++ b/kubernetes/slumps-local.yml @@ -0,0 +1,94 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Workflow +metadata: + generateName: slumps-distributed-wasi- +spec: + entrypoint: slumps-distributed + volumeClaimTemplates: + - metadata: + name: workdir + spec: + accessModes: [ "ReadWriteOnce" ] + resources: + requests: + storage: 5Gi + - metadata: + name: logs + spec: + accessModes: [ "ReadWriteOnce" ] + resources: + requests: + storage: 5Gi + parallelism: 3 + arguments: + parameters: + - name: repo + - name: folder + - name: raw + templates: + - name: slumps-distributed + steps: + - - name: download-programs + template: download-template + - - name: slumpsfy + template: slumps-template + arguments: + parameters: + - name: program + value: "{{item}}" + withParam: "{{steps.download-programs.outputs.parameters.programs}}" + continueOn: + failed: true + - - name: merge + template: merge-template + - name: download-template + script: + image: madshansen/docker-git-ftp + command: [bash] + source: | + apt-get update && apt-get install -y python && git clone "{{workflow.parameters.repo}}" && ls -l "{{workflow.parameters.folder}}" | wc -l && python -c "import json,os; print(json.dumps(os.listdir('{{workflow.parameters.folder}}')))" > /out.txt && cat /out.txt + outputs: + parameters: + - name: programs + valueFrom: + path: "/out.txt" + - name: merge-template + container: + image: docker/whalesay:latest + command: [sh, -c] + args: ["ls /results"] + volumeMounts: + - name: workdir + mountPath: /results + - name: logs + mountPath: /logs + outputs: + artifacts: + - name: results + path: /results + - name: logs + path: /logs + + - name: slumps-template + retryStrategy: + limit: 5 + inputs: + parameters: + - name: program + + container: + image: "jacarte/slumps:crow" + command: [/bin/bash] + args: [start_docker.sh,"{{workflow.parameters.raw}}/{{inputs.parameters.program}}", "-DEFAULT.timeout", "3600","-DEFAULT.link-wasi", "True", ] + volumeMounts: + - name: workdir + mountPath: /slumps/crow/out + - name: logs + mountPath: /slumps/crow/logs + #resources: + # requests: + # memory: 2G + # cpu: 1 + # limits: + # memory: 4G + # cpu: 2 diff --git a/kubernetes/slumps.yml b/kubernetes/slumps.yml index 4b47697a..035d3b9b 100644 --- a/kubernetes/slumps.yml +++ b/kubernetes/slumps.yml @@ -4,7 +4,7 @@ metadata: generateName: slumps-distributed-wasi- spec: entrypoint: slumps-distributed - parallelism: 60 + parallelism: 10 arguments: parameters: - name: repo @@ -47,13 +47,13 @@ spec: - name: logs path: /slumps/crow/logs container: - image: "jacarte/slumps:app" + image: "jacarte/slumps:crow" command: [/bin/bash] - args: [start_docker.sh,"{{workflow.parameters.raw}}/{{inputs.parameters.program}}", "-DEFAULT.timeout", "36000","-DEFAULT.link-wasi", "True", ] - # resources: - # requests: - # memory: 2.5G - # cpu: 0.5 - # limits: - # memory: 4G - # cpu: 2 + args: [start_docker.sh,"{{workflow.parameters.raw}}/{{inputs.parameters.program}}", "-DEFAULT.timeout", "3600","-DEFAULT.link-wasi", "True", ] + resources: + requests: + memory: 1.5G + cpu: 1 + limits: + memory: 4G + cpu: 2 diff --git a/kubernetes/slumps_pararallel_exploration.yml b/kubernetes/slumps_pararallel_exploration.yml new file mode 100644 index 00000000..9b207bc3 --- /dev/null +++ b/kubernetes/slumps_pararallel_exploration.yml @@ -0,0 +1,94 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Workflow +metadata: + generateName: slumps-distributed-wasi- +spec: + entrypoint: slumps-distributed + parallelism: 9 + arguments: + parameters: + - name: repo + - name: folder + - name: raw + templates: + - name: slumps-distributed + steps: + - - name: download-programs + template: download-template + - - name: explore + template: explore-template + arguments: + parameters: + - name: program + value: "{{item}}" + withParam: "{{steps.download-programs.outputs.parameters.programs}}" + continueOn: + failed: true + - name: download-template + script: + image: madshansen/docker-git-ftp + command: [bash] + source: | + apt-get update && apt-get install -y python && git clone "{{workflow.parameters.repo}}" && ls -l "{{workflow.parameters.folder}}" | wc -l && python -c "import json,os; print(json.dumps(os.listdir('{{workflow.parameters.folder}}')))" > /out.txt && cat /out.txt + outputs: + parameters: + - name: programs + valueFrom: + path: "/out.txt" + + - name: explore-template + inputs: + parameters: + - name: program + steps: + - - name: slumpsfy + template: slumps-template + arguments: + parameters: + - name: program + value: "{{item.program}}" + - name: order + value: "{{item.order}}" + withItems: + - { program: "{{inputs.parameters.program}}", order: "17" } + - { program: "{{inputs.parameters.program}}", order: "12" } + - { program: "{{inputs.parameters.program}}", order: "13" } + - { program: "{{inputs.parameters.program}}", order: "14" } + - { program: "{{inputs.parameters.program}}", order: "11" } + - { program: "{{inputs.parameters.program}}", order: "1" } + - { program: "{{inputs.parameters.program}}", order: "2" } + - { program: "{{inputs.parameters.program}}", order: "3" } + - { program: "{{inputs.parameters.program}}", order: "4" } + - { program: "{{inputs.parameters.program}}", order: "5" } + - { program: "{{inputs.parameters.program}}", order: "6" } + - { program: "{{inputs.parameters.program}}", order: "7" } + - { program: "{{inputs.parameters.program}}", order: "8" } + - { program: "{{inputs.parameters.program}}", order: "9" } + - { program: "{{inputs.parameters.program}}", order: "10" } + - { program: "{{inputs.parameters.program}}", order: "15" } + - { program: "{{inputs.parameters.program}}", order: "16" } + continueOn: + failed: true + - name: slumps-template + retryStrategy: {} + inputs: + parameters: + - name: program + - name: order + outputs: + artifacts: + - name: slumps + path: /slumps/crow/out + - name: logs + path: /slumps/crow/logs + container: + image: "jacarte/slumps:crow1" + command: [/bin/bash] + args: [start_docker.sh,"{{workflow.parameters.raw}}/{{inputs.parameters.program}}","-DEFAULT.order", "{{inputs.parameters.order}}", "-DEFAULT.timeout", "25200","-DEFAULT.link-wasi", "True", ] + #resources: + # requests: + # memory: 1.5G + # cpu: 1 + # limits: + # memory: 4G + # cpu: 2 diff --git a/kubernetes/slumps_pararallel_exploration_single.yml b/kubernetes/slumps_pararallel_exploration_single.yml new file mode 100644 index 00000000..cf78b208 --- /dev/null +++ b/kubernetes/slumps_pararallel_exploration_single.yml @@ -0,0 +1,51 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Workflow +metadata: + generateName: slumps-simple-program-wasi- +spec: + entrypoint: slumps-distributed + parallelism: 1 + arguments: + parameters: + - name: repo + - name: folder + - name: raw + - name: program + templates: + - name: slumps-distributed + steps: + steps: + - - name: slumpsfy + template: slumps-template + arguments: + parameters: + - name: program + value: "{{workflow.parameters.program}}" + - name: order + value: "{{item.order}}" + withItems: + - { order: "24" } + - { order: "23" } + - { order: "22" } + - { order: "18" } + - { order: "19" } + - { order: "20" } + continueOn: + failed: true + - name: slumps-template + retryStrategy: {} + inputs: + parameters: + - name: program + - name: order + outputs: + artifacts: + - name: slumps + path: /slumps/crow/out + - name: logs + path: /slumps/crow/logs + container: + image: "jacarte/slumps:crow2" + command: [/bin/bash] + args: [start_docker.sh,"{{workflow.parameters.raw}}/{{inputs.parameters.program}}","-DEFAULT.order", "{{inputs.parameters.order}}", "-DEFAULT.timeout", "25200","-DEFAULT.link-wasi", "True", ] + \ No newline at end of file diff --git a/run.sh b/run.sh index a1fe23f9..f03b6132 100755 --- a/run.sh +++ b/run.sh @@ -1,3 +1,3 @@ #! /bin/bash -docker run -it --rm -v $(pwd):/inputs -v $(pwd)/crow_out:/slumps/crow/out -v $pw/crow:/slumps/crow -v $(pwd)/logs:/slumps/crow/logs --entrypoint /bin/bash jacarte/slumps:crow ./start_docker_no_wget.sh /inputs/$1 \ No newline at end of file +docker run -it --rm -v $(pwd):/inputs -v $(pwd)/crow_out:/slumps/crow/out -v $(pwd)/crow:/slumps/crow -v $(pwd)/logs:/slumps/crow/logs --entrypoint /bin/bash jacarte/slumps:crow2 ./start_docker_no_wget.sh /inputs/$1 \ No newline at end of file diff --git a/utils/pipeline/.gitignore b/utils/pipeline/.gitignore index 35b72a92..09f6a772 100644 --- a/utils/pipeline/.gitignore +++ b/utils/pipeline/.gitignore @@ -1,2 +1,2 @@ crawl -wasi-libc \ No newline at end of file +wasi-libc/ \ No newline at end of file diff --git a/utils/pipeline/wasi-libc b/utils/pipeline/wasi-libc deleted file mode 160000 index 41af0db3..00000000 --- a/utils/pipeline/wasi-libc +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 41af0db30f459241d081f1a8bc232102ed9cfbde diff --git a/utils/reports/data.bck2.json b/utils/reports/data.bck2.json new file mode 100644 index 00000000..cf25a678 --- /dev/null +++ b/utils/reports/data.bck2.json @@ -0,0 +1,402 @@ +{ + "count": 788, + "title": "All programs", + "color": "green", + "children": { + "compiled": { + "count": 601, + "title": "Successful compilation to WASM", + "color": "green", + "children": { + "only_original": { + "count": 541, + "children": { + "timeout": { + "count": 339, + "title": "Timeout in randomization stage", + "color": "orange" + }, + "no_subexpression": { + "count": 83, + "title": "No subexpresssion to replace", + "color": "wheat" + }, + "fail_optimize": { + "count": 119, + "title": "Replacement fail in final program", + "color": "indianred" + } + } + }, + "with_variants": { + "count": 60, + "variants": [ + [ + 26069, + 3224, + 25, + "Multiplication_tables" + ], + [ + 82283, + 2103, + 158, + "Law_of_cosines_-_triples" + ], + [ + 32, + 16, + 63, + "URL_decoding" + ], + [ + 129, + 16, + 19, + "Roots_of_unity" + ], + [ + 44688, + 16, + 91, + "Mian-Chowla_sequence" + ], + [ + 17, + 9, + 312, + "Holidays_related_to_Easter" + ], + [ + 33, + 8, + 14, + "100_doors" + ], + [ + 65, + 8, + 59, + "N'th" + ], + [ + 9, + 8, + 154, + "Hilbert_curve" + ], + [ + 11, + 7, + 84, + "Tokenize_a_string_with_escaping" + ], + [ + 5, + 4, + 27, + "Middle_three_digits" + ], + [ + 33, + 4, + 8, + "Show_Ascii_table" + ], + [ + 5, + 4, + 71, + "Combinations" + ], + [ + 5, + 4, + 112, + "Evaluate_binomial_coefficients" + ], + [ + 5, + 4, + 326, + "Sailors,_coconuts_and_a_monkey_problem" + ], + [ + 9, + 4, + 59, + "Permutations-Rank_of_a_permutation" + ], + [ + 45, + 4, + 7, + "Babbage_problem" + ], + [ + 9, + 4, + 6, + "Fibonacci_sequence" + ], + [ + 37544, + 4, + 58, + "Burrows\u2013Wheeler_transform" + ], + [ + 54632, + 4, + 80, + "Cartesian_product_of_two_or_more_lists" + ], + [ + 192, + 3, + 24, + "Sierpinski_triangle" + ], + [ + 9, + 3, + 173, + "Magic_squares_of_singly_even_order" + ], + [ + 5, + 3, + 3, + "99_Bottles_of_Beer" + ], + [ + 4, + 2, + 29, + "Largest_number_divisible_by_its_digits" + ], + [ + 3, + 2, + 21, + "Thiele's_interpolation_formula" + ], + [ + 3, + 2, + 10, + "Knuth_shuffle" + ], + [ + 3, + 2, + -1, + "Best_shuffle" + ], + [ + 65, + 2, + 15, + "Chebyshev_coefficients" + ], + [ + 17, + 2, + 17, + "Hofstadter-Conway_$10,000_sequence" + ], + [ + 3, + 2, + 132, + "Vampire_number" + ], + [ + 5, + 2, + 51, + "Remove_duplicate_elements" + ], + [ + 3, + 2, + 97, + "Zeckendorf_number_representation" + ], + [ + 5, + 2, + 32, + "Day_of_the_week" + ], + [ + 3, + 2, + 7, + "Gray_code" + ], + [ + 3, + 2, + 89, + "Sort_numbers_lexicographically" + ], + [ + 9, + 2, + 12, + "Compare_a_list_of_strings" + ], + [ + 5, + 2, + 6, + "Sorting_algorithms-Sleep_sort" + ], + [ + 68, + 2, + 27, + "Total_circles_area" + ], + [ + 33, + 2, + 89, + "Ramsey's_theorem" + ], + [ + 4097, + 2, + 47, + "Quickselect_algorithm" + ], + [ + 129, + 2, + 40, + "Sorting_algorithms-Bubble_sort" + ], + [ + 33, + 2, + 26, + "Longest_increasing_subsequence" + ], + [ + 3, + 2, + 48, + "Fast_Fourier_transform" + ], + [ + 9, + 2, + 10, + "Sorting_algorithms-Gnome_sort" + ], + [ + 65, + 2, + 16, + "Forward_difference" + ], + [ + 3, + 2, + 12, + "Palindrome_detection" + ], + [ + 5, + 2, + 4, + "Horner's_rule_for_polynomial_evaluation" + ], + [ + 257, + 2, + 18, + "Continued_fraction" + ], + [ + 17, + 2, + 21, + "Look-and-say_sequence" + ], + [ + 513, + 2, + 22, + "Sparkline_in_unicode" + ], + [ + 6, + 2, + 40, + "Image_noise" + ], + [ + 136, + 2, + 24, + "Nth_root" + ], + [ + 17, + 2, + 13, + "Price_fraction" + ], + [ + 8193, + 2, + 5, + "Flatten_a_list" + ], + [ + 3, + 2, + 93, + "Cycle_detection" + ], + [ + 16385, + 2, + 54, + "Sorting_algorithms-Merge_sort" + ], + [ + 3, + 2, + 36, + "Feigenbaum_constant_calculation" + ], + [ + 3, + 2, + 68, + "Deconvolution-1D" + ], + [ + 9, + 2, + 10, + "Execute_HQ9+" + ], + [ + 3, + 2, + 103, + "Catalan_numbers" + ] + ], + "meta": [], + "title": "Programs with multiple variants", + "color": "mediumseagreen" + } + } + } + } +} \ No newline at end of file diff --git a/utils/reports/data.json b/utils/reports/data.json index cf25a678..d3d5e97b 100644 --- a/utils/reports/data.json +++ b/utils/reports/data.json @@ -1,65 +1,75 @@ { - "count": 788, + "count": 60, "title": "All programs", "color": "green", "children": { + "fail_to_compile": { + "count": 3, + "title": "Fail to port to WASM", + "color": "red" + }, "compiled": { - "count": 601, + "count": 57, "title": "Successful compilation to WASM", "color": "green", "children": { "only_original": { - "count": 541, + "count": 3, "children": { "timeout": { - "count": 339, - "title": "Timeout in randomization stage", - "color": "orange" + "count": 2, + "title": "Timeout in superoptimization stage", + "color": "red" }, "no_subexpression": { - "count": 83, - "title": "No subexpresssion to replace", - "color": "wheat" + "count": 0, + "title": "No subexpresssion no optimize", + "color": "orange" }, "fail_optimize": { - "count": 119, - "title": "Replacement fail in final program", - "color": "indianred" + "count": 1, + "title": "LLVM opt error", + "color": "orange" + }, + "other": { + "count": 0, + "title": "Other reason", + "color": "orange" } } }, "with_variants": { - "count": 60, + "count": 54, "variants": [ [ - 26069, - 3224, + 12993, + 2691, 25, "Multiplication_tables" ], [ - 82283, - 2103, + 25919, + 1026, 158, "Law_of_cosines_-_triples" ], [ - 32, - 16, + 62, + 46, 63, "URL_decoding" ], [ - 129, + 29111, 16, - 19, - "Roots_of_unity" + 91, + "Mian-Chowla_sequence" ], [ - 44688, + 129, 16, - 91, - "Mian-Chowla_sequence" + 19, + "Roots_of_unity" ], [ 17, @@ -73,6 +83,12 @@ 14, "100_doors" ], + [ + 9, + 8, + 154, + "Hilbert_curve" + ], [ 65, 8, @@ -80,28 +96,34 @@ "N'th" ], [ - 9, - 8, - 154, - "Hilbert_curve" + 16, + 6, + 59, + "Permutations-Rank_of_a_permutation" ], [ - 11, + 59, + 4, 7, - 84, - "Tokenize_a_string_with_escaping" + "Babbage_problem" ], [ 5, 4, - 27, - "Middle_three_digits" + 107, + "Best_shuffle" ], [ - 33, + 43628, 4, - 8, - "Show_Ascii_table" + 58, + "Burrows\u2013Wheeler_transform" + ], + [ + 26398, + 4, + 80, + "Cartesian_product_of_two_or_more_lists" ], [ 5, @@ -115,24 +137,6 @@ 112, "Evaluate_binomial_coefficients" ], - [ - 5, - 4, - 326, - "Sailors,_coconuts_and_a_monkey_problem" - ], - [ - 9, - 4, - 59, - "Permutations-Rank_of_a_permutation" - ], - [ - 45, - 4, - 7, - "Babbage_problem" - ], [ 9, 4, @@ -140,28 +144,22 @@ "Fibonacci_sequence" ], [ - 37544, + 5, 4, - 58, - "Burrows\u2013Wheeler_transform" + 326, + "Sailors,_coconuts_and_a_monkey_problem" ], [ - 54632, + 33, 4, - 80, - "Cartesian_product_of_two_or_more_lists" - ], - [ - 192, - 3, - 24, - "Sierpinski_triangle" + 8, + "Show_Ascii_table" ], [ - 9, - 3, - 173, - "Magic_squares_of_singly_even_order" + 17, + 4, + 84, + "Tokenize_a_string_with_escaping" ], [ 5, @@ -170,28 +168,16 @@ "99_Bottles_of_Beer" ], [ - 4, - 2, - 29, - "Largest_number_divisible_by_its_digits" - ], - [ - 3, - 2, - 21, - "Thiele's_interpolation_formula" - ], - [ + 9, 3, - 2, - 10, - "Knuth_shuffle" + 173, + "Magic_squares_of_singly_even_order" ], [ 3, 2, - -1, - "Best_shuffle" + 103, + "Catalan_numbers" ], [ 65, @@ -200,28 +186,22 @@ "Chebyshev_coefficients" ], [ - 17, - 2, - 17, - "Hofstadter-Conway_$10,000_sequence" - ], - [ - 3, + 9, 2, - 132, - "Vampire_number" + 12, + "Compare_a_list_of_strings" ], [ - 5, + 257, 2, - 51, - "Remove_duplicate_elements" + 18, + "Continued_fraction" ], [ 3, 2, - 97, - "Zeckendorf_number_representation" + 93, + "Cycle_detection" ], [ 5, @@ -230,52 +210,52 @@ "Day_of_the_week" ], [ - 3, + 6, 2, - 7, - "Gray_code" + 68, + "Deconvolution-1D" ], [ - 3, + 9, 2, - 89, - "Sort_numbers_lexicographically" + 10, + "Execute_HQ9+" ], [ - 9, + 4, 2, - 12, - "Compare_a_list_of_strings" + 48, + "Fast_Fourier_transform" ], [ - 5, + 4, 2, - 6, - "Sorting_algorithms-Sleep_sort" + 36, + "Feigenbaum_constant_calculation" ], [ - 68, + 8193, 2, - 27, - "Total_circles_area" + 5, + "Flatten_a_list" ], [ - 33, + 17, 2, - 89, - "Ramsey's_theorem" + 17, + "Hofstadter-Conway_$10,000_sequence" ], [ - 4097, + 5, 2, - 47, - "Quickselect_algorithm" + 4, + "Horner's_rule_for_polynomial_evaluation" ], [ - 129, + 6, 2, - 40, - "Sorting_algorithms-Bubble_sort" + 29, + "Largest_number_divisible_by_its_digits" ], [ 33, @@ -284,117 +264,111 @@ "Longest_increasing_subsequence" ], [ - 3, - 2, - 48, - "Fast_Fourier_transform" - ], - [ - 9, + 17, 2, - 10, - "Sorting_algorithms-Gnome_sort" + 21, + "Look-and-say_sequence" ], [ - 65, + 136, 2, - 16, - "Forward_difference" + 24, + "Nth_root" ], [ - 3, + 5, 2, 12, "Palindrome_detection" ], [ - 5, - 2, - 4, - "Horner's_rule_for_polynomial_evaluation" - ], - [ - 257, + 17, 2, - 18, - "Continued_fraction" + 13, + "Price_fraction" ], [ - 17, + 4097, 2, - 21, - "Look-and-say_sequence" + 47, + "Quickselect_algorithm" ], [ - 513, + 33, 2, - 22, - "Sparkline_in_unicode" + 89, + "Ramsey's_theorem" ], [ - 6, + 5, 2, - 40, - "Image_noise" + 51, + "Remove_duplicate_elements" ], [ - 136, + 33, 2, - 24, - "Nth_root" + 14, + "Sierpinski_triangle" ], [ - 17, + 3, 2, - 13, - "Price_fraction" + 89, + "Sort_numbers_lexicographically" ], [ - 8193, + 129, 2, - 5, - "Flatten_a_list" + 40, + "Sorting_algorithms-Bubble_sort" ], [ - 3, + 9, 2, - 93, - "Cycle_detection" + 10, + "Sorting_algorithms-Gnome_sort" ], [ - 16385, + 3139, 2, 54, "Sorting_algorithms-Merge_sort" ], [ - 3, + 513, 2, - 36, - "Feigenbaum_constant_calculation" + 22, + "Sparkline_in_unicode" ], [ 3, 2, + 21, + "Thiele's_interpolation_formula" + ], + [ 68, - "Deconvolution-1D" + 2, + 28, + "Total_circles_area" ], [ - 9, + 3, 2, - 10, - "Execute_HQ9+" + 132, + "Vampire_number" ], [ 3, 2, - 103, - "Catalan_numbers" + 97, + "Zeckendorf_number_representation" ] ], "meta": [], "title": "Programs with multiple variants", - "color": "mediumseagreen" + "color": "green" } } } diff --git a/utils/reports/plot_meta_stage1.py b/utils/reports/plot_meta_stage1.py index 61c8f92a..5d6bd9bf 100644 --- a/utils/reports/plot_meta_stage1.py +++ b/utils/reports/plot_meta_stage1.py @@ -9,9 +9,9 @@ def process(meta): - latexify(fig_width=9, fig_height=4, font_size=13, tick_size=9) + # latexify(fig_width=9, fig_height=4, font_size=13, tick_size=9) - fix, ax = plt.subplots() + fix, ax = plt.subplots(figsize=(15, 40)) format_axes(ax, hide=['top', 'right'], show=['bottom', 'left']) @@ -46,7 +46,8 @@ def process(meta): #plt.yticks(np.arange(0, 81, 10)) #plt.show() - plt.savefig("/Users/javierca/Documents/Develop/CROW-paper/plots/stage1.pdf") + #plt.savefig("/Users/javierca/Documents/Develop/CROW-paper/plots/stage1.pdf")\ + plt.savefig("stage1.png", dpi=600) if __name__ == "__main__": diff --git a/utils/reports/sphx_glr_named_colors_003.webp b/utils/reports/sphx_glr_named_colors_003.webp deleted file mode 100644 index da52ef11..00000000 Binary files a/utils/reports/sphx_glr_named_colors_003.webp and /dev/null differ diff --git a/utils/reports/stage1.png b/utils/reports/stage1.png new file mode 100644 index 00000000..a2f39865 Binary files /dev/null and b/utils/reports/stage1.png differ diff --git a/utils/reports/stat.py b/utils/reports/stat.py index 2c1617c7..d17a4b81 100644 --- a/utils/reports/stat.py +++ b/utils/reports/stat.py @@ -269,6 +269,8 @@ def stat_programs(header, swam_folder): fail_to_job += 1 + print(baseline) + for wa in os.listdir("out/%s"%l): # sanitizing if wa.endswith(".wasm"):