Fedora and openSUSE uploaded.
On Sat, Aug 22, 2015 at 6:59 AM, Renato Golin
wrote:
> AArch64 up. All green.
>
> On 21 August 2015 at 01:51, Hans Wennborg wrote:
> > Hello everyone,
> >
> > 3.7-rc3 has just been tagged. Testers, please test, build binaries,
> > upload to the sftp and report resu
On 21 August 2015 at 21:59, Renato Golin wrote:
> AArch64 up. All green.
ARM up. All green.
___
lldb-dev mailing list
lldb-dev@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev
The problem seems to be caused by the way the symlinks are setup in
test-release.sh, e.g. like so:
llvm.src/tools/clang -> ../../cfe.src
cfe.src/tools/extra -> ../../clang-tools-extra.src
When it then tries to access the path
llvm.src/tools/clang/tools/extra/clang-apply-replacements/lib/Tooling
Hi,
My script is simple enough:
import lldb
def pp(debugger, command, result, internal_dict):
target = debugger.GetSelectedTarget()
process = target.GetProcess()
thread = process.GetSelectedThread()
frame = thread.GetSelectedFrame()
res = frame.EvaluateExpression("%s->dump()"
It's building with this patch now, already at Phase3, so it seems to work:
Index: trunk/utils/release/test-release.sh
===
--- trunk/utils/release/test-release.sh (revision 245679)
+++ trunk/utils/release/test-release.sh (working copy)
https://llvm.org/bugs/show_bug.cgi?id=24548
Bug ID: 24548
Summary: Build fails on unsupported archs for Native Thread
Product: lldb
Version: 3.7
Hardware: PC
OS: Linux
Status: NEW
Severity: normal
Le 21/08/2015 02:51, Hans Wennborg a écrit :
> Hello everyone,
>
> 3.7-rc3 has just been tagged. Testers, please test, build binaries,
> upload to the sftp and report results to this thread.
>
Uploaded in Debian.
Works fine on the major archs
However, lldb fails to build on some archs. I reported b
Still no complete go, doing the tests on i386 failed with some weird sed error:
[...]
Making Unit/lit.site.cfg for Clang extra tools...
sed: lit.tmp: No such file or directory
Makefile:61: recipe for target 'Unit/lit.site.cfg' failed
gmake[2]: *** [Unit/lit.site.cfg] Error 1
Strangely enough, thi
Right, I found out the problem. It's because clang-tools-extra's test Makefile
uses the temporary filename "lit.tmp" for both its main lit.site.cfg, and for
Unit/lit.site.cfg. If these make jobs get run simultaneously, one or the other
temp file can unexpectedly disappear.
The following fixes