aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Cal Peyser <cpeyser@google.com>2016-02-23 21:24:55 +0000
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2016-02-23 22:18:51 +0000
commitbe93589c897f28ad6cc35bad16e73cd0b8b1084c (patch)
tree9c2f865ee33cbbe1184328ef048ef599ced59ff2
parent1ef014437e5ded8a96803376956f865a67290c40 (diff)
Changes to crosstool_config.proto to support dsym debug symbol and breakpad file generation.
-- MOS_MIGRATED_REVID=115376419
-rw-r--r--src/main/protobuf/crosstool_config.proto7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/main/protobuf/crosstool_config.proto b/src/main/protobuf/crosstool_config.proto
index d34b29e136..1b824466de 100644
--- a/src/main/protobuf/crosstool_config.proto
+++ b/src/main/protobuf/crosstool_config.proto
@@ -230,6 +230,11 @@ message CToolchain {
// makes it output normalized archives that don't contain timestamps.
optional bool supports_normalizing_ar = 26 [default = false];
optional bool supports_fission = 43 [default = false];
+ // Can generate dsym debug symbol information.
+ optional bool supports_dsym = 51 [default = false];
+ // Can generate a breakpad file. Requires that support_dsym=true,
+ // otherwise an error will be thrown.
+ optional bool supports_breakpad = 52 [default = false];
optional bool needsPic = 12 [default = false];
// Compiler flags for C/C++/Asm compilation.
@@ -328,7 +333,7 @@ message CToolchain {
// why they are recorded here.
repeated string debian_extra_requires = 33;
- // Next free id: 51
+ // Next free id: 53
}
message ToolPath {