aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Android.bp18
1 files changed, 12 insertions, 6 deletions
diff --git a/Android.bp b/Android.bp
index b6dc00e2c1..82d293ebbc 100644
--- a/Android.bp
+++ b/Android.bp
@@ -48,6 +48,11 @@ cc_defaults {
android_x86: {
local_include_dirs: ["android_x86/pyconfig"],
},
+ linux_bionic: {
+ // NB linux_bionic is a 'host' architecture but it uses the bionic libc like 'android'
+ // targets so use the android pyconfig.
+ local_include_dirs: ["android_x86_64/pyconfig"],
+ },
android_x86_64: {
local_include_dirs: ["android_x86_64/pyconfig"],
},
@@ -834,12 +839,7 @@ cc_library_static {
"Modules/_sqlite/util.c",
],
target: {
- linux_glibc_x86_64: {
- static_libs: [
- "libsqlite",
- ],
- },
- darwin_x86_64: {
+ host: {
static_libs: [
"libsqlite",
],
@@ -928,6 +928,12 @@ cc_library_static {
"Modules/_ctypes/libffi/src/x86/darwin64.S",
],
},
+ linux_bionic: {
+ local_include_dirs: ["linux_x86_64/libffi"],
+ srcs: [
+ "Modules/_ctypes/libffi/src/x86/unix64.S",
+ ],
+ },
linux_glibc_x86_64: {
local_include_dirs: ["linux_x86_64/libffi"],
srcs: [