Add libc++.so as install dependencies for hermetic Python.

Bug: b/80140289
Test: m clean && m test_me
Change-Id: I3acbf1bac3b866b37f9ec69584dc9be7a5ad1d89
This commit is contained in:
Nan Zhang
2018-05-22 14:18:30 -07:00
parent 9bf049dcbb
commit ff7d397218

View File

@@ -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++")
})
}