[lldb-dev] [4.0.0 Release] Relase Candidate 1 has been tagged

2017-01-18 Thread Hans Wennborg via lldb-dev
Dear testers,

4.0.0-rc1 was just tagged from the branch, with r292377.

There are still open merge requests and bugs, but I'd like to get the
testing started to see what issues come up.

Please build, test, and upload binaries to the sftp. Let me know how
it goes. I'll upload source, docs, and your binaries to the web site
once their ready.

Thanks,
Hans
___
lldb-dev mailing list
lldb-dev@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev


Re: [lldb-dev] [llvm-dev] [4.0.0 Release] Relase Candidate 1 has been tagged

2017-01-18 Thread Mehdi Amini via lldb-dev
Hi Hans,

I can test it on macOS. Is there a doc to describe what to test? I remember you 
pointed me to a script once…
Anyone else involved in the release process on macOS?

Thanks,

— 
Mehdi




> On Jan 18, 2017, at 7:45 AM, Hans Wennborg via llvm-dev 
>  wrote:
> 
> Dear testers,
> 
> 4.0.0-rc1 was just tagged from the branch, with r292377.
> 
> There are still open merge requests and bugs, but I'd like to get the
> testing started to see what issues come up.
> 
> Please build, test, and upload binaries to the sftp. Let me know how
> it goes. I'll upload source, docs, and your binaries to the web site
> once their ready.
> 
> Thanks,
> Hans
> ___
> LLVM Developers mailing list
> llvm-...@lists.llvm.org
> http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev

___
lldb-dev mailing list
lldb-dev@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev


Re: [lldb-dev] [llvm-dev] [4.0.0 Release] Relase Candidate 1 has been tagged

2017-01-18 Thread Hans Wennborg via lldb-dev
The script lives in the llvm repo: utils/release/test-release.sh.
You'll probably want to invoke it as test-release.sh -release 4.0.0
-rc
1 -triple x86_64-apple-darwin

On Wed, Jan 18, 2017 at 10:26 AM, Mehdi Amini  wrote:
> Hi Hans,
>
> I can test it on macOS. Is there a doc to describe what to test? I remember 
> you pointed me to a script once…
> Anyone else involved in the release process on macOS?
>
> Thanks,
>
> —
> Mehdi
>
>
>
>
>> On Jan 18, 2017, at 7:45 AM, Hans Wennborg via llvm-dev 
>>  wrote:
>>
>> Dear testers,
>>
>> 4.0.0-rc1 was just tagged from the branch, with r292377.
>>
>> There are still open merge requests and bugs, but I'd like to get the
>> testing started to see what issues come up.
>>
>> Please build, test, and upload binaries to the sftp. Let me know how
>> it goes. I'll upload source, docs, and your binaries to the web site
>> once their ready.
>>
>> Thanks,
>> Hans
>> ___
>> LLVM Developers mailing list
>> llvm-...@lists.llvm.org
>> http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev
>
___
lldb-dev mailing list
lldb-dev@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev


Re: [lldb-dev] [llvm-dev] [4.0.0 Release] Relase Candidate 1 has been tagged

2017-01-18 Thread Hans Wennborg via lldb-dev
If you're using the svn repository you can just check out the
RELEASE_400/rc1 tag of the cfe module.

If you're using the git mirror, the last cfe commit on the release_40
branch before the tag is 3a631d565d.

Thanks,
Hans

On Wed, Jan 18, 2017 at 10:11 AM, Andrew Kelley  wrote:
> I'd like to test this, but I also need to test the corresponding libclang
> version at the same time. Which revision of cfe is 4.0.0-rc1?
>
> On Wed, Jan 18, 2017 at 10:45 AM, Hans Wennborg via llvm-dev
>  wrote:
>>
>> Dear testers,
>>
>> 4.0.0-rc1 was just tagged from the branch, with r292377.
>>
>> There are still open merge requests and bugs, but I'd like to get the
>> testing started to see what issues come up.
>>
>> Please build, test, and upload binaries to the sftp. Let me know how
>> it goes. I'll upload source, docs, and your binaries to the web site
>> once their ready.
>>
>> Thanks,
>> Hans
>> ___
>> LLVM Developers mailing list
>> llvm-...@lists.llvm.org
>> http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev
>
>
___
lldb-dev mailing list
lldb-dev@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev


Re: [lldb-dev] [cfe-dev] [llvm-dev] [4.0.0 Release] Relase Candidate 1 has been tagged

2017-01-18 Thread Mehdi Amini via lldb-dev
Looks like LLVM and clang are out-of-sync.

Using the script as Hans said worked for me:  test-release.sh -release 4.0.0 
-rc 1 -triple x86_64-apple-darwin
(Triple is likely gonna be different for you).

— 
Mehdi

> On Jan 18, 2017, at 12:28 PM, Andrew Kelley via cfe-dev 
>  wrote:
> 
> I tried to compile cfe 4.0.0-rc1 using llvm 4.0.0-rc1 and got this:
> 
> [ 63%] Building CXX object 
> lib/Serialization/CMakeFiles/clangSerialization.dir/ASTReader.cpp.o
> /home/andy/Downloads/cfe/rc1/lib/Serialization/ASTReader.cpp: In lambda 
> function:
> /home/andy/Downloads/cfe/rc1/lib/Serialization/ASTReader.cpp:1282:63: error: 
> invalid use of incomplete type ‘class llvm::Error’
>if (llvm::zlib::uncompress(Blob, Uncompressed, Record[0]) !=
>^
> In file included from 
> /home/andy/Downloads/cfe/rc1/lib/Serialization/ASTReader.cpp:73:0:
> /home/andy/local/include/llvm/Support/Compression.h:21:7: note: forward 
> declaration of ‘class llvm::Error’
>  class Error;
>^
> /home/andy/Downloads/cfe/rc1/lib/Serialization/ASTReader.cpp:1283:11: error: 
> ‘StatusOK’ is not a member of ‘llvm::zlib’
>llvm::zlib::StatusOK) {
>^
> lib/Serialization/CMakeFiles/clangSerialization.dir/build.make:86: recipe for 
> target 'lib/Serialization/CMakeFiles/clangSerialization.dir/ASTReader.cpp.o' 
> failed
> 
> 
> I added to AstReader.cpp:
> #include "llvm/Support/Error.h"
> 
> But there's still the other error.
> 
> On Wed, Jan 18, 2017 at 10:45 AM, Hans Wennborg via llvm-dev 
> mailto:llvm-...@lists.llvm.org>> wrote:
> Dear testers,
> 
> 4.0.0-rc1 was just tagged from the branch, with r292377.
> 
> There are still open merge requests and bugs, but I'd like to get the
> testing started to see what issues come up.
> 
> Please build, test, and upload binaries to the sftp. Let me know how
> it goes. I'll upload source, docs, and your binaries to the web site
> once their ready.
> 
> Thanks,
> Hans
> ___
> LLVM Developers mailing list
> llvm-...@lists.llvm.org 
> http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev 
> 
> 
> ___
> cfe-dev mailing list
> cfe-...@lists.llvm.org
> http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev

___
lldb-dev mailing list
lldb-dev@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev


Re: [lldb-dev] [cfe-dev] [4.0.0 Release] Relase Candidate 1 has been tagged

2017-01-18 Thread Mehdi Amini via lldb-dev

> On Jan 18, 2017, at 7:45 AM, Hans Wennborg via cfe-dev 
>  wrote:
> 
> Dear testers,
> 
> 4.0.0-rc1 was just tagged from the branch, with r292377.
> 
> There are still open merge requests and bugs, but I'd like to get the
> testing started to see what issues come up.
> 
> Please build, test, and upload binaries to the sftp. Let me know how
> it goes. I'll upload source, docs, and your binaries to the web site
> once their ready.

I built successfully, it the something specific you do for testing?
Am I expected to upload clang+llvm-4.0.0-rc1-x86_64-apple-darwin.tar.xz 
somewhere? (I don’t what sftp you’re referring to above).

Pardon my ignorance, first time I participate in the release process :)

Thanks,

Mehdi

___
lldb-dev mailing list
lldb-dev@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev


Re: [lldb-dev] [cfe-dev] [4.0.0 Release] Relase Candidate 1 has been tagged

2017-01-18 Thread Hans Wennborg via lldb-dev
On Wed, Jan 18, 2017 at 4:43 PM, Mehdi Amini  wrote:
>
>> On Jan 18, 2017, at 7:45 AM, Hans Wennborg via cfe-dev 
>>  wrote:
>>
>> Dear testers,
>>
>> 4.0.0-rc1 was just tagged from the branch, with r292377.
>>
>> There are still open merge requests and bugs, but I'd like to get the
>> testing started to see what issues come up.
>>
>> Please build, test, and upload binaries to the sftp. Let me know how
>> it goes. I'll upload source, docs, and your binaries to the web site
>> once their ready.
>
> I built successfully, it the something specific you do for testing?

The script tests that bootstrapping and running all the lit tests work.

Some testers run the test-suite (which I'm not really familiar with
myself) and if they have other code bases they care about.

But running test-release.sh is what I'm asking for really.

> Am I expected to upload clang+llvm-4.0.0-rc1-x86_64-apple-darwin.tar.xz 
> somewhere? (I don’t what sftp you’re referring to above).

Yes. I've asked Anton to give you access.

>
> Pardon my ignorance, first time I participate in the release process :)

No problem at all, and thanks very much for doing this.

Cheers,
Hans
___
lldb-dev mailing list
lldb-dev@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev