From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/2671 Path: news.gmane.org!not-for-mail From: Olivier Goudron Newsgroups: gmane.linux.lib.musl.general Subject: Question about missing linux/version.h while statically compiling Redis Date: Fri, 25 Jan 2013 13:43:29 +0100 Message-ID: Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1359117823 14931 80.91.229.3 (25 Jan 2013 12:43:43 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 25 Jan 2013 12:43:43 +0000 (UTC) To: "musl@lists.openwall.com" Original-X-From: musl-return-2672-gllmg-musl=m.gmane.org@lists.openwall.com Fri Jan 25 13:44:01 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 1TyidS-000091-UI for gllmg-musl@plane.gmane.org; Fri, 25 Jan 2013 13:43:59 +0100 Original-Received: (qmail 5597 invoked by uid 550); 25 Jan 2013 12:43:41 -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 5589 invoked from network); 25 Jan 2013 12:43:41 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:date:message-id:subject:from:to :content-type; bh=Zb2T+IY59wAYohU8E2Rd9ZzPaQCJ60gT3lL6byaFGns=; b=H2n1d1YUnXkTtlyOTPR4ewBvIzvXPKEwDFuEns/R+LnBiZ9f5H2aAAter/hFHfNw43 VE6L8Bvqhsby4Z6b39E7b80KB1JIxRECUaH7D/Oli5H1BUJcD4ROFxI2EdAyx7vlpxma Lv+GTJq+KLnTLyvedEQLFV1xODocAbx8K7sqSyB0aPNleSfBh4oL0ZOr/9pU7nSh1ZAU LwwZq6NB62T2gxn+eOlqbWaaWOjt8pdoLQ1ummkDzFKX9+KtU0zezwwsEVASk9pz7+6T gzNt7b63AcPxtkJrDBTbSBkdv5Lb5sg5LNOErXHu6gpYL7HyT/Z7m6W0vJ3rH3AF7PoP C4cQ== X-Received: by 10.112.98.232 with SMTP id el8mr2082502lbb.121.1359117809731; Fri, 25 Jan 2013 04:43:29 -0800 (PST) Xref: news.gmane.org gmane.linux.lib.musl.general:2671 Archived-At: Hello, I am using a 32bits Debian host. I have installed musl-libc from git today. I have configured musl-libc with : ./configure --prefix=/usr/local/musl --exec-prefix=/usr/local --disable-shared The "hello word" compilation test work. I am trying to statically compile redis with musl-libc wrapper. I start the compilation with : CC=musl-gcc make And the compilation stop with error : In file included from ae.c:45: config.h:87:27: error: linux/version.h: Aucun fichier ou dossier de ce type What should i do ? Can i copy the linux/version.h from my local glibc include directory to musl-libc include directory ? Thanks in advance, Olivier.