mirror of https://github.com/bazelbuild/rules_cc
Remove LipoMode and LipoModeFlags from CROSSTOOL
RELNOTES: None. PiperOrigin-RevId: 200747338
This commit is contained in:
parent
2ea125ddd6
commit
ce4d5692c2
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue