Members
- apple_bitcode_mode
- apple_generate_dsym
- conlyopts
- copts
- custom_malloc
- cxxopts
- linkopts
- objc_generate_linkmap
- objc_should_strip_binary
- objccopts
apple_bitcode_mode
apple_bitcode_mode cpp.apple_bitcode_modeReturns the Bitcode mode to use for compilation steps.
This field is only valid for Apple, and only for device builds; for simulator builds, it always returns 'none'
.
apple_generate_dsym
bool cpp.apple_generate_dsymWhether to generate Apple debug symbol(.dSYM) artifacts.
conlyopts
list cpp.conlyoptsThe flags passed to Bazel by
--conlyopt
option.
copts
list cpp.coptsThe flags passed to Bazel by
--copt
option.
custom_malloc
Label cpp.custom_mallocReturns label pointed to by
--custom_malloc
option. Can be accessed with configuration_field
:attr.label(May return
default = configuration_field(
fragment = "cpp",
name = "custom_malloc"
)
)
None
.
cxxopts
list cpp.cxxoptsThe flags passed to Bazel by
--cxxopt
option.
linkopts
list cpp.linkoptsThe flags passed to Bazel by
--linkopt
option.
objc_generate_linkmap
bool cpp.objc_generate_linkmap(Apple-only) Whether to generate linkmap artifacts.
objc_should_strip_binary
bool cpp.objc_should_strip_binary(Apple-only) whether to perform symbol and dead-code strippings on linked binaries.
objccopts
list cpp.objccoptsThe flags passed to Bazel by
--objccopt
option.