aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Hoisie <hoisie@google.com>2023-11-28 00:08:24 +0000
committerMichael Hoisie <hoisie@google.com>2023-11-28 00:08:24 +0000
commitaf59c6b2a0ff0c8f8efce610c49fc6316c2c1ef4 (patch)
treed9d27fe34911ab1991b37c1d969e6c2c976335b0
parent991af89d2c4ed970624ac3e250579c8e89710932 (diff)
downloadcpython3-af59c6b2a0ff0c8f8efce610c49fc6316c2c1ef4.tar.gz
Switch py3-launcher to use libsqlite_static_noicu
The 'libsqlite' library for host recently switched on the SQLITE_ENABLE_ICU flag, which now requires ICU libraries to be included in binaries that link libsqlite statically. Because py3-launcher does not need the ICU extensions, switch to using the 'libsqlite_static_noicu' target. Test: m py3-launcher-autorun Bug: 308173442 Change-Id: If9165a1c8afaed693cf2e0c95ecad9d6b3a21670
-rw-r--r--Android.bp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Android.bp b/Android.bp
index 594f47132f..630fefe20b 100644
--- a/Android.bp
+++ b/Android.bp
@@ -385,7 +385,7 @@ cc_defaults {
},
host: {
static_libs: [
- "libsqlite",
+ "libsqlite_static_noicu",
"liblog",
"libopenssl_ssl",
"libopenssl_crypto",