diff options
author | 2023-11-15 09:27:39 -0800 | |
---|---|---|
committer | 2023-11-15 09:27:39 -0800 | |
commit | 8c97f47adeb74567a9bf162ae25a82001928b970 (patch) | |
tree | a59fc90155a85642b01926ce747aef7b632b0384 /native/dicttoolkit/Android.bp | |
parent | 0bba80779a8e499391a12a4f94fffbcaf9322d3f (diff) | |
download | latinime-8c97f47adeb74567a9bf162ae25a82001928b970.tar.gz latinime-8c97f47adeb74567a9bf162ae25a82001928b970.tar.xz latinime-8c97f47adeb74567a9bf162ae25a82001928b970.zip |
dicttoolkit: pin cpp_std to gnu++17
This project doesn't build with gnu++20 and prevents AOSP default to be
upgraded to a newer standard. Once the build failure is fixed here, this
change can be reverted.
Bug: 311052584
Test: m checkbuild
Change-Id: If2d19c1b6d970703a1dbf7685588a4a4be5a53c1
Diffstat (limited to '')
-rw-r--r-- | native/dicttoolkit/Android.bp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/native/dicttoolkit/Android.bp b/native/dicttoolkit/Android.bp index 4ae250fa2..6560d654a 100644 --- a/native/dicttoolkit/Android.bp +++ b/native/dicttoolkit/Android.bp @@ -24,6 +24,7 @@ package { cc_defaults { name: "dicttoolkit_defaults", + cpp_std: "gnu++17", cflags: [ "-Werror", "-Wall", |