aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Hoisie <hoisie@google.com>2023-11-18 08:16:36 +0000
committerMichael Hoisie <hoisie@google.com>2023-11-18 08:20:47 +0000
commit61f3a0e64b50882be7ca6cf82b830084c760bc9d (patch)
tree76d60b13fb8d3c94aadc9c0c4c01cefc017eef19
parent24e56a881db024fcce7e66792c86994df2ebd15c (diff)
downloadcpython2-61f3a0e64b50882be7ca6cf82b830084c760bc9d.tar.gz
Switch py2-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 py2-launcher does not need the ICU extensions, switch to using the 'libsqlite_static_noicu' target. Test: m py2-launcher Bug: 308173442 Change-Id: I8ede90d7bd7eb016b05e181a6955ff2d3b770e8f
-rw-r--r--Android.bp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Android.bp b/Android.bp
index eed47c7d46..6d59c063cb 100644
--- a/Android.bp
+++ b/Android.bp
@@ -311,7 +311,7 @@ cc_defaults {
],
},
host: {
- static_libs: ["libsqlite"],
+ static_libs: ["libsqlite_static_noicu"],
},
// Use shared libsqlite for device side, otherwise
// the executable size will be really huge.