diff options
Diffstat (limited to 'vendor/crossbeam-utils/build-common.rs')
-rw-r--r-- | vendor/crossbeam-utils/build-common.rs | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/vendor/crossbeam-utils/build-common.rs b/vendor/crossbeam-utils/build-common.rs deleted file mode 100644 index e91bb4d..0000000 --- a/vendor/crossbeam-utils/build-common.rs +++ /dev/null @@ -1,13 +0,0 @@ -// The target triplets have the form of 'arch-vendor-system'. -// -// When building for Linux (e.g. the 'system' part is -// 'linux-something'), replace the vendor with 'unknown' -// so that mapping to rust standard targets happens correctly. -fn convert_custom_linux_target(target: String) -> String { - let mut parts: Vec<&str> = target.split('-').collect(); - let system = parts.get(2); - if system == Some(&"linux") { - parts[1] = "unknown"; - }; - parts.join("-") -} |