From cd58088ccfc1a3315bed181c0c1b7cab3e71176f Mon Sep 17 00:00:00 2001 From: Dan Willemsen Date: Mon, 2 Oct 2017 10:29:02 -0700 Subject: [PATCH] Move host flags from linux -> host There will be a second linux host config (linux_bionic), so move this to apply to all supported host configs instead of just linux_glibc. Test: out/soong/build.ninja is the same before/after Change-Id: Id8db10e0a3db889736070eea16f387785c913179 --- libunwindstack/Android.bp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libunwindstack/Android.bp b/libunwindstack/Android.bp index cf2ac4eab..7ab6699ca 100644 --- a/libunwindstack/Android.bp +++ b/libunwindstack/Android.bp @@ -67,7 +67,7 @@ cc_library { target: { // Always disable optimizations for host to make it easier to debug. - linux: { + host: { cflags: ["-O0", "-g"], }, },