<feed xmlns='http://www.w3.org/2005/Atom'>
<title>user/sven/linux.git/Makefile, branch v4.9.150</title>
<subtitle>Linux Kernel
</subtitle>
<id>https://git.stealer.net/cgit.cgi/user/sven/linux.git/atom?h=v4.9.150</id>
<link rel='self' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/atom?h=v4.9.150'/>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/'/>
<updated>2019-01-13T09:03:55Z</updated>
<entry>
<title>Linux 4.9.150</title>
<updated>2019-01-13T09:03:55Z</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@linuxfoundation.org</email>
</author>
<published>2019-01-13T09:03:55Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=df6062688e387419f0e10ee1bef2e9cfd7795399'/>
<id>urn:sha1:df6062688e387419f0e10ee1bef2e9cfd7795399</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Linux 4.9.149</title>
<updated>2019-01-09T15:16:45Z</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@linuxfoundation.org</email>
</author>
<published>2019-01-09T15:16:45Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=8a12358ba0e2e591cb2840ef42514d23f41d220c'/>
<id>urn:sha1:8a12358ba0e2e591cb2840ef42514d23f41d220c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Linux 4.9.148</title>
<updated>2018-12-29T12:40:16Z</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@linuxfoundation.org</email>
</author>
<published>2018-12-29T12:40:16Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=d99748864fa96e3c9a8379a710eb628298a29b64'/>
<id>urn:sha1:d99748864fa96e3c9a8379a710eb628298a29b64</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Linux 4.9.147</title>
<updated>2018-12-21T13:11:40Z</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@linuxfoundation.org</email>
</author>
<published>2018-12-21T13:11:40Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=bbfc30f29cb328111fec12975ded8223ecc8e1a5'/>
<id>urn:sha1:bbfc30f29cb328111fec12975ded8223ecc8e1a5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Linux 4.9.146</title>
<updated>2018-12-17T08:38:35Z</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@linuxfoundation.org</email>
</author>
<published>2018-12-17T08:38:35Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=0cff89461d557239296735d18b5a144c8f4b151b'/>
<id>urn:sha1:0cff89461d557239296735d18b5a144c8f4b151b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Linux 4.9.145</title>
<updated>2018-12-13T08:20:30Z</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@linuxfoundation.org</email>
</author>
<published>2018-12-13T08:20:30Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=9c2f007c3c5e713749227f179fbe926ce1d38407'/>
<id>urn:sha1:9c2f007c3c5e713749227f179fbe926ce1d38407</id>
<content type='text'>
</content>
</entry>
<entry>
<title>kbuild: allow to use GCC toolchain not in Clang search path</title>
<updated>2018-12-13T08:20:30Z</updated>
<author>
<name>Stefan Agner</name>
<email>stefan@agner.ch</email>
</author>
<published>2018-12-06T00:45:26Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=4c219af48b1e64222a71af333caf574deb5e1b2f'/>
<id>urn:sha1:4c219af48b1e64222a71af333caf574deb5e1b2f</id>
<content type='text'>
(commit ef8c4ed9db80261f397f0c0bf723684601ae3b52 upstream)

When using a GCC cross toolchain which is not in a compiled in
Clang search path, Clang reverts to the system assembler and
linker. This leads to assembler or linker errors, depending on
which tool is first used for a given architecture.

It seems that Clang is not searching $PATH for a matching
assembler or linker.

Make sure that Clang picks up the correct assembler or linker by
passing the cross compilers bin directory as search path.

This allows to use Clang provided by distributions with GCC
toolchains not in /usr/bin.

Link: https://github.com/ClangBuiltLinux/linux/issues/78
Signed-off-by: Stefan Agner &lt;stefan@agner.ch&gt;
Reviewed-and-tested-by: Nick Desaulniers &lt;ndesaulniers@google.com&gt;
Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;
[ND: adjusted to context, due to adjusting the context of my previous
backport of upstream's ae6b289a3789]
Signed-off-by: Nick Desaulniers &lt;ndesaulniers@google.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>Linux 4.9.144</title>
<updated>2018-12-08T12:05:15Z</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@linuxfoundation.org</email>
</author>
<published>2018-12-08T12:05:15Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=1aa861ff238ecd17a3095b0dbd2d20bdf7bfaf14'/>
<id>urn:sha1:1aa861ff238ecd17a3095b0dbd2d20bdf7bfaf14</id>
<content type='text'>
</content>
</entry>
<entry>
<title>disable stringop truncation warnings for now</title>
<updated>2018-12-08T12:05:04Z</updated>
<author>
<name>Stephen Rothwell</name>
<email>sfr@canb.auug.org.au</email>
</author>
<published>2018-08-30T21:47:28Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=5e2669c978b2cd21c10ddc774d293d6974581c56'/>
<id>urn:sha1:5e2669c978b2cd21c10ddc774d293d6974581c56</id>
<content type='text'>
commit 217c3e0196758662aa0429863b09d1c13da1c5d6 upstream.

They are too noisy

Signed-off-by: Stephen Rothwell &lt;sfr@canb.auug.org.au&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

</content>
</entry>
<entry>
<title>Linux 4.9.143</title>
<updated>2018-12-05T18:42:42Z</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@linuxfoundation.org</email>
</author>
<published>2018-12-05T18:42:42Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=b136f0e9e9d79b8449d99ea701ade1e17a971826'/>
<id>urn:sha1:b136f0e9e9d79b8449d99ea701ade1e17a971826</id>
<content type='text'>
</content>
</entry>
</feed>
