Add dependencies on late static libraries

Late static libraries were added to the build command line, but not
the implicit dependencies.

Change-Id: I20ed8be6ae1ec7c1b78f16a6d1da7d1535ff5cba
This commit is contained in:
Colin Cross 2015-03-17 10:47:08 -07:00
parent a360e8b0fa
commit 3075ad07e4

View file

@ -223,6 +223,7 @@ func TransformObjToDynamicBinary(ctx common.AndroidModuleContext,
deps := []string{ldCmd}
deps = append(deps, sharedLibs...)
deps = append(deps, staticLibs...)
deps = append(deps, lateStaticLibs...)
deps = append(deps, wholeStaticLibs...)
if crtBegin != "" {
deps = append(deps, crtBegin, crtEnd)