Lines 189-195
template("clang_lib") {
Link Here
|
189 |
} |
189 |
} |
190 |
} else if (is_apple) { |
190 |
} else if (is_apple) { |
191 |
_dir = "darwin" |
191 |
_dir = "darwin" |
192 |
} else if (is_linux || is_chromeos) { |
192 |
} else if (is_linux) { |
|
|
193 |
_dir = "linux" |
194 |
if (current_cpu == "x64") { |
195 |
_suffix = "-x86_64" |
196 |
} else if (current_cpu == "x86") { |
197 |
_suffix = "-i386" |
198 |
} else if (current_cpu == "arm64") { |
199 |
_suffix = "-aarch64" |
200 |
} else if (current_cpu == "arm") { |
201 |
_suffix = "-armhf" |
202 |
} else if (current_cpu == "ppc64") { |
203 |
_suffix = "-powerpc64le" |
204 |
} else { |
205 |
assert(false) # Unhandled cpu type |
206 |
} |
207 |
} else if (is_chromeos) { |
193 |
if (current_cpu == "x64") { |
208 |
if (current_cpu == "x64") { |
194 |
_dir = "x86_64-unknown-linux-gnu" |
209 |
_dir = "x86_64-unknown-linux-gnu" |
195 |
} else if (current_cpu == "x86") { |
210 |
} else if (current_cpu == "x86") { |