Remove LipoMode and LipoModeFlags from CROSSTOOL

RELNOTES: None.
PiperOrigin-RevId: 200747338
This commit is contained in:
hlopko 2018-06-15 20:32:49 +02:00 committed by Marcel Hlopko
parent 2ea125ddd6
commit ce4d5692c2
1 changed files with 0 additions and 16 deletions

View File

@ -402,9 +402,6 @@ message CToolchain {
// Additional compiler and linker flags depending on the compilation mode. // Additional compiler and linker flags depending on the compilation mode.
repeated CompilationModeFlags compilation_mode_flags = 17; 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. // Additional linker flags depending on the linking mode.
repeated LinkingModeFlags linking_mode_flags = 18; repeated LinkingModeFlags linking_mode_flags = 18;
@ -502,19 +499,6 @@ message LinkingModeFlags {
repeated string linker_flag = 2; 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 { message MakeVariable {
required string name = 1; required string name = 1;
required string value = 2; required string value = 2;