@@ -53,7 +53,7 @@ pub fn find(build: &mut Build) {
53
53
if let Some ( cc) = config. and_then ( |c| c. cc . as_ref ( ) ) {
54
54
cfg. compiler ( cc) ;
55
55
} else {
56
- set_compiler ( & mut cfg, "gcc" , target, config, build) ;
56
+ set_compiler ( & mut cfg, Language :: C , target, config, build) ;
57
57
}
58
58
59
59
let compiler = cfg. get_compiler ( ) ;
@@ -74,7 +74,7 @@ pub fn find(build: &mut Build) {
74
74
if let Some ( cxx) = config. and_then ( |c| c. cxx . as_ref ( ) ) {
75
75
cfg. compiler ( cxx) ;
76
76
} else {
77
- set_compiler ( & mut cfg, "g++" , host, config, build) ;
77
+ set_compiler ( & mut cfg, Language :: CPlusPlus , host, config, build) ;
78
78
}
79
79
let compiler = cfg. get_compiler ( ) ;
80
80
build. verbose ( & format ! ( "CXX_{} = {:?}" , host, compiler. path( ) ) ) ;
@@ -83,7 +83,7 @@ pub fn find(build: &mut Build) {
83
83
}
84
84
85
85
fn set_compiler ( cfg : & mut cc:: Build ,
86
- gnu_compiler : & str ,
86
+ compiler : Language ,
87
87
target : Interned < String > ,
88
88
config : Option < & Target > ,
89
89
build : & Build ) {
@@ -94,7 +94,7 @@ fn set_compiler(cfg: &mut cc::Build,
94
94
t if t. contains ( "android" ) => {
95
95
if let Some ( ndk) = config. and_then ( |c| c. ndk . as_ref ( ) ) {
96
96
let target = target. replace ( "armv7" , "arm" ) ;
97
- let compiler = format ! ( "{}-{}" , target, gnu_compiler ) ;
97
+ let compiler = format ! ( "{}-{}" , target, compiler . clang ( ) ) ;
98
98
cfg. compiler ( ndk. join ( "bin" ) . join ( compiler) ) ;
99
99
}
100
100
}
@@ -103,6 +103,7 @@ fn set_compiler(cfg: &mut cc::Build,
103
103
// which is a gcc version from ports, if this is the case.
104
104
t if t. contains ( "openbsd" ) => {
105
105
let c = cfg. get_compiler ( ) ;
106
+ let gnu_compiler = compiler. gcc ( ) ;
106
107
if !c. path ( ) . ends_with ( gnu_compiler) {
107
108
return
108
109
}
@@ -145,3 +146,29 @@ fn set_compiler(cfg: &mut cc::Build,
145
146
_ => { }
146
147
}
147
148
}
149
+
150
+ /// The target programming language for a native compiler.
151
+ enum Language {
152
+ /// The compiler is targeting C.
153
+ C ,
154
+ /// The compiler is targeting C++.
155
+ CPlusPlus ,
156
+ }
157
+
158
+ impl Language {
159
+ /// Obtains the name of a compiler in the GCC collection.
160
+ fn gcc ( self ) -> & ' static str {
161
+ match self {
162
+ Language :: C => "gcc" ,
163
+ Language :: CPlusPlus => "g++" ,
164
+ }
165
+ }
166
+
167
+ /// Obtains the name of a compiler in the clang suite.
168
+ fn clang ( self ) -> & ' static str {
169
+ match self {
170
+ Language :: C => "clang" ,
171
+ Language :: CPlusPlus => "clang++" ,
172
+ }
173
+ }
174
+ }
0 commit comments