From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/2677 Path: news.gmane.org!not-for-mail From: Szabolcs Nagy Newsgroups: gmane.linux.lib.musl.general Subject: Re: Question about missing linux/version.h while statically compiling Redis Date: Fri, 25 Jan 2013 17:23:33 +0100 Message-ID: <20130125162333.GH10600@port70.net> References: <51028FD0.9050604@barfooze.de> <20130125150122.GG10600@port70.net> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1359131027 16706 80.91.229.3 (25 Jan 2013 16:23:47 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 25 Jan 2013 16:23:47 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-2678-gllmg-musl=m.gmane.org@lists.openwall.com Fri Jan 25 17:24:07 2013 Return-path: Envelope-to: gllmg-musl@plane.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1Tym4Q-00072a-RT for gllmg-musl@plane.gmane.org; Fri, 25 Jan 2013 17:24:03 +0100 Original-Received: (qmail 21977 invoked by uid 550); 25 Jan 2013 16:23:45 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Original-Received: (qmail 21969 invoked from network); 25 Jan 2013 16:23:44 -0000 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Xref: news.gmane.org gmane.linux.lib.musl.general:2677 Archived-At: * Olivier Goudron [2013-01-25 16:52:43 +0100]: > Thanks to your explainations Nagy, i have understand what was needed. > > The compilation goes further but end now here : > debug.c:37:22: error: execinfo.h: No such file or directory > > Does execinfo.h is specific to gnu libc ? execinfo.h provides the glibc backtrace(3) api it is non-portable and it should not be called from production software (it relies on fragile technology: only works with certain non-standard linker and compiler options and can easily break) so they should test for execinfo.h in their configure or at least provide a way to disable it