From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/10034 Path: news.gmane.org!not-for-mail From: Rich Felker Newsgroups: gmane.linux.lib.musl.general Subject: musl-cross-make can now install kernel headers Date: Sat, 14 May 2016 01:40:28 -0400 Message-ID: <20160514054028.GA21804@brightrain.aerifal.cx> 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 1463204474 32632 80.91.229.3 (14 May 2016 05:41:14 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 14 May 2016 05:41:14 +0000 (UTC) To: j-core@j-core.org, musl@lists.openwall.com Original-X-From: musl-return-10047-gllmg-musl=m.gmane.org@lists.openwall.com Sat May 14 07:41:08 2016 Return-path: Envelope-to: gllmg-musl@m.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1b1SK1-0000u5-7R for gllmg-musl@m.gmane.org; Sat, 14 May 2016 07:41:05 +0200 Original-Received: (qmail 7702 invoked by uid 550); 14 May 2016 05:41:02 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Original-Received: (qmail 7667 invoked from network); 14 May 2016 05:40:59 -0000 Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Original-Sender: Rich Felker Xref: news.gmane.org gmane.linux.lib.musl.general:10034 Archived-At: I've updated the musl-cross-make toolchain build system to support fetching kernel sources and installing the kernel headers for the target. This should make it easier to use the resulting toolchains for building things like toybox, busybox, strace, etc. that need kernel headers, and for using them with buildroot. As usual the repo is here: https://github.com/richfelker/musl-cross-make The kernel header functionality can be suppressed by clearing the LINUX_VER make variable, if desired. The new version also installs a $(TARGET)-cc symlink for gcc, for compatibility with software that only tries cc and not gcc. Rich