Add windows prebuilt library path

This was in HOST_CROSS_GLOBAL_LD_DIRS, which is why it didn't get
translated over here, since Soong does not use global linking
directories. It's being moved to HOST_CROSS_GLOBAL_LDFLAGS so that it
can be shared.

Change-Id: Ie20670278a589ae3cf76e09de4079edfa800cf5b
This commit is contained in:
Dan Willemsen 2016-05-18 16:16:29 -07:00
parent d352edf0e8
commit 03a7086319
1 changed files with 2 additions and 0 deletions

View File

@ -69,10 +69,12 @@ var (
windowsX86Ldflags = []string{
"-m32",
"-L${windowsGccRoot}/${windowsGccTriple}/lib32",
}
windowsX8664Ldflags = []string{
"-m64",
"-L${windowsGccRoot}/${windowsGccTriple}/lib64",
}
)