Skip to content

Commit 28227ce

Browse files
Android Build Coastguard WorkerGerrit Code Review
Android Build Coastguard Worker
authored and
Gerrit Code Review
committed
Merge "Merge cherrypicks of ['android-review.googlesource.com/2724316', 'android-review.googlesource.com/2744522'] into ndk-r26-release." into ndk-r26-release
2 parents 6fca9a5 + 37a12e7 commit 28227ce

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

docs/changelogs/Changelog-r26.md

+3
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ directly, see the [build system maintainers guide].
4141
* [Issue 1530]: Updated libc++ to match LLVM version.
4242
* [Issue 1565]: Fixed lldb ncurses issue with terminal database on Darwin.
4343
* [Issue 1677]: Fixed Clang crash in optimizer.
44+
* [Issue 1679]: Clang will now automatically enable ELF TLS for
45+
`minSdkVersion 29` or higher.
4446
* [Issue 1834]: Fixed Clang crash during SVE conversions.
4547
* [Issue 1860]: Fixed miscompilation affecting armv7.
4648
* [Issue 1861]: Fixed front end crash in Clang.
@@ -83,6 +85,7 @@ directly, see the [build system maintainers guide].
8385
[Issue 1530]: https://github.com/android/ndk/issues/1530
8486
[Issue 1565]: https://github.com/android/ndk/issues/1565
8587
[Issue 1677]: https://github.com/android/ndk/issues/1677
88+
[Issue 1679]: https://github.com/android/ndk/issues/1679
8689
[Issue 1764]: https://github.com/android/ndk/issues/1764
8790
[Issue 1803]: https://github.com/android/ndk/issues/1803
8891
[Issue 1834]: https://github.com/android/ndk/issues/1834

ndk/config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
major = 26
44
hotfix = 0
55
hotfix_str = chr(ord("a") + hotfix) if hotfix else ""
6-
beta = 2
6+
beta = 0
77
beta_str = "-beta{}".format(beta) if beta > 0 else ""
88
canary = False
99
canary_str = "-canary" if canary else ""

0 commit comments

Comments
 (0)