aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--python/androidmk.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/python/androidmk.go b/python/androidmk.go
index 5fa01abb..b2d3b011 100644
--- a/python/androidmk.go
+++ b/python/androidmk.go
@@ -85,5 +85,7 @@ func (installer *pythonInstaller) AndroidMk(base *Module, ret *android.AndroidMk
fmt.Fprintln(w, "LOCAL_MODULE_SUFFIX := "+filepath.Ext(file))
fmt.Fprintln(w, "LOCAL_MODULE_PATH := $(OUT_DIR)/"+filepath.Clean(dir))
fmt.Fprintln(w, "LOCAL_MODULE_STEM := "+stem)
+ fmt.Fprintln(w, "LOCAL_REQUIRED_MODULES := libc++")
+
})
}