Closed bttk closed 4 years ago
installer() rule by default depends now on targets built with '-c opt'
To disable this override of a command line flag use compilation_mode = "" attribute:
compilation_mode = ""
installer( name = "install_foo", compilation_mode = "", data = [":foo"], )
Alternatively you can force a debug build:
installer( name = "install_foo_dbg", compilation_mode = "dbg", data = [":foo"], )
@juliexxia Please take a look (specifically installer/def.bzl)
installer/def.bzl
installer() rule by default depends now on targets built with '-c opt'
To disable this override of a command line flag use
compilation_mode = ""
attribute:Alternatively you can force a debug build: