diff options
author | 2018-05-23 00:03:13 +0000 | |
---|---|---|
committer | 2018-05-23 00:03:13 +0000 | |
commit | d0ce8e8aabe7445377fe7307572df89394df21c9 (patch) | |
tree | 8c8251386875bdf7ea50c3189ad2d02799ad4b57 /python/androidmk.go | |
parent | 542d60062fa56103a0e7ee53aa19af6adc9b136b (diff) | |
parent | ff7d3972189d0f0b5c678b2b4673a78f017dd55f (diff) |
Merge "Add libc++.so as install dependencies for hermetic Python."
Diffstat (limited to 'python/androidmk.go')
-rw-r--r-- | python/androidmk.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/python/androidmk.go b/python/androidmk.go index 5fa01abb5..b2d3b0112 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++") + }) } |