Skip to content

Commit cc314b0

Browse files
committedMay 13, 2019
Remove bitrig support from rust
1 parent fe5f42c commit cc314b0

File tree

47 files changed

+21
-363
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+21
-363
lines changed
 

‎src/bootstrap/bootstrap.py

-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,6 @@ def default_build_triple():
177177
# The goal here is to come up with the same triple as LLVM would,
178178
# at least for the subset of platforms we're willing to target.
179179
ostype_mapper = {
180-
'Bitrig': 'unknown-bitrig',
181180
'Darwin': 'apple-darwin',
182181
'DragonFly': 'unknown-dragonfly',
183182
'FreeBSD': 'unknown-freebsd',

‎src/build_helper/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ pub fn gnu_target(target: &str) -> &str {
113113
}
114114

115115
pub fn make(host: &str) -> PathBuf {
116-
if host.contains("bitrig") || host.contains("dragonfly") || host.contains("freebsd")
116+
if host.contains("dragonfly") || host.contains("freebsd")
117117
|| host.contains("netbsd") || host.contains("openbsd")
118118
{
119119
PathBuf::from("gmake")

0 commit comments

Comments
 (0)