<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/Makefile, branch v4.6</title>
<subtitle>Mirror of https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/
</subtitle>
<id>https://git.shady.money/linux/atom?h=v4.6</id>
<link rel='self' href='https://git.shady.money/linux/atom?h=v4.6'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/'/>
<updated>2016-05-15T22:43:13Z</updated>
<entry>
<title>Linux 4.6</title>
<updated>2016-05-15T22:43:13Z</updated>
<author>
<name>Linus Torvalds</name>
<email>torvalds@linux-foundation.org</email>
</author>
<published>2016-05-15T22:43:13Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=2dcd0af568b0cf583645c8a317dd12e344b1c72a'/>
<id>urn:sha1:2dcd0af568b0cf583645c8a317dd12e344b1c72a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Linux 4.6-rc7</title>
<updated>2016-05-08T21:38:32Z</updated>
<author>
<name>Linus Torvalds</name>
<email>torvalds@linux-foundation.org</email>
</author>
<published>2016-05-08T21:38:32Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=44549e8f5eea4e0a41b487b63e616cb089922b99'/>
<id>urn:sha1:44549e8f5eea4e0a41b487b63e616cb089922b99</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Linux 4.6-rc6</title>
<updated>2016-05-01T22:52:31Z</updated>
<author>
<name>Linus Torvalds</name>
<email>torvalds@linux-foundation.org</email>
</author>
<published>2016-05-01T22:52:31Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=04974df8049fc4240d22759a91e035082ccd18b4'/>
<id>urn:sha1:04974df8049fc4240d22759a91e035082ccd18b4</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Linux 4.6-rc5</title>
<updated>2016-04-24T23:17:05Z</updated>
<author>
<name>Linus Torvalds</name>
<email>torvalds@linux-foundation.org</email>
</author>
<published>2016-04-24T23:17:05Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=02da2d72174c61988eb4456b53f405e3ebdebce4'/>
<id>urn:sha1:02da2d72174c61988eb4456b53f405e3ebdebce4</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge branch 'core-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip</title>
<updated>2016-04-23T18:25:01Z</updated>
<author>
<name>Linus Torvalds</name>
<email>torvalds@linux-foundation.org</email>
</author>
<published>2016-04-23T18:25:01Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=6527efba38a06410f19670adba8a1951f8fe3d3c'/>
<id>urn:sha1:6527efba38a06410f19670adba8a1951f8fe3d3c</id>
<content type='text'>
Pull objtool fixes from Ingo Molnar:
 "A handful of objtool fixes: two improvements to how warnings are
  printed plus a false positive warning fix, and build environment fix"

* 'core-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
  objtool: Fix Makefile to properly see if libelf is supported
  objtool: Detect falling through to the next function
  objtool: Add workaround for GCC switch jump table bug
</content>
</entry>
<entry>
<title>objtool: Fix Makefile to properly see if libelf is supported</title>
<updated>2016-04-22T07:00:57Z</updated>
<author>
<name>Steven Rostedt</name>
<email>rostedt@goodmis.org</email>
</author>
<published>2016-04-20T15:32:35Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=c2bb9e32e2315971a8535fee77335c04a739d71d'/>
<id>urn:sha1:c2bb9e32e2315971a8535fee77335c04a739d71d</id>
<content type='text'>
When doing a make allmodconfig, I hit the following compile error:

  In file included from builtin-check.c:32:0:
  elf.h:22:18: fatal error: gelf.h: No such file or directory
  compilation terminated.
  ...

Digging into it, it appears that the $(shell ..) command in the Makefile does
not give the proper result when it fails to find -lelf, and continues to
compile objtool.

Instead, use the "try-run" makefile macro to perform the test. This gives a
proper result for both cases.

Signed-off-by: Steven Rostedt &lt;rostedt@goodmis.org&gt;
Acked-by: Josh Poimboeuf &lt;jpoimboe@redhat.com&gt;
Cc: Andrew Morton &lt;akpm@linux-foundation.org&gt;
Cc: Andy Lutomirski &lt;luto@kernel.org&gt;
Cc: Arnaldo Carvalho de Melo &lt;acme@kernel.org&gt;
Cc: Bernd Petrovitsch &lt;bernd@petrovitsch.priv.at&gt;
Cc: Borislav Petkov &lt;bp@alien8.de&gt;
Cc: Chris J Arges &lt;chris.j.arges@canonical.com&gt;
Cc: Jiri Slaby &lt;jslaby@suse.cz&gt;
Cc: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;
Cc: Michal Marek &lt;mmarek@suse.cz&gt;
Cc: Namhyung Kim &lt;namhyung@gmail.com&gt;
Cc: Pedro Alves &lt;palves@redhat.com&gt;
Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;
Cc: Thomas Gleixner &lt;tglx@linutronix.de&gt;
Cc: live-patching@vger.kernel.org
Fixes: 442f04c34a1a4 ("objtool: Add tool to perform compile-time stack metadata validation")
Link: http://lkml.kernel.org/r/20160420153234.GA24032@home.goodmis.org
Signed-off-by: Ingo Molnar &lt;mingo@kernel.org&gt;
</content>
</entry>
<entry>
<title>Linux 4.6-rc4</title>
<updated>2016-04-18T02:13:32Z</updated>
<author>
<name>Linus Torvalds</name>
<email>torvalds@linux-foundation.org</email>
</author>
<published>2016-04-18T02:13:32Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=c3b46c73264b03000d1e18b22f5caf63332547c9'/>
<id>urn:sha1:c3b46c73264b03000d1e18b22f5caf63332547c9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Linux 4.6-rc3</title>
<updated>2016-04-11T00:58:30Z</updated>
<author>
<name>Linus Torvalds</name>
<email>torvalds@linux-foundation.org</email>
</author>
<published>2016-04-11T00:58:30Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=bf16200689118d19de1b8d2a3c314fc21f5dc7bb'/>
<id>urn:sha1:bf16200689118d19de1b8d2a3c314fc21f5dc7bb</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Linux 4.6-rc2</title>
<updated>2016-04-03T14:09:40Z</updated>
<author>
<name>Linus Torvalds</name>
<email>torvalds@linux-foundation.org</email>
</author>
<published>2016-04-03T14:09:40Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=9735a22799b9214d17d3c231fe377fc852f042e9'/>
<id>urn:sha1:9735a22799b9214d17d3c231fe377fc852f042e9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Linux 4.6-rc1</title>
<updated>2016-03-26T23:03:24Z</updated>
<author>
<name>Linus Torvalds</name>
<email>torvalds@linux-foundation.org</email>
</author>
<published>2016-03-26T23:03:24Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=f55532a0c0b8bb6148f4e07853b876ef73bc69ca'/>
<id>urn:sha1:f55532a0c0b8bb6148f4e07853b876ef73bc69ca</id>
<content type='text'>
</content>
</entry>
</feed>
