From 03a708631919145f403a89352e36785eded6c73c Mon Sep 17 00:00:00 2001 From: Dan Willemsen Date: Wed, 18 May 2016 16:16:29 -0700 Subject: 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 --- cc/x86_windows_host.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cc') diff --git a/cc/x86_windows_host.go b/cc/x86_windows_host.go index a190b269..9f5cdc42 100644 --- a/cc/x86_windows_host.go +++ b/cc/x86_windows_host.go @@ -69,10 +69,12 @@ var ( windowsX86Ldflags = []string{ "-m32", + "-L${windowsGccRoot}/${windowsGccTriple}/lib32", } windowsX8664Ldflags = []string{ "-m64", + "-L${windowsGccRoot}/${windowsGccTriple}/lib64", } ) -- cgit v1.2.3