Hans Wennborg via llvm-dev
2017-Aug-25 22:52 UTC
[llvm-dev] [5.0.0 Release] Release Candidate 3 tagged
Dear testers, 5.0.0-rc3 was just tagged. This is a release candidate in the real sense: if nothing bad comes up in testing, this is what the release is going to look like. Please build, test and upload binaries to the sftp (use the /data/testers-uploads/ directory) and let me know what issues remain. I know we're a little bit behind schedule, but hopefully we can get to 'final' soon. Cheers, Hans
Bero Rosenkränzer via llvm-dev
2017-Aug-26 12:00 UTC
[llvm-dev] [Release-testers] [5.0.0 Release] Release Candidate 3 tagged
Working well here so far. Is the removal of the RISCVCodeGen, RISCVDesc and RISCVInfo libraries that were in rc2 intentional? ttyl bero On 26 August 2017 at 00:52, Hans Wennborg via Release-testers <release-testers at lists.llvm.org> wrote:> Dear testers, > > 5.0.0-rc3 was just tagged. > > This is a release candidate in the real sense: if nothing bad comes up > in testing, this is what the release is going to look like. > > Please build, test and upload binaries to the sftp (use the > /data/testers-uploads/ directory) and let me know what issues remain. > > I know we're a little bit behind schedule, but hopefully we can get to > 'final' soon. > > Cheers, > Hans > _______________________________________________ > Release-testers mailing list > Release-testers at lists.llvm.org > http://lists.llvm.org/cgi-bin/mailman/listinfo/release-testers
Simon Dardis via llvm-dev
2017-Aug-26 17:06 UTC
[llvm-dev] [Release-testers] [5.0.0 Release] Release Candidate 3 tagged
Yes, the removal of RISC-V from LLVM_ALL_TARGETS was intentional. See https://reviews.llvm.org/D36538 and the accompanying message to llvm-dev: http://lists.llvm.org/pipermail/llvm-dev/2017-August/116347.html for the rationale. Thanks, Simon ________________________________________ From: Release-testers [release-testers-bounces at lists.llvm.org] on behalf of Bero Rosenkränzer via Release-testers [release-testers at lists.llvm.org] Sent: 26 August 2017 13:00 To: Hans Wennborg Cc: llvm-dev; Release-testers; cfe-dev; openmp-dev (openmp-dev at lists.llvm.org); LLDB Dev Subject: Re: [Release-testers] [5.0.0 Release] Release Candidate 3 tagged Working well here so far. Is the removal of the RISCVCodeGen, RISCVDesc and RISCVInfo libraries that were in rc2 intentional? ttyl bero On 26 August 2017 at 00:52, Hans Wennborg via Release-testers <release-testers at lists.llvm.org> wrote:> Dear testers, > > 5.0.0-rc3 was just tagged. > > This is a release candidate in the real sense: if nothing bad comes up > in testing, this is what the release is going to look like. > > Please build, test and upload binaries to the sftp (use the > /data/testers-uploads/ directory) and let me know what issues remain. > > I know we're a little bit behind schedule, but hopefully we can get to > 'final' soon. > > Cheers, > Hans > _______________________________________________ > Release-testers mailing list > Release-testers at lists.llvm.org > http://lists.llvm.org/cgi-bin/mailman/listinfo/release-testers_______________________________________________ Release-testers mailing list Release-testers at lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/release-testers
Andrew Kelley via llvm-dev
2017-Aug-28 07:40 UTC
[llvm-dev] [5.0.0 Release] Release Candidate 3 tagged
trusty on apt.llvm.org is behind the others by 9 days and is missing the latest rc3 release. Can we get an update on this? Regards, Andrew On Fri, Aug 25, 2017 at 6:52 PM, Hans Wennborg via llvm-dev < llvm-dev at lists.llvm.org> wrote:> Dear testers, > > 5.0.0-rc3 was just tagged. > > This is a release candidate in the real sense: if nothing bad comes up > in testing, this is what the release is going to look like. > > Please build, test and upload binaries to the sftp (use the > /data/testers-uploads/ directory) and let me know what issues remain. > > I know we're a little bit behind schedule, but hopefully we can get to > 'final' soon. > > Cheers, > Hans > _______________________________________________ > LLVM Developers mailing list > llvm-dev at lists.llvm.org > http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20170828/08919527/attachment.html>
Dr.-Ing. Christoph Cullmann via llvm-dev
2017-Aug-28 07:40 UTC
[llvm-dev] [Release-testers] [5.0.0 Release] Release Candidate 3 tagged
Hi, one issue I have with rc3 is that tools using it don't compile with C++17 as public LLVM headers seem to use a removed feature, std::pointer_to_unary_function. [ 12%] Building CXX object tsl/CMakeFiles/tsl.dir/src/generated/combined.cpp.o In file included from /local/cullmann/build/eco.default/eco/tsl/src/generated/combined.cpp:3: In file included from /local/cullmann/build/eco.default/eco/tsl/src/graph.cpp:29: In file included from /local/cullmann/build/eco.default/eco/tsl/include/tsl/graph.h:32: In file included from /local/cullmann/build/eco.default/eco/tsl/include/tsl/llvm.h:52: In file included from /local/cullmann/build/eco.default/usr/include/llvm/Analysis/BasicAliasAnalysis.h:18: In file included from /local/cullmann/build/eco.default/usr/include/llvm/Analysis/AliasAnalysis.h:41: In file included from /local/cullmann/build/eco.default/usr/include/llvm/Analysis/MemoryLocation.h:20: In file included from /local/cullmann/build/eco.default/usr/include/llvm/IR/CallSite.h:37: /local/cullmann/build/eco.default/usr/include/llvm/IR/Instructions.h:4198:26: error: no template named 'pointer_to_unary_function' in namespace 'std' using DerefFnTy = std::pointer_to_unary_function<Value *, BasicBlock *>; ~~~~~^ /local/cullmann/build/eco.default/usr/include/llvm/IR/Instructions.h:4199:57: error: use of undeclared identifier 'DerefFnTy' using handler_iterator = mapped_iterator<op_iterator, DerefFnTy>; ^ /local/cullmann/build/eco.default/usr/include/llvm/IR/Instructions.h:4200:40: error: use of undeclared identifier 'handler_iterator' using handler_range = iterator_range<handler_iterator>; ^ /local/cullmann/build/eco.default/usr/include/llvm/IR/Instructions.h:4202:12: error: no template named 'pointer_to_unary_function' in namespace 'std' std::pointer_to_unary_function<const Value *, const BasicBlock *>; ~~~~~^ /local/cullmann/build/eco.default/usr/include/llvm/IR/Instructions.h:4204:42: error: use of undeclared identifier 'ConstDerefFnTy' mapped_iterator<const_op_iterator, ConstDerefFnTy>; ^ /local/cullmann/build/eco.default/usr/include/llvm/IR/Instructions.h:4205:46: error: unknown type name 'const_handler_iterator'; did you mean 'const_user_iterator'? using const_handler_range = iterator_range<const_handler_iterator>; ^~~~~~~~~~~~~~~~~~~~~~ const_user_iterator /local/cullmann/build/eco.default/usr/include/llvm/IR/Value.h:365:9: note: 'const_user_iterator' declared here using const_user_iterator = user_iterator_impl<const User>; Greetings Christoph ----- Am 26. Aug 2017 um 14:00 schrieb llvm-dev llvm-dev at lists.llvm.org:> Working well here so far. > Is the removal of the RISCVCodeGen, RISCVDesc and RISCVInfo libraries > that were in rc2 intentional? > > ttyl > bero > > On 26 August 2017 at 00:52, Hans Wennborg via Release-testers > <release-testers at lists.llvm.org> wrote: >> Dear testers, >> >> 5.0.0-rc3 was just tagged. >> >> This is a release candidate in the real sense: if nothing bad comes up >> in testing, this is what the release is going to look like. >> >> Please build, test and upload binaries to the sftp (use the >> /data/testers-uploads/ directory) and let me know what issues remain. >> >> I know we're a little bit behind schedule, but hopefully we can get to >> 'final' soon. >> >> Cheers, >> Hans >> _______________________________________________ >> Release-testers mailing list >> Release-testers at lists.llvm.org >> http://lists.llvm.org/cgi-bin/mailman/listinfo/release-testers > _______________________________________________ > LLVM Developers mailing list > llvm-dev at lists.llvm.org > http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev-- ----------------------------- Dr.-Ing. Christoph Cullmann --------- AbsInt Angewandte Informatik GmbH Email: cullmann at AbsInt.com Science Park 1 Tel: +49-681-38360-22 66123 Saarbrücken Fax: +49-681-38360-20 GERMANY WWW: http://www.AbsInt.com -------------------------------------------------------------------- Geschäftsführung: Dr.-Ing. Christian Ferdinand Eingetragen im Handelsregister des Amtsgerichts Saarbrücken, HRB 11234
Sylvestre Ledru via llvm-dev
2017-Aug-28 07:46 UTC
[llvm-dev] [Release-testers] [5.0.0 Release] Release Candidate 3 tagged
Hello I am not sure to understand how this relates to the 5.0.0 work? For now, it is broken because of a gcc bug: https://bugs.llvm.org/show_bug.cgi?id=34150 I am planning to upgrade the gcc version to 4.9 to workaround this issue. Probably this week. Sylvestre Le 28/08/2017 à 09:40, Andrew Kelley via Release-testers a écrit :> trusty on apt.llvm.org <http://apt.llvm.org> is behind the others by 9 > days and is missing the latest rc3 release. Can we get an update on this? > > Regards, > Andrew > > On Fri, Aug 25, 2017 at 6:52 PM, Hans Wennborg via llvm-dev > <llvm-dev at lists.llvm.org <mailto:llvm-dev at lists.llvm.org>> wrote: > > Dear testers, > > 5.0.0-rc3 was just tagged. > > This is a release candidate in the real sense: if nothing bad comes up > in testing, this is what the release is going to look like. > > Please build, test and upload binaries to the sftp (use the > /data/testers-uploads/ directory) and let me know what issues remain. > > I know we're a little bit behind schedule, but hopefully we can get to > 'final' soon. > > Cheers, > Hans > _______________________________________________ > LLVM Developers mailing list > llvm-dev at lists.llvm.org <mailto:llvm-dev at lists.llvm.org> > http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev > <http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev> > > > > _______________________________________________ > Release-testers mailing list > Release-testers at lists.llvm.org > http://lists.llvm.org/cgi-bin/mailman/listinfo/release-testers-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20170828/f235b2ef/attachment.html>
Hans Wennborg via llvm-dev
2017-Aug-28 17:21 UTC
[llvm-dev] [5.0.0 Release] Release Candidate 3 tagged
On Fri, Aug 25, 2017 at 3:52 PM, Hans Wennborg <hans at chromium.org> wrote:> Dear testers, > > 5.0.0-rc3 was just tagged. > > This is a release candidate in the real sense: if nothing bad comes up > in testing, this is what the release is going to look like. > > Please build, test and upload binaries to the sftp (use the > /data/testers-uploads/ directory) and let me know what issues remain.Windows is ready: $ sha1sum *5.0.0-rc3* 1d4f3cf9e1463803cd5bbb95a029b5544c0989be LLVM-5.0.0-rc3-win32.exe 72f1c558d01e8fde1da2c50b5cbb90e1bbc6375a LLVM-5.0.0-rc3-win64.exe
Dimitry Andric via llvm-dev
2017-Aug-28 18:08 UTC
[llvm-dev] [Release-testers] [5.0.0 Release] Release Candidate 3 tagged
On 26 Aug 2017, at 00:52, Hans Wennborg via Release-testers <release-testers at lists.llvm.org> wrote:> > 5.0.0-rc3 was just tagged. > > This is a release candidate in the real sense: if nothing bad comes up > in testing, this is what the release is going to look like.Built and tested, no changes with respect to the previous rc. I've uploaded: SHA256 (clang+llvm-5.0.0-rc3-amd64-unknown-freebsd10.tar.xz) = 510d8689239a1b83a154e8ee0230765d0f9054ca534c3a9ed4a2d4e31d8f9704 SHA256 (clang+llvm-5.0.0-rc3-i386-unknown-freebsd10.tar.xz) = 65b21c280575dcf16449c4c051b14f9950ff5f5d0a43b59852a0e1c65a1f145c -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/20170828/d6126021/attachment.sig>
Simon Dardis via llvm-dev
2017-Aug-30 17:38 UTC
[llvm-dev] [lldb-dev] [5.0.0 Release] Release Candidate 3 tagged
Hi, I've uploaded the binaries for rc3: SHA256(clang+llvm-5.0.0-rc3-mipsel-linux-gnu.tar.xz)= f682de9375970c3e43b11da94cfbcb38163a79a5a09806ef0198837eefbfc621 SHA256(clang+llvm-5.0.0-rc3-mips-linux-gnu.tar.xz)= 909095eac1ed5a21a5ba7ea5099d56f29576398b8dd7497453c63b2bcafe7874 SHA256(clang+llvm-5.0.0-rc3-x86_64-linux-gnu-debian8.tar.xz)= bb75e1c73b5dec292b7a2092c7876413cc8941eb085e84b53cb31b32d0812b94 During testing, I encountered a new failure when compiling for MIPS32r1, an apparent hang when compiling: test-suite.src/MultiSource/Applications/JM/lencod/rdopt.c This issue did not occur for rc2 and I suspect it's related to PR34326 as gdb is giving me stack traces with DACombine and visitSTORE. Running the test-suite through emulation shows a clean result. Otherwise, looks ok here. Thanks, Simon ________________________________________ From: lldb-dev [lldb-dev-bounces at lists.llvm.org] on behalf of Hans Wennborg via lldb-dev [lldb-dev at lists.llvm.org] Sent: 25 August 2017 23:52 To: Release-testers Cc: llvm-dev; cfe-dev; openmp-dev (openmp-dev at lists.llvm.org); LLDB Dev Subject: [lldb-dev] [5.0.0 Release] Release Candidate 3 tagged Dear testers, 5.0.0-rc3 was just tagged. This is a release candidate in the real sense: if nothing bad comes up in testing, this is what the release is going to look like. Please build, test and upload binaries to the sftp (use the /data/testers-uploads/ directory) and let me know what issues remain. I know we're a little bit behind schedule, but hopefully we can get to 'final' soon. Cheers, Hans _______________________________________________ lldb-dev mailing list lldb-dev at lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev
Hans Wennborg via llvm-dev
2017-Aug-30 17:59 UTC
[llvm-dev] [lldb-dev] [5.0.0 Release] Release Candidate 3 tagged
On Wed, Aug 30, 2017 at 10:38 AM, Simon Dardis <Simon.Dardis at imgtec.com> wrote:> > Hi, > > I've uploaded the binaries for rc3: > > SHA256(clang+llvm-5.0.0-rc3-mipsel-linux-gnu.tar.xz)= f682de9375970c3e43b11da94cfbcb38163a79a5a09806ef0198837eefbfc621 > SHA256(clang+llvm-5.0.0-rc3-mips-linux-gnu.tar.xz)= 909095eac1ed5a21a5ba7ea5099d56f29576398b8dd7497453c63b2bcafe7874 > SHA256(clang+llvm-5.0.0-rc3-x86_64-linux-gnu-debian8.tar.xz)= bb75e1c73b5dec292b7a2092c7876413cc8941eb085e84b53cb31b32d0812b94Thanks! I've added them to the prerelease page.> During testing, I encountered a new failure when compiling for MIPS32r1, an apparent hang when > compiling: test-suite.src/MultiSource/Applications/JM/lencod/rdopt.c > > This issue did not occur for rc2 and I suspect it's related to PR34326 as gdb is giving me stack traces > with DACombine and visitSTORE. Running the test-suite through emulation shows a clean result.Hmm, if it's related to PR34326, I'd expect it to have shown for rc2 as well. But since you say it doesn't show in emulation, maybe it's not completely deterministic.> ________________________________________ > From: lldb-dev [lldb-dev-bounces at lists.llvm.org] on behalf of Hans Wennborg via lldb-dev [lldb-dev at lists.llvm.org] > Sent: 25 August 2017 23:52 > To: Release-testers > Cc: llvm-dev; cfe-dev; openmp-dev (openmp-dev at lists.llvm.org); LLDB Dev > Subject: [lldb-dev] [5.0.0 Release] Release Candidate 3 tagged > > Dear testers, > > 5.0.0-rc3 was just tagged. > > This is a release candidate in the real sense: if nothing bad comes up > in testing, this is what the release is going to look like. > > Please build, test and upload binaries to the sftp (use the > /data/testers-uploads/ directory) and let me know what issues remain. > > I know we're a little bit behind schedule, but hopefully we can get to > 'final' soon. > > Cheers, > Hans > _______________________________________________ > lldb-dev mailing list > lldb-dev at lists.llvm.org > http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev