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

Tobias Hieta via Release-testers release-testers at lists.llvm.org
Tue Dec 1 07:13:02 PST 2020


I just realized that we should probably make an arm64 build as well
for those new fancy mac's.

What do people think is the best solution here, a fat universal build
that will be double the size (currently llvm+clang is already ~400MB
packed so it will be very big), or two separate builds?

The pro of having two separate builds is that we can set the correct
default triple instead of a single one, the downside is that I need to
build it twice for every version.

-- Tobias

On Tue, Dec 1, 2020 at 4:03 PM Tobias Hieta <tobias at plexapp.com> wrote:
>
> 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 Release-testers mailing list