aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/protobuf
diff options
context:
space:
mode:
authorGravatar hlopko <hlopko@google.com>2018-06-15 11:32:49 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-06-15 11:34:20 -0700
commitd860317dded53a9fcfdf841c59c875b5e037f459 (patch)
treedb912706ae8478ba708d1707ef21e248f7a36045 /src/main/protobuf
parent94f14ad643f5c094cd3b79660f47d80181f80ce0 (diff)
Remove LipoMode and LipoModeFlags from CROSSTOOL
RELNOTES: None. PiperOrigin-RevId: 200747338
Diffstat (limited to 'src/main/protobuf')
-rw-r--r--src/main/protobuf/crosstool_config.proto16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/main/protobuf/crosstool_config.proto b/src/main/protobuf/crosstool_config.proto
index 0b0716782e..0b9cc06dcb 100644
--- a/src/main/protobuf/crosstool_config.proto
+++ b/src/main/protobuf/crosstool_config.proto
@@ -402,9 +402,6 @@ message CToolchain {
// Additional compiler and linker flags depending on the compilation mode.
repeated CompilationModeFlags compilation_mode_flags = 17;
- // Additional compiler and linker flags depending on the LIPO mode.
- repeated LipoModeFlags lipo_mode_flags = 44;
-
// Additional linker flags depending on the linking mode.
repeated LinkingModeFlags linking_mode_flags = 18;
@@ -502,19 +499,6 @@ message LinkingModeFlags {
repeated string linker_flag = 2;
}
-enum LipoMode {
- OFF = 1;
- BINARY = 2;
- // LIBRARY = 3; // RESERVED
-}
-
-message LipoModeFlags {
- required LipoMode mode = 1;
- repeated string compiler_flag = 2;
- repeated string cxx_flag = 3;
- repeated string linker_flag = 4;
-}
-
message MakeVariable {
required string name = 1;
required string value = 2;