Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8ccbe425 authored by Andreas Gampe's avatar Andreas Gampe
Browse files

Libunwindstack: Add -O0 to tools defaults on host

Extend the debug support from the host library to host tools.

Test: mmma system/core/libunwindstack
Change-Id: Ib6ea5f021d6b8139c545eaa2e6b1675befa4d3bd
parent 74bf8144
Loading
Loading
Loading
Loading
+9 −0
Original line number Original line Diff line number Diff line
@@ -220,6 +220,15 @@ cc_defaults {
        "libbase",
        "libbase",
        "liblzma",
        "liblzma",
    ],
    ],
    target: {
        // Always disable optimizations for host to make it easier to debug.
        host: {
            cflags: [
                "-O0",
                "-g",
            ],
        },
    },
}
}


cc_binary {
cc_binary {