Hans Wennborg via llvm-dev
2018-Mar-02 12:17 UTC
[llvm-dev] [6.0.0 Release] The final tag is in
Dear testers, The final version of 6.0.0 has just been tagged from the branch after r326550. It has the same contents as -rc3 modulo release notes and one small x86 fix (r326393). Please build the final binaries and upload to the sftp. For those following along: this means llvm-6.0.0 is complete, but it will take a few days to get all the tarballs ready and published on the web page. I will send the announcement once everything is ready. Many thanks to everyone for your hard work! Hans
NAKAMURA Takumi via llvm-dev
2018-Mar-03 02:58 UTC
[llvm-dev] [Openmp-dev] [6.0.0 Release] The final tag is in
FYI, RPMs for CentOS6 are here; https://github.com/llvm-project/llvm-project-20170507/releases/tag/release_600 20.9 MB clang-6.0.0-1.el6.x86_64.rpm 689 KB clang-format-6.0.0-1.el6.x86_64.rpm 500 KB libcxx-6.0.0-1.el6.x86_64.rpm 480 KB libcxx-devel-6.0.0-1.el6.noarch.rpm 122 KB libcxxabi-6.0.0-1.el6.x86_64.rpm 12.8 MB lld-6.0.0-1.el6.x86_64.rpm I will propose tweaks for CPack, in near future. Takumi On Fri, Mar 2, 2018 at 9:17 PM Hans Wennborg via Openmp-dev < openmp-dev at lists.llvm.org> wrote:> Dear testers, > > The final version of 6.0.0 has just been tagged from the branch after > r326550. It has the same contents as -rc3 modulo release notes and one > small x86 fix (r326393). > > Please build the final binaries and upload to the sftp. > > For those following along: this means llvm-6.0.0 is complete, but it > will take a few days to get all the tarballs ready and published on > the web page. I will send the announcement once everything is ready. > > Many thanks to everyone for your hard work! > > Hans > _______________________________________________ > Openmp-dev mailing list > Openmp-dev at lists.llvm.org > http://lists.llvm.org/cgi-bin/mailman/listinfo/openmp-dev >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180303/23226355/attachment.html>
Dimitry Andric via llvm-dev
2018-Mar-04 16:42 UTC
[llvm-dev] [Release-testers] [6.0.0 Release] The final tag is in
On 2 Mar 2018, at 13:17, Hans Wennborg via Release-testers <release-testers at lists.llvm.org> wrote:> > The final version of 6.0.0 has just been tagged from the branch after > r326550. It has the same contents as -rc3 modulo release notes and one > small x86 fix (r326393). > > Please build the final binaries and upload to the sftp.Built, tested and uploaded: SHA256 (clang+llvm-6.0.0-amd64-unknown-freebsd-10.tar.xz) = fee8352f5dee2e38fa2bb80ab0b5ef9efef578cbc6892e5c724a1187498119b7 SHA256 (clang+llvm-6.0.0-i386-unknown-freebsd-10.tar.xz) = 13414a66b680760171e04f32071396eb6e5a179ff0b5a067d48c4b23744840f1 On amd64-freebsd10 there were 523 unexpected test failures (down from 526 at rc3): Expected Passes : 45388 Passes With Retry : 1 Expected Failures : 185 Unsupported Tests : 2937 Unexpected Passes : 1 Unexpected Failures: 523 On i386-freebsd10 there were 246 unexpected test failures (down from 250 at rc3): Expected Passes : 44232 Expected Failures : 194 Unsupported Tests : 1954 Unexpected Passes : 1 Unexpected Failures: 246 -Dimitry -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 223 bytes Desc: Message signed with OpenPGP URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180304/60cf9f65/attachment.sig>
Brian Cain via llvm-dev
2018-Mar-04 16:54 UTC
[llvm-dev] [Release-testers] [6.0.0 Release] The final tag is in
Uploaded ubuntu, SLES11, SLES12 binaries. 4907dbd37f4e5265a2f1252d9d7b5e5b0a9c0ec1 clang+llvm-6.0.0-x86_64-linux-gnu-ubuntu-14.04.tar.xz 360b26fcd9eafe5ca9c4baa89c38339bc587c094 clang+llvm-6.0.0-x86_64-linux-sles11.3.tar.xz ce525cf949ef86409bc3f4f492035225989eecfd clang+llvm-6.0.0-x86_64-linux-sles12.2.tar.xz On Fri, Mar 2, 2018 at 6:17 AM, Hans Wennborg via Release-testers < release-testers at lists.llvm.org> wrote:> Dear testers, > > The final version of 6.0.0 has just been tagged from the branch after > r326550. It has the same contents as -rc3 modulo release notes and one > small x86 fix (r326393). > > Please build the final binaries and upload to the sftp. > > For those following along: this means llvm-6.0.0 is complete, but it > will take a few days to get all the tarballs ready and published on > the web page. I will send the announcement once everything is ready. > > Many thanks to everyone for your hard work! > > Hans > _______________________________________________ > Release-testers mailing list > Release-testers at lists.llvm.org > http://lists.llvm.org/cgi-bin/mailman/listinfo/release-testers >-- -Brian -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180304/03f51c34/attachment-0001.html>
Brian Cain via llvm-dev
2018-Mar-05 16:23 UTC
[llvm-dev] [Release-testers] [6.0.0 Release] The final tag is in
It was just brought to my attention that the RPATH configuration isn't uniform among the libraries produced by the release. Some use $ORIGIN../lib/ and others have none. Is this by design? It seems like it might be ideal for all of them to be configured the same way. If that makes sense I'll create a corresponding feature request. $ for f in ./clang+llvm-6.0.0-x86_64-linux-gnu-ubuntu-14.04/lib/lib*.so*; do echo $f; readelf -d $f|grep RUNPATH; done ./clang+llvm-6.0.0-x86_64-linux-gnu-ubuntu-14.04/lib/libc++abi.so ./clang+llvm-6.0.0-x86_64-linux-gnu-ubuntu-14.04/lib/libc++abi.so.1 ./clang+llvm-6.0.0-x86_64-linux-gnu-ubuntu-14.04/lib/libc++abi.so.1.0 ./clang+llvm-6.0.0-x86_64-linux-gnu-ubuntu-14.04/lib/libclang.so 0x000000000000001d (RUNPATH) Library runpath: [$ORIGIN/../lib] ./clang+llvm-6.0.0-x86_64-linux-gnu-ubuntu-14.04/lib/libclang.so.6 0x000000000000001d (RUNPATH) Library runpath: [$ORIGIN/../lib] ./clang+llvm-6.0.0-x86_64-linux-gnu-ubuntu-14.04/lib/libclang.so.6.0 0x000000000000001d (RUNPATH) Library runpath: [$ORIGIN/../lib] ./clang+llvm-6.0.0-x86_64-linux-gnu-ubuntu-14.04/lib/libc++.so readelf: Error: ./clang+llvm-6.0.0-x86_64-linux-gnu-ubuntu-14.04/lib/libc++.so: Failed to read file header ./clang+llvm-6.0.0-x86_64-linux-gnu-ubuntu-14.04/lib/libc++.so.1 ./clang+llvm-6.0.0-x86_64-linux-gnu-ubuntu-14.04/lib/libc++.so.1.0 ./clang+llvm-6.0.0-x86_64-linux-gnu-ubuntu-14.04/lib/libgomp.so ./clang+llvm-6.0.0-x86_64-linux-gnu-ubuntu-14.04/lib/libiomp5.so ./clang+llvm-6.0.0-x86_64-linux-gnu-ubuntu-14.04/lib/liblldbIntelFeatures.so 0x000000000000001d (RUNPATH) Library runpath: [$ORIGIN/../lib] ./clang+llvm-6.0.0-x86_64-linux-gnu-ubuntu-14.04/lib/liblldbIntelFeatures.so.6 0x000000000000001d (RUNPATH) Library runpath: [$ORIGIN/../lib] ./clang+llvm-6.0.0-x86_64-linux-gnu-ubuntu-14.04/lib/liblldbIntelFeatures.so.6.0.0 0x000000000000001d (RUNPATH) Library runpath: [$ORIGIN/../lib] ./clang+llvm-6.0.0-x86_64-linux-gnu-ubuntu-14.04/lib/liblldb.so 0x000000000000001d (RUNPATH) Library runpath: [$ORIGIN/../lib] ./clang+llvm-6.0.0-x86_64-linux-gnu-ubuntu-14.04/lib/liblldb.so.6 0x000000000000001d (RUNPATH) Library runpath: [$ORIGIN/../lib] ./clang+llvm-6.0.0-x86_64-linux-gnu-ubuntu-14.04/lib/liblldb.so.6.0.0 0x000000000000001d (RUNPATH) Library runpath: [$ORIGIN/../lib] ./clang+llvm-6.0.0-x86_64-linux-gnu-ubuntu-14.04/lib/libLTO.so 0x000000000000001d (RUNPATH) Library runpath: [$ORIGIN/../lib] ./clang+llvm-6.0.0-x86_64-linux-gnu-ubuntu-14.04/lib/libLTO.so.6 0x000000000000001d (RUNPATH) Library runpath: [$ORIGIN/../lib] ./clang+llvm-6.0.0-x86_64-linux-gnu-ubuntu-14.04/lib/libLTO.so.6.0.0 0x000000000000001d (RUNPATH) Library runpath: [$ORIGIN/../lib] ./clang+llvm-6.0.0-x86_64-linux-gnu-ubuntu-14.04/lib/libomp.so ./clang+llvm-6.0.0-x86_64-linux-gnu-ubuntu-14.04/lib/ libomptarget.rtl.x86_64.so ./clang+llvm-6.0.0-x86_64-linux-gnu-ubuntu-14.04/lib/libomptarget.so ./clang+llvm-6.0.0-x86_64-linux-gnu-ubuntu-14.04/lib/libunwind.so ./clang+llvm-6.0.0-x86_64-linux-gnu-ubuntu-14.04/lib/libunwind.so.1 ./clang+llvm-6.0.0-x86_64-linux-gnu-ubuntu-14.04/lib/libunwind.so.1.0 On Sun, Mar 4, 2018 at 10:54 AM, Brian Cain <brian.cain at gmail.com> wrote:> > Uploaded ubuntu, SLES11, SLES12 binaries. > > 4907dbd37f4e5265a2f1252d9d7b5e5b0a9c0ec1 clang+llvm-6.0.0-x86_64-linux- > gnu-ubuntu-14.04.tar.xz > 360b26fcd9eafe5ca9c4baa89c38339bc587c094 clang+llvm-6.0.0-x86_64-linux- > sles11.3.tar.xz > ce525cf949ef86409bc3f4f492035225989eecfd clang+llvm-6.0.0-x86_64-linux- > sles12.2.tar.xz > > > On Fri, Mar 2, 2018 at 6:17 AM, Hans Wennborg via Release-testers < > release-testers at lists.llvm.org> wrote: > >> Dear testers, >> >> The final version of 6.0.0 has just been tagged from the branch after >> r326550. It has the same contents as -rc3 modulo release notes and one >> small x86 fix (r326393). >> >> Please build the final binaries and upload to the sftp. >> >> For those following along: this means llvm-6.0.0 is complete, but it >> will take a few days to get all the tarballs ready and published on >> the web page. I will send the announcement once everything is ready. >> >> Many thanks to everyone for your hard work! >> >> Hans >> _______________________________________________ >> Release-testers mailing list >> Release-testers at lists.llvm.org >> http://lists.llvm.org/cgi-bin/mailman/listinfo/release-testers >> > > > > -- > -Brian >-- -Brian -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180305/985ba343/attachment.html>
Sylvestre Ledru via llvm-dev
2018-Mar-07 08:40 UTC
[llvm-dev] [Release-testers] [6.0.0 Release] The final tag is in
Hello, On 02/03/2018 13:17, Hans Wennborg via Release-testers wrote:> Dear testers, > > The final version of 6.0.0 has just been tagged from the branch after > r326550. It has the same contents as -rc3 modulo release notes and one > small x86 fix (r326393). > > Please build the final binaries and upload to the sftp. > > For those following along: this means llvm-6.0.0 is complete, but it > will take a few days to get all the tarballs ready and published on > the web page. I will send the announcement once everything is ready. > > Many thanks to everyone for your hard work! >Full green on Debian: https://buildd.debian.org/status/package.php?p=llvm-toolchain-6.0 I will have a look at rebuilding the Debian archive with this version (we did with rc1) over the next month. Cheers, Sylvestre
Simon Dardis via llvm-dev
2018-Mar-07 18:15 UTC
[llvm-dev] [Openmp-dev] [6.0.0 Release] The final tag is in
Hi Hans, Looks ok here. I've uploaded the binaries. SHA256(clang+llvm-6.0.0-mipsel-linux-gnu.tar.xz)= 5ff062f4838ac51a3500383faeb0731440f1c4473bf892258314a49cbaa66e61 SHA256(clang+llvm-6.0.0-mips-linux-gnu.tar.xz)= 39820007ef6b2e3a4d05ec15feb477ce6e4e6e90180d00326e6ab9982ed8fe82 SHA256(clang+llvm-6.0.0-x86_64-linux-gnu-debian8.tar.xz)= ff55cd0bdd0b67e22d1feee2e4c84dedc3bb053401330b64c7f6ac18e88a71f1 Thanks, Simon ________________________________________ From: Openmp-dev [openmp-dev-bounces at lists.llvm.org] on behalf of Hans Wennborg via Openmp-dev [openmp-dev at lists.llvm.org] Sent: Friday, March 2, 2018 12:17 PM To: Release-testers Cc: llvm-dev; cfe-dev; openmp-dev (openmp-dev at lists.llvm.org); LLDB Dev Subject: [Openmp-dev] [6.0.0 Release] The final tag is in Dear testers, The final version of 6.0.0 has just been tagged from the branch after r326550. It has the same contents as -rc3 modulo release notes and one small x86 fix (r326393). Please build the final binaries and upload to the sftp. For those following along: this means llvm-6.0.0 is complete, but it will take a few days to get all the tarballs ready and published on the web page. I will send the announcement once everything is ready. Many thanks to everyone for your hard work! Hans _______________________________________________ Openmp-dev mailing list Openmp-dev at lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/openmp-dev
Diana Picus via llvm-dev
2018-Mar-07 21:34 UTC
[llvm-dev] [cfe-dev] [Openmp-dev] [6.0.0 Release] The final tag is in
Hi, ARM & AArch64 also up and ready: fb00698f38ade92d11d1aa297daf4c6ea657560a clang+llvm-6.0.0-aarch64-linux-gnu.tar.xz c4fd61dd28a90b754d0d39f3f1f2bffcd5b38e46 clang+llvm-6.0.0-armv7a-linux-gnueabihf.tar.xz Cheers, Diana On 7 March 2018 at 19:15, Simon Dardis via cfe-dev <cfe-dev at lists.llvm.org> wrote:> Hi Hans, > > Looks ok here. I've uploaded the binaries. > > SHA256(clang+llvm-6.0.0-mipsel-linux-gnu.tar.xz)= 5ff062f4838ac51a3500383faeb0731440f1c4473bf892258314a49cbaa66e61 > SHA256(clang+llvm-6.0.0-mips-linux-gnu.tar.xz)= 39820007ef6b2e3a4d05ec15feb477ce6e4e6e90180d00326e6ab9982ed8fe82 > SHA256(clang+llvm-6.0.0-x86_64-linux-gnu-debian8.tar.xz)= ff55cd0bdd0b67e22d1feee2e4c84dedc3bb053401330b64c7f6ac18e88a71f1 > > > Thanks, > Simon > ________________________________________ > From: Openmp-dev [openmp-dev-bounces at lists.llvm.org] on behalf of Hans Wennborg via Openmp-dev [openmp-dev at lists.llvm.org] > Sent: Friday, March 2, 2018 12:17 PM > To: Release-testers > Cc: llvm-dev; cfe-dev; openmp-dev (openmp-dev at lists.llvm.org); LLDB Dev > Subject: [Openmp-dev] [6.0.0 Release] The final tag is in > > Dear testers, > > The final version of 6.0.0 has just been tagged from the branch after > r326550. It has the same contents as -rc3 modulo release notes and one > small x86 fix (r326393). > > Please build the final binaries and upload to the sftp. > > For those following along: this means llvm-6.0.0 is complete, but it > will take a few days to get all the tarballs ready and published on > the web page. I will send the announcement once everything is ready. > > Many thanks to everyone for your hard work! > > Hans > _______________________________________________ > Openmp-dev mailing list > Openmp-dev at lists.llvm.org > http://lists.llvm.org/cgi-bin/mailman/listinfo/openmp-dev > _______________________________________________ > cfe-dev mailing list > cfe-dev at lists.llvm.org > http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev