Re: [lldb-dev] [Release-testers] [9.0.0 Release] Release Candidate 6 is here

2019-09-22 Thread Brian Cain via lldb-dev
Uploaded ubuntu x86 binaries:

4361dc68e47b9972f0ec7db0c20411f60df90f28
 clang+llvm-9.0.0-x86_64-linux-gnu-ubuntu-14.04.tar.xz
085f223d48fd6fcf372f54ccdf8bbac403c279a2
 clang+llvm-9.0.0-x86_64-linux-gnu-ubuntu-16.04.tar.xz
b1627073e533975f0b4d4366b5f6e4dd44c7c6d8
 clang+llvm-9.0.0-x86_64-linux-gnu-ubuntu-18.04.tar.xz

On Tue, Sep 17, 2019 at 9:05 AM Hans Wennborg via Release-testers <
release-test...@lists.llvm.org> wrote:

> Hello everyone,
>
> 9.0.0-rc6 was just tagged from the release_90 branch at r372100. In
> the Git monorepo, it's tagged as llvmorg-9.0.0-rc6.
>
> Source code and docs are available at
> https://prereleases.llvm.org/9.0.0/#rc6
>
> This is the same as rc5 plus one very minor change (r371969) that
> still seemed good to pick up.
>
> I'm not allocating extra time for testing this one, expecting to tag
> 'final' in a day or two unless any new problem arises. If you still
> have cycles to spare, testing is still very much appreciated of
> course.
>
> As usual, please file bug reports about any issues you find, marking
> them blocking of https://llvm.org/PR42474
>
> Thanks,
> Hans
> ___
> Release-testers mailing list
> release-test...@lists.llvm.org
> https://lists.llvm.org/cgi-bin/mailman/listinfo/release-testers
>


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


[lldb-dev] help, how to get a debug build on windows (python37_d.lib)

2019-09-22 Thread Larry D'Anna via lldb-dev
Hi lldb-dev.  

I can’t seem to figure out how to build a debug lldb on windows.   It wants to 
link against a debug version of Python, which isn’t there.

My cmake line looks like this:

cmake -G Ninja `

   
"-DPYTHON_HOME=C:\Program Files (x86)\Microsoft Visual 
Studio\Shared\Python37_64" `

"-DLLVM_ENABLE_PROJECTS=clang;lldb;libcxx;libcxxabi;lld" `  

   
"-DSWIG_EXECUTABLE=C:\ProgramData\chocolatey\bin\swig.exe" `

   
"C:\Users\smoofra\llvm-project\llvm"

   

I also made this change, to tell it to link against the release python.

--- a/lldb/cmake/modules/LLDBConfig.cmake
+++ b/lldb/cmake/modules/LLDBConfig.cmake
@@ -227,7 +227,7 @@ function(find_python_libs_windows)
   else()
 # Lookup for concrete python installation depending on build type
 if (CMAKE_BUILD_TYPE STREQUAL Debug)
-  set(LOOKUP_DEBUG_PYTHON TRUE)
+  set(LOOKUP_DEBUG_PYTHON FALSE)
 else()
   set(LOOKUP_DEBUG_PYTHON FALSE)
 endif()

But somehow at the very end, the link still fails because python37_d.lib isn’t 
there.

Anybody know what I’m doing wrong?  Thank you.___
lldb-dev mailing list
lldb-dev@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev