[llvm-dev] [Release-testers] LLVM 11.0.1-rc1 has been tagged

Tobias Hieta via llvm-dev llvm-dev at lists.llvm.org
Tue Dec 1 07:03:29 PST 2020


Tom,

MacOS build: clang+llvm-11.0.1-rc1-x86_64-apple-darwin.tar.xz
with SHA256: c9ee87d7e42df8494a9f42993ed499479b3ce118c940a6e8907d075ceb913223
is uploaded.

The same tests as before failed:

FAIL: libunwind :: libunwind_01.pass.cpp (69255 of 69302)
FAIL: libunwind :: signal_frame.pass.cpp (69258 of 69302)

I had to use the following patch to use Python 3:

diff --git a/openmp/runtime/test/lit.cfg b/openmp/runtime/test/lit.cfg
index 357b18a205d..96c0c3a1da7 100644
--- a/openmp/runtime/test/lit.cfg
+++ b/openmp/runtime/test/lit.cfg
@@ -76,7 +76,7 @@ if config.operating_system == 'Darwin':
cmd = subprocess.Popen(['xcrun', '--show-sdk-path'],
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
out, err = cmd.communicate()
- out = out.strip()
+ out = out.strip().decode()
res = cmd.wait()
if res == 0 and out:
config.test_flags += " -isysroot " + out

otherwise tests failed to run.

On Thu, Nov 26, 2020 at 8:21 AM Tom Stellard via Release-testers
<release-testers at lists.llvm.org> wrote:
>
> Hi,
>
> I've tagged LLVM 11.0.1-rc1.  Testers may begin testing and uploading
> binaries.  If you still have bugs you want fixed in LLVM 11.0.1, you
> have until Dec. 8 to request backports.  You can make these requests by
> filing a bug at bugs.llvm.org and putting release-11.0.1 in the 'blocks'
> field.
>
> -Tom
>
> _______________________________________________
> Release-testers mailing list
> Release-testers at lists.llvm.org
> https://lists.llvm.org/cgi-bin/mailman/listinfo/release-testers


More information about the llvm-dev mailing list