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 aewbZ8wVbEcN for ; Sat, 5 Jan 2013 12:05:40 +0100 (CET) Received: from mail-ee0-f48.google.com (mail-ee0-f48.google.com [74.125.83.48]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.saout.de (Postfix) with ESMTPS for ; Sat, 5 Jan 2013 12:05:40 +0100 (CET) Received: by mail-ee0-f48.google.com with SMTP id b57so8620438eek.35 for ; Sat, 05 Jan 2013 03:05:40 -0800 (PST) Message-ID: <50E80901.5040103@gmail.com> Date: Sat, 05 Jan 2013 12:05:37 +0100 From: Milan Broz MIME-Version: 1.0 References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [dm-crypt] static libraries List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: ".. ink .." Cc: dm-crypt@saout.de On 01/05/2013 10:05 AM, .. ink .. wrote: > i build 1.6.0-rc1 with the following config options: > > ./configure --prefix=/usr --enable-cryptsetup-reencrypt --enable-static-cryptsetup > > then i looked at the static libraries with the following command: > find . -iname *.a > > and the results where: > ./lib/crypto_backend/.libs/libcrypto_backend.a > ./lib/verity/.libs/libverity.a > ./lib/tcrypt/.libs/libtcrypt.a > ./lib/luks1/.libs/libluks1.a > ./lib/loopaes/.libs/libloopaes.a > > Is the list of static objects complete? it seem incomplete to me as i dont see a static object to handle plain volumes or other functions. What are you trying to do here? These are INTERNAL libraries, never ever use them directly. > Shouldnt also there be a libcryptsetup.a static library? $ ls -l lib/.libs/libcryptsetup.a -rw-r--r-- 1 milan milan 567052 Jan 5 11:57 lib/.libs/libcryptsetup.a This is the only library which is provided externally. Above compiled with (on Debian) ./configure --enable-static --enable-static-cryptsetup Milan