From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.saout.de ([127.0.0.1]) by localhost (mail.saout.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Y5cZU0VXG6y2 for ; Wed, 20 Nov 2013 20:05:15 +0100 (CET) Received: from mail-ee0-x231.google.com (mail-ee0-x231.google.com [IPv6:2a00:1450:4013:c00::231]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.saout.de (Postfix) with ESMTPS for ; Wed, 20 Nov 2013 20:05:15 +0100 (CET) Received: by mail-ee0-f49.google.com with SMTP id b47so2477486eek.8 for ; Wed, 20 Nov 2013 11:05:10 -0800 (PST) Message-ID: <528D07E2.9040601@gmail.com> Date: Wed, 20 Nov 2013 20:05:06 +0100 From: Milan Broz MIME-Version: 1.0 References: <528CE6D7.8030005@riseup.net> In-Reply-To: <528CE6D7.8030005@riseup.net> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [dm-crypt] 1.6.2 - waiting for zero, luksFormat hung List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "shmick@riseup.net" Cc: dm-crypt@saout.de On 11/20/2013 05:44 PM, shmick@riseup.net wrote: > ./configure --with-crypto_backend=openssl --enable-dev-random > > cryptsetup benchmark > > # Tests are approximate using memory only (no storage IO). > cryptsetup: relocation error: cryptsetup: symbol crypt_benchmark_kdf, > version CRYPTSETUP_1.0 not defined in file libcryptsetup.so.4 with link > time reference You are compiling own version, but code apparently tries to load old libryptsetup library from system. (And it seems I did lib versioning wrong here ...) Either try to run src/cryptsetup (libtool wrapper should provide proper paths) or override library path using LD_LIBRARY_PATH. (it should point to src/lib/.libs or so) (Or if you installed compiled version, be sure it overwrites old libcryptsetup.) Milan