From owner-freebsd-current@freebsd.org Thu Aug 30 15:44:40 2018 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0E5CE10A1EA4 for ; Thu, 30 Aug 2018 15:44:40 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B59A286A03 for ; Thu, 30 Aug 2018 15:44:39 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: from mail-lf1-f53.google.com (mail-lf1-f53.google.com [209.85.167.53]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G3" (verified OK)) (Authenticated sender: kevans) by smtp.freebsd.org (Postfix) with ESMTPSA id 4FC8B1E601 for ; Thu, 30 Aug 2018 15:44:39 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: by mail-lf1-f53.google.com with SMTP id i7-v6so7581279lfh.5 for ; Thu, 30 Aug 2018 08:44:39 -0700 (PDT) X-Gm-Message-State: APzg51C57oNY8NFidus5p/ZEVQc+MaOrViknih455gaIzAVZXaSEvRDq JMj6oqXhjDQNdSwxf0seWDhvf3s/o2u1JQvfIzE= X-Google-Smtp-Source: ANB0VdYzKg1fpV15qiWgp5qR9JKXb32IankFkfoxtwPTEiydQK7g9hfQr013wE1Tp6GFy7ibhjybnaVGDuQi1w2V7Zo= X-Received: by 2002:a19:ca09:: with SMTP id a9-v6mr7680252lfg.120.1535643877730; Thu, 30 Aug 2018 08:44:37 -0700 (PDT) MIME-Version: 1.0 References: <20180830174105.454fbacf@thor.intern.walstatt.dynvpn.de> In-Reply-To: <20180830174105.454fbacf@thor.intern.walstatt.dynvpn.de> From: Kyle Evans Date: Thu, 30 Aug 2018 10:44:25 -0500 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: 12-ALPHA3: (NanoBSD): ld-elf.so.1: Shared object "libibverbs.so.1" not found, required by "libpcap.so.8" To: "O. Hartmann" Cc: FreeBSD Current Content-Type: text/plain; charset="UTF-8" X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 30 Aug 2018 15:44:40 -0000 On Thu, Aug 30, 2018 at 10:41 AM O. Hartmann wrote: > > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA512 > > Running a NanoBSD with lots of "WITHOUT_" tags reducing the size, it seems that with one > of those excluded build/install opts I also exclude a crucial library, namely > "libibverbs.so.1", since ipfwpcap seems to require it: > > [...] > root@host-puking-alot:~ # ipfwpcap > ld-elf.so.1: Shared object "libibverbs.so.1" not found, required by "libpcap.so.8" > > [...] > > Checking via ldd on "libpcap.so.8" reveals strange things: > > [...] > root@host-puking-alot:~ # ldd /lib/libpcap.so.8 > /lib/libpcap.so.8: > libibverbs.so.1 => not found (0) > libmlx5.so.1 => not found (0) > libc.so.7 => /lib/libc.so.7 (0x80024a000) > [...] > > So, I do not have any Mellanox device, therefore I do not build nor install drivers > and or modules (refering to the libmlx5.so.1). > You set WITHOUT_OFED=yes, right? That's a default now, so that'll stop the dependency on ofed/ bits in libpcap. This is still breakage that needs to be fixed, but that should workaround it for you. Thanks, Kyle Evans