Received: from fx.arvanta.net (static-213-198-238-194.adsl.eunet.rs [213.198.238.194]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTP id BC473781A83 for <~alpine/devel@lists.alpinelinux.org>; Thu, 10 Oct 2019 09:55:29 +0000 (UTC) Received: from arya.arvanta.net (arya.arvanta.net [10.5.1.6]) by fx.arvanta.net (Postfix) with ESMTP id 7623C25B33; Thu, 10 Oct 2019 11:55:28 +0200 (CEST) Date: Thu, 10 Oct 2019 11:55:28 +0200 From: Milan =?utf-8?Q?P=2E_Stani=C4=87?= To: Daniel Beseda Cc: ~alpine/devel@lists.alpinelinux.org Subject: Re: librdkafka-dev: Missing static library Message-ID: <20191010095528.GA505@arya.arvanta.net> References: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.12.1 (2019-06-15) Hi Daniel, On Thu, 2019-10-10 at 09:50, Daniel Beseda wrote: > I noticed that librdkafka-dev package on alpine-3.10 doesn't contain *.a > files. Is it an omission? This breaks our build of go service which uses ` > github.com/confluentinc/confluent-kafka-go`. Here's the error message: > > # > github.com/energomonitor/server-go/vendor/github.com/confluentinc/confluent-kafka-go/kafka > gcc: error: /usr/lib/librdkafka.a: No such file or directory Static libs are -static files, in this case librdkafka-static So, you should install it or add in makedepends if you building your package in aports with APKBUILD file. -- regards > Daniel