semarie 2019-03-11 19:13:40 +00:00
parent c970fd8fff
commit 05d1db11a2
26 changed files with 1434 additions and 566 deletions

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.91 2019/01/30 07:36:06 semarie Exp $
# $OpenBSD: Makefile,v 1.92 2019/03/11 19:13:40 semarie Exp $
ONLY_FOR_ARCHS = ${RUST_ARCHS}
@ -14,17 +14,16 @@ COMMENT-gdb = Rust debugger through gdb
COMMENT-clippy = Rust linter
COMMENT-rustfmt = Rust code formatter
V = 1.32.0
CARGO_V = 0.33.0
V = 1.33.0
CARGO_V = 0.34.0
CLIPPY_V = 0.0.212
RUSTFMT_V = 1.0.0
RUSTFMT_V = 1.0.1
DISTNAME = rustc-${V}-src
REVISION = 1
# rustc bootstrap version
BV-aarch64 = 1.32.0-20190126
BV-amd64 = 1.32.0-20190125
BV-i386 = 1.32.0-20190125
BV-aarch64 = 1.33.0-20190301
BV-amd64 = 1.33.0-20190225
BV-i386 = 1.33.0-20190225
BV = ${BV-${MACHINE_ARCH}}
PKGNAME = rust-${V}

View File

@ -1,8 +1,8 @@
SHA256 (rust/rustc-1.32.0-src.tar.xz) = 1hen3DnaqvqCVjIJkQBfw3bI7yCAWTkYMBskRm0AZ68=
SHA256 (rust/rustc-bootstrap-aarch64-1.32.0-20190126.tar.xz) = aKh1TAuAGjs0rgiFYiN5MB6eKCHpRmrwCWRcHSnFSOY=
SHA256 (rust/rustc-bootstrap-amd64-1.32.0-20190125.tar.xz) = WAkqiUMBe09h1Crc3Pix1aNPm/gL0zaM+2r7lM6SG7w=
SHA256 (rust/rustc-bootstrap-i386-1.32.0-20190125.tar.xz) = LBmgsIx657lGmsxTFPU/jnCT7/xwMA0D+C/wbni1J6o=
SIZE (rust/rustc-1.32.0-src.tar.xz) = 99602696
SIZE (rust/rustc-bootstrap-aarch64-1.32.0-20190126.tar.xz) = 70497496
SIZE (rust/rustc-bootstrap-amd64-1.32.0-20190125.tar.xz) = 78444040
SIZE (rust/rustc-bootstrap-i386-1.32.0-20190125.tar.xz) = 77445948
SHA256 (rust/rustc-1.33.0-src.tar.xz) = 9LGnLxopsj3MnXvl9gh48ENFYFEyc5BqqT3NXA3jm3E=
SHA256 (rust/rustc-bootstrap-aarch64-1.33.0-20190301.tar.xz) = SAHApEokcyGXp9uQx77LKe4rblvDhG/B5V00Grz3BbQ=
SHA256 (rust/rustc-bootstrap-amd64-1.33.0-20190225.tar.xz) = UdXQakWMoLaUfvXQln79x/Qjodba32uNWuL82EFKWNQ=
SHA256 (rust/rustc-bootstrap-i386-1.33.0-20190225.tar.xz) = DowGXpak8USQGvCWH+1XbRJAxlWy3YD5ysibzDcK1PE=
SIZE (rust/rustc-1.33.0-src.tar.xz) = 100635400
SIZE (rust/rustc-bootstrap-aarch64-1.33.0-20190301.tar.xz) = 73279480
SIZE (rust/rustc-bootstrap-amd64-1.33.0-20190225.tar.xz) = 81721056
SIZE (rust/rustc-bootstrap-i386-1.33.0-20190225.tar.xz) = 80396772

View File

@ -1,10 +1,10 @@
$OpenBSD: patch-src_bootstrap_bin_rustc_rs,v 1.7 2019/01/22 04:47:48 semarie Exp $
$OpenBSD: patch-src_bootstrap_bin_rustc_rs,v 1.8 2019/03/11 19:13:40 semarie Exp $
try to reduce memory usage on aarch64:
- reduce memory use by retaining fewer names within compilation artifacts
Index: src/bootstrap/bin/rustc.rs
--- src/bootstrap/bin/rustc.rs.orig
+++ src/bootstrap/bin/rustc.rs
@@ -189,6 +189,11 @@ fn main() {
@@ -179,6 +179,11 @@ fn main() {
cmd.arg("-C").arg(format!("codegen-units={}", s));
}

View File

@ -1,10 +1,10 @@
$OpenBSD: patch-src_bootstrap_lib_rs,v 1.18 2019/01/22 04:47:48 semarie Exp $
$OpenBSD: patch-src_bootstrap_lib_rs,v 1.19 2019/03/11 19:13:40 semarie Exp $
let us compilation choice to be honored.
https://github.com/rust-lang/rust/issues/39900
Index: src/bootstrap/lib.rs
--- src/bootstrap/lib.rs.orig
+++ src/bootstrap/lib.rs
@@ -779,7 +779,6 @@ impl Build {
@@ -772,7 +772,6 @@ impl Build {
// cc-rs because the build scripts will determine that for themselves.
let mut base = self.cc[&target].args().iter()
.map(|s| s.to_string_lossy().into_owned())

View File

@ -1,9 +1,9 @@
$OpenBSD: patch-src_etc_rust-gdb,v 1.7 2018/12/21 08:24:19 semarie Exp $
$OpenBSD: patch-src_etc_rust-gdb,v 1.8 2019/03/11 19:13:40 semarie Exp $
use egdb (gdb from ports)
Index: src/etc/rust-gdb
--- src/etc/rust-gdb.orig
+++ src/etc/rust-gdb
@@ -19,7 +19,7 @@ GDB_PYTHON_MODULE_DIRECTORY="$RUSTC_SYSROOT/lib/rustli
@@ -9,7 +9,7 @@ GDB_PYTHON_MODULE_DIRECTORY="$RUSTC_SYSROOT/lib/rustli
# Run GDB with the additional arguments that load the pretty printers
# Set the environment variable `RUST_GDB` to overwrite the call to a
# different/specific command (defaults to `gdb`).

View File

@ -1,9 +1,9 @@
$OpenBSD: patch-src_librustc_session_filesearch_rs,v 1.6 2018/01/27 09:22:00 landry Exp $
$OpenBSD: patch-src_librustc_session_filesearch_rs,v 1.7 2019/03/11 19:13:40 semarie Exp $
fallback to LOCALBASE as default sysroot.
Index: src/librustc/session/filesearch.rs
--- src/librustc/session/filesearch.rs.orig
+++ src/librustc/session/filesearch.rs
@@ -164,7 +164,10 @@ pub fn get_or_default_sysroot() -> PathBuf {
@@ -135,7 +135,10 @@ pub fn get_or_default_sysroot() -> PathBuf {
None => bug!("can't determine value for sysroot")
}
}

View File

@ -1,9 +1,9 @@
$OpenBSD: patch-src_librustc_target_spec_i686_unknown_openbsd_rs,v 1.2 2018/08/06 19:07:50 landry Exp $
$OpenBSD: patch-src_librustc_target_spec_i686_unknown_openbsd_rs,v 1.3 2019/03/11 19:13:40 semarie Exp $
i386 should be pentiumpro (no SSE2, no ...)
Index: src/librustc_target/spec/i686_unknown_openbsd.rs
--- src/librustc_target/spec/i686_unknown_openbsd.rs.orig
+++ src/librustc_target/spec/i686_unknown_openbsd.rs
@@ -12,7 +12,7 @@ use spec::{LinkerFlavor, Target, TargetResult};
@@ -2,7 +2,7 @@ use spec::{LinkerFlavor, Target, TargetResult};
pub fn target() -> TargetResult {
let mut base = super::openbsd_base::opts();

View File

@ -1,9 +1,9 @@
$OpenBSD: patch-src_libstd_sys_unix_ext_net_rs,v 1.11 2018/09/16 16:35:27 landry Exp $
$OpenBSD: patch-src_libstd_sys_unix_ext_net_rs,v 1.12 2019/03/11 19:13:40 semarie Exp $
Disable some failing tests (related to unix socket). Needs more investigation.
Index: src/libstd/sys/unix/ext/net.rs
--- src/libstd/sys/unix/ext/net.rs.orig
+++ src/libstd/sys/unix/ext/net.rs
@@ -1298,7 +1298,7 @@ impl UnixDatagram {
@@ -1288,7 +1288,7 @@ impl UnixDatagram {
///
/// # Examples
///
@ -12,7 +12,7 @@ Index: src/libstd/sys/unix/ext/net.rs
/// use std::os::unix::net::UnixDatagram;
/// use std::time::Duration;
///
@@ -1337,7 +1337,7 @@ impl UnixDatagram {
@@ -1327,7 +1327,7 @@ impl UnixDatagram {
///
/// # Examples
///
@ -21,7 +21,7 @@ Index: src/libstd/sys/unix/ext/net.rs
/// use std::os::unix::net::UnixDatagram;
/// use std::time::Duration;
///
@@ -1368,7 +1368,7 @@ impl UnixDatagram {
@@ -1358,7 +1358,7 @@ impl UnixDatagram {
///
/// # Examples
///
@ -30,7 +30,7 @@ Index: src/libstd/sys/unix/ext/net.rs
/// use std::os::unix::net::UnixDatagram;
/// use std::time::Duration;
///
@@ -1385,7 +1385,7 @@ impl UnixDatagram {
@@ -1375,7 +1375,7 @@ impl UnixDatagram {
///
/// # Examples
///
@ -39,7 +39,7 @@ Index: src/libstd/sys/unix/ext/net.rs
/// use std::os::unix::net::UnixDatagram;
/// use std::time::Duration;
///
@@ -1478,7 +1478,7 @@ mod test {
@@ -1468,7 +1468,7 @@ mod test {
use thread;
use io::{self, ErrorKind};
use io::prelude::*;
@ -48,7 +48,7 @@ Index: src/libstd/sys/unix/ext/net.rs
use sys_common::io::test::tmpdir;
use super::*;
@@ -1493,6 +1493,7 @@ mod test {
@@ -1483,6 +1483,7 @@ mod test {
}
#[test]
@ -56,7 +56,7 @@ Index: src/libstd/sys/unix/ext/net.rs
fn basic() {
let dir = tmpdir();
let socket_path = dir.path().join("sock");
@@ -1617,6 +1618,7 @@ mod test {
@@ -1607,6 +1608,7 @@ mod test {
}
#[test]

View File

@ -1,9 +1,9 @@
$OpenBSD: patch-src_libstd_sys_unix_os_rs,v 1.9 2018/12/08 09:16:09 semarie Exp $
$OpenBSD: patch-src_libstd_sys_unix_os_rs,v 1.10 2019/03/11 19:13:40 semarie Exp $
argv0 isn't suitable as current_exe() in all cases.
Index: src/libstd/sys/unix/os.rs
--- src/libstd/sys/unix/os.rs.orig
+++ src/libstd/sys/unix/os.rs
@@ -270,13 +270,14 @@ pub fn current_exe() -> io::Result<PathBuf> {
@@ -273,13 +273,14 @@ pub fn current_exe() -> io::Result<PathBuf> {
argv.set_len(argv_len as usize);
if argv[0].is_null() {
return Err(io::Error::new(io::ErrorKind::Other,

View File

@ -1,9 +1,9 @@
$OpenBSD: patch-src_libstd_sys_unix_stack_overflow_rs,v 1.2 2018/04/02 07:21:50 landry Exp $
$OpenBSD: patch-src_libstd_sys_unix_stack_overflow_rs,v 1.3 2019/03/11 19:13:40 semarie Exp $
Use MAP_STACK for stack allocation.
Index: src/libstd/sys/unix/stack_overflow.rs
--- src/libstd/sys/unix/stack_overflow.rs.orig
+++ src/libstd/sys/unix/stack_overflow.rs
@@ -139,7 +139,7 @@ mod imp {
@@ -129,7 +129,7 @@ mod imp {
let stackp = mmap(ptr::null_mut(),
SIGSTKSZ,
PROT_READ | PROT_WRITE,

View File

@ -1,9 +1,9 @@
$OpenBSD: patch-src_test_run-pass-fulldeps_myriad-closures_rs,v 1.2 2018/11/01 13:50:30 landry Exp $
$OpenBSD: patch-src_test_run-pass-fulldeps_myriad-closures_rs,v 1.3 2019/03/11 19:13:40 semarie Exp $
Index: src/test/run-pass-fulldeps/myriad-closures.rs
--- src/test/run-pass-fulldeps/myriad-closures.rs.orig
+++ src/test/run-pass-fulldeps/myriad-closures.rs
@@ -16,6 +16,8 @@
@@ -6,6 +6,8 @@
// Make sure we don't optimize anything away:
// compile-flags: -C no-prepopulate-passes -Cpasses=name-anon-globals

View File

@ -1,13 +1,13 @@
$OpenBSD: patch-src_test_run-pass_out-of-stack_rs,v 1.2 2018/12/08 09:16:09 semarie Exp $
$OpenBSD: patch-src_test_run-pass_out-of-stack_rs,v 1.3 2019/03/11 19:13:40 semarie Exp $
Index: src/test/run-pass/out-of-stack.rs
--- src/test/run-pass/out-of-stack.rs.orig
+++ src/test/run-pass/out-of-stack.rs
@@ -14,6 +14,7 @@
@@ -4,6 +4,7 @@
// ignore-musl
// ignore-cloudabi no processes
// ignore-emscripten no processes
+// ignore-openbsd
#![feature(asm)]
#![feature(libc)]
#![feature(rustc_private)]

View File

@ -1,9 +1,9 @@
$OpenBSD: patch-src_test_run-pass_sse2_rs,v 1.4 2018/12/08 09:16:09 semarie Exp $
$OpenBSD: patch-src_test_run-pass_sse2_rs,v 1.5 2019/03/11 19:13:40 semarie Exp $
Disable SSE2 tests for i386.
Index: src/test/run-pass/sse2.rs
--- src/test/run-pass/sse2.rs.orig
+++ src/test/run-pass/sse2.rs
@@ -21,7 +21,7 @@ fn main() {
@@ -9,7 +9,7 @@ fn main() {
match env::var("TARGET") {
Ok(s) => {
// Skip this tests on i586-unknown-linux-gnu where sse2 is disabled

View File

@ -1,9 +1,9 @@
$OpenBSD: patch-src_test_run-pass_stack-probes-lto_rs,v 1.3 2018/09/16 16:35:27 landry Exp $
$OpenBSD: patch-src_test_run-pass_stack-probes-lto_rs,v 1.4 2019/03/11 19:13:40 semarie Exp $
Disable stack-probes test (MAP_STACK terminate the process in a way the testsuite fails).
Index: src/test/run-pass/stack-probes-lto.rs
--- src/test/run-pass/stack-probes-lto.rs.orig
+++ src/test/run-pass/stack-probes-lto.rs
@@ -17,6 +17,7 @@
@@ -7,6 +7,7 @@
// ignore-sparc
// ignore-sparc64
// ignore-wasm

View File

@ -1,9 +1,9 @@
$OpenBSD: patch-src_test_run-pass_stack-probes_rs,v 1.3 2018/09/16 16:35:27 landry Exp $
$OpenBSD: patch-src_test_run-pass_stack-probes_rs,v 1.4 2019/03/11 19:13:40 semarie Exp $
Disable stack-probes test (MAP_STACK terminate the process in a way the testsuite fails).
Index: src/test/run-pass/stack-probes.rs
--- src/test/run-pass/stack-probes.rs.orig
+++ src/test/run-pass/stack-probes.rs
@@ -17,6 +17,7 @@
@@ -7,6 +7,7 @@
// ignore-sparc
// ignore-sparc64
// ignore-wasm

View File

@ -1,10 +1,10 @@
$OpenBSD: patch-src_tools_cargo_src_cargo_core_compiler_context_compilation_files_rs,v 1.1 2019/01/27 05:25:29 semarie Exp $
$OpenBSD: patch-src_tools_cargo_src_cargo_core_compiler_context_compilation_files_rs,v 1.2 2019/03/11 19:13:40 semarie Exp $
Try to be more clever with rustc binary to avoid too much free raising dice on PLIST.
Use an environment variable to override the verbose_version from rustc with choosen string.
Index: src/tools/cargo/src/cargo/core/compiler/context/compilation_files.rs
--- src/tools/cargo/src/cargo/core/compiler/context/compilation_files.rs.orig
+++ src/tools/cargo/src/cargo/core/compiler/context/compilation_files.rs
@@ -464,7 +464,11 @@ fn compute_metadata<'a, 'cfg>(
@@ -512,7 +512,11 @@ fn compute_metadata<'a, 'cfg>(
unit.target.name().hash(&mut hasher);
unit.target.kind().hash(&mut hasher);

View File

@ -1,14 +0,0 @@
$OpenBSD: patch-src_tools_cargo_src_cargo_core_package_id_rs,v 1.4 2019/01/22 04:47:48 semarie Exp $
Don't rely on source_id for generating a hash as it could contains build dependent information (full path of the build directory).
See https://github.com/rust-lang/rust/issues/39786
Index: src/tools/cargo/src/cargo/core/package_id.rs
--- src/tools/cargo/src/cargo/core/package_id.rs.orig
+++ src/tools/cargo/src/cargo/core/package_id.rs
@@ -111,7 +111,6 @@ impl<'a> Hash for PackageId {
fn hash<S: hash::Hasher>(&self, state: &mut S) {
self.inner.name.hash(state);
self.inner.version.hash(state);
- self.inner.source_id.hash(state);
}
}

View File

@ -1,19 +0,0 @@
$OpenBSD: patch-src_tools_compiletest_src_main_rs,v 1.3 2019/01/22 05:07:19 semarie Exp $
unbreak testsuite build.
see https://github.com/rust-lang/rust/issues/57709
Index: src/tools/compiletest/src/main.rs
--- src/tools/compiletest/src/main.rs.orig
+++ src/tools/compiletest/src/main.rs
@@ -511,7 +511,11 @@ pub fn test_opts(config: &Config) -> test::TestOpts {
test::TestOpts {
filter: config.filter.clone(),
filter_exact: config.filter_exact,
- run_ignored: config.run_ignored,
+ run_ignored: if config.run_ignored {
+ test::RunIgnored::Yes
+ } else {
+ test::RunIgnored::No
+ },
format: if config.quiet {
test::OutputFormat::Terse
} else {

View File

@ -0,0 +1,32 @@
$OpenBSD: patch-src_tools_linkchecker_main_rs,v 1.1 2019/03/11 19:13:40 semarie Exp $
src/tools is build using 1.33.0, whereas upstream expects it to be build with 1.32.0.
Index: src/tools/linkchecker/main.rs
--- src/tools/linkchecker/main.rs.orig
+++ src/tools/linkchecker/main.rs
@@ -78,7 +78,7 @@ impl FileEntry {
fn parse_ids(&mut self, file: &Path, contents: &str, errors: &mut bool) {
if self.ids.is_empty() {
with_attrs_in_source(contents, " id", |fragment, i, _| {
- let frag = fragment.trim_left_matches("#").to_owned();
+ let frag = fragment.trim_start_matches("#").to_owned();
let encoded = small_url_encode(&frag);
if !self.ids.insert(frag) {
*errors = true;
@@ -343,7 +343,7 @@ fn with_attrs_in_source<F: FnMut(&str, usize, &str)>(c
Some(i) => i,
None => continue,
};
- if rest[..pos_equals].trim_left_matches(" ") != "" {
+ if rest[..pos_equals].trim_start_matches(" ") != "" {
continue;
}
@@ -355,7 +355,7 @@ fn with_attrs_in_source<F: FnMut(&str, usize, &str)>(c
};
let quote_delim = rest.as_bytes()[pos_quote] as char;
- if rest[..pos_quote].trim_left_matches(" ") != "" {
+ if rest[..pos_quote].trim_start_matches(" ") != "" {
continue;
}
let rest = &rest[pos_quote + 1..];

View File

@ -0,0 +1,15 @@
$OpenBSD: patch-src_tools_tidy_src_features_rs,v 1.1 2019/03/11 19:13:40 semarie Exp $
src/tools is build using 1.33.0, whereas upstream expects it to be build with 1.32.0.
and trim_left_matches is deprecated.
Index: src/tools/tidy/src/features.rs
--- src/tools/tidy/src/features.rs.orig
+++ src/tools/tidy/src/features.rs
@@ -188,7 +188,7 @@ pub fn collect_lang_features(base_src_path: &Path, bad
}
let mut parts = line.split(',');
- let level = match parts.next().map(|l| l.trim().trim_left_matches('(')) {
+ let level = match parts.next().map(|l| l.trim().trim_start_matches('(')) {
Some("active") => Status::Unstable,
Some("removed") => Status::Removed,
Some("accepted") => Status::Stable,

View File

@ -1,14 +1,14 @@
$OpenBSD: patch-vendor_openssl-sys_build_main_rs,v 1.1 2019/01/22 05:07:19 semarie Exp $
$OpenBSD: patch-vendor_openssl-sys_build_main_rs,v 1.2 2019/03/11 19:13:40 semarie Exp $
The LibreSSL version in -current isn't explicitly supported.
Index: vendor/openssl-sys/build/main.rs
--- vendor/openssl-sys/build/main.rs.orig
+++ vendor/openssl-sys/build/main.rs
@@ -500,7 +500,7 @@ See rust-openssl README for more information:
(7, _) => ('7', 'x'),
(8, 0) => ('8', '0'),
@@ -505,7 +505,7 @@ See rust-openssl README for more information:
(8, 1) => ('8', '1'),
(8, _) => ('8', 'x'),
(9, 0) => ('9', '0'),
- _ => version_error(),
+ _ => ('8', '1'),
+ _ => ('9', '0'),
};
println!("cargo:libressl=true");

View File

@ -1,141 +1,150 @@
@comment $OpenBSD: PFRAG.aarch64-main,v 1.15 2019/01/27 05:25:29 semarie Exp $
lib/libarena-c58fe4201d66366a.so
lib/libfmt_macros-05a2a49864e2a5eb.so
lib/libgraphviz-4bc33fcbe20a6a5c.so
lib/librustc-9ad902f71b0a1f5d.so
lib/librustc_allocator-bb54d645c32e7d8d.so
lib/librustc_borrowck-55cf309a78160a9e.so
lib/librustc_codegen_ssa-b6ee522092c1ee62.so
lib/librustc_codegen_utils-a2f945369f773078.so
lib/librustc_cratesio_shim-b4488753e7cc8535.so
lib/librustc_data_structures-3c91112094e60b4d.so
lib/librustc_driver-e5d1df417872c1a8.so
lib/librustc_errors-ebf3c68dbfd7712c.so
lib/librustc_fs_util-3435e9965eab0693.so
lib/librustc_incremental-2254cd1023d86b50.so
lib/librustc_lint-e7b0950426231df7.so
lib/librustc_metadata-857dffb9fa100a05.so
lib/librustc_mir-0414c7b40736d1a0.so
lib/librustc_passes-7be11840bd0f76f3.so
lib/librustc_platform_intrinsics-11c688fb7bbe46e7.so
lib/librustc_plugin-22c20557916cc5dc.so
lib/librustc_privacy-8b57ff05c5a1b3a1.so
lib/librustc_resolve-eb5b6d452220c75a.so
lib/librustc_save_analysis-f7e23ac683649204.so
lib/librustc_target-65cde86142bee1a3.so
lib/librustc_traits-c78a5fd688525433.so
lib/librustc_typeck-46cd6f0c6836810c.so
lib/libserialize-5d48d9bfb9a3554c.so
lib/libstd-7232d3e8beebf591.so
lib/libsyntax-f4158ecbddc8a15b.so
lib/libsyntax_ext-9ea925b320323b23.so
lib/libsyntax_pos-fe6040566d72b5d3.so
lib/libterm-2f7044c8ce462f49.so
lib/libtest-eea2511b64043c4c.so
@comment $OpenBSD: PFRAG.aarch64-main,v 1.16 2019/03/11 19:13:40 semarie Exp $
lib/libarena-bdf0a305a75ab19d.so
lib/libfmt_macros-86a2b64427f3c955.so
lib/libgraphviz-d07287fbedf39411.so
lib/librustc-ee719965f5bb9d8e.so
lib/librustc_allocator-ef580219f78caa49.so
lib/librustc_borrowck-bc4e96fce93b84ad.so
lib/librustc_codegen_ssa-1081065e4b185f0a.so
lib/librustc_codegen_utils-eea7f35a11495fd2.so
lib/librustc_cratesio_shim-12548ac9a610a1b6.so
lib/librustc_data_structures-5dc7adf680424e70.so
lib/librustc_driver-5eb24e5f074f1bee.so
lib/librustc_errors-baf941e8f1b25119.so
lib/librustc_fs_util-9b2d3a631c8dec3c.so
lib/librustc_incremental-516f432e695c6b9a.so
lib/librustc_lint-cdb48c0394dbcfac.so
lib/librustc_metadata-249597cafbd474f4.so
lib/librustc_mir-3ed8d7e79a43a758.so
lib/librustc_passes-6a81c2f2c7313b7e.so
lib/librustc_plugin-2708e85e9d2a3f56.so
lib/librustc_privacy-41d5bee772c4c49a.so
lib/librustc_resolve-ea51e108f3f322cd.so
lib/librustc_save_analysis-786696e196965897.so
lib/librustc_target-e9073c4139202af0.so
lib/librustc_traits-9c46a2b5e40c5e3a.so
lib/librustc_typeck-9b21c06aff5b43a9.so
lib/libserialize-f5aed5828b98123b.so
lib/libstd-e3c55bf0771cd49c.so
lib/libsyntax-e97d80eb4b0708d5.so
lib/libsyntax_ext-cac95bd219329cc9.so
lib/libsyntax_pos-9ce5cfad7679a7dd.so
lib/libterm-1c70aadfcf98ccca.so
lib/libtest-702172e7d8e49669.so
lib/rustlib/aarch64-unknown-openbsd/
lib/rustlib/aarch64-unknown-openbsd/codegen-backends/
lib/rustlib/aarch64-unknown-openbsd/codegen-backends/librustc_codegen_llvm-llvm.so
lib/rustlib/aarch64-unknown-openbsd/lib/
lib/rustlib/aarch64-unknown-openbsd/lib/liballoc-f8066673cf7a54ff.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libarena-c58fe4201d66366a.so
lib/rustlib/aarch64-unknown-openbsd/lib/libarrayvec-d3cbd3482420f9bc.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libatty-f1d0bb8d776719e6.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libbacktrace-36caa8cd426e3005.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libbacktrace_sys-15b2be958275de84.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libbitflags-8212a51a19435ed2.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libbyteorder-c9089bec4f1c7f59.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libcc-13e0602e06669bd2.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libcfg_if-88679b6fc3c36712.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libchalk_engine-7e4a833f0a3ca343.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libchalk_macros-6a9f4334e75beee7.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libcompiler_builtins-a10da90139ad71dd.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libcore-6f8e107dd2931a19.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libcrossbeam_deque-d41acc11b206339e.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libcrossbeam_epoch-46430851940f4077.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libcrossbeam_utils-71bcd6278fcf3a41.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libdatafrog-7fdd0016b1e74be3.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libeither-a6d9d4cfd83cacee.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libena-c5975d8b8446d258.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libenv_logger-97f28b3c5729b29f.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libflate2-9a6218942ad3ec7b.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libfmt_macros-05a2a49864e2a5eb.so
lib/rustlib/aarch64-unknown-openbsd/lib/libgetopts-e6320562545589d4.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libgraphviz-4bc33fcbe20a6a5c.so
lib/rustlib/aarch64-unknown-openbsd/lib/libhumantime-8017b0189273d71e.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libjobserver-5abf8fe557a9f26f.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/liblazy_static-5e83a4dd947bbfac.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/liblazy_static-6209f5d180028d93.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/liblibc-d07df11945dafd02.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/liblibc-e0977626394f28dd.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/liblock_api-e20bb43a4946d392.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/liblog-9687d56bc06475ec.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/liblog_settings-87a5de2a9fc6cb52.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libmemmap-70eafc2aeeef613f.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libmemoffset-1414770d0ef1da21.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libminiz_sys-864f185cdb5c0aee.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libnodrop-4a97e5f66ed89dec.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libnum_cpus-92ee422486c5c026.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libowning_ref-b952e08213b5a793.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libpanic_abort-027bde16033a1a35.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libpanic_unwind-0e75da7d8ce5edb9.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libparking_lot-43594cfa8be0c07b.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libparking_lot_core-441d8f8cd8318b3f.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libpolonius_engine-b93c82b6a405cb2b.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libproc_macro-b217a98d1c3a72da.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libquick_error-80e18e168a60f664.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/librand-87e570b4559bd856.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/librand-96dca298040bfda2.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/librand_core-d916e7d835700ff3.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libremove_dir_all-20fb0efdb1ec259a.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/librls_data-05e92b6cfbc561e1.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/librls_span-c9dbb435dc8fc21d.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/librustc-9ad902f71b0a1f5d.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_allocator-bb54d645c32e7d8d.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_apfloat-8235d4d8ce9919f1.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_borrowck-55cf309a78160a9e.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_codegen_ssa-b6ee522092c1ee62.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_codegen_utils-a2f945369f773078.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_cratesio_shim-b4488753e7cc8535.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_data_structures-3c91112094e60b4d.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_demangle-4374ec7e611a17d3.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_driver-e5d1df417872c1a8.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_errors-ebf3c68dbfd7712c.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_fs_util-3435e9965eab0693.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_hash-d6b22c2f84161524.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_incremental-2254cd1023d86b50.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_lint-e7b0950426231df7.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_metadata-857dffb9fa100a05.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_mir-0414c7b40736d1a0.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_passes-7be11840bd0f76f3.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_platform_intrinsics-11c688fb7bbe46e7.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_plugin-22c20557916cc5dc.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_privacy-8b57ff05c5a1b3a1.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_rayon-a06cf670a5e0b569.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_rayon_core-5d07530a4884278b.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_resolve-eb5b6d452220c75a.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_save_analysis-f7e23ac683649204.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_serialize-39499848bac9ed76.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_target-65cde86142bee1a3.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_traits-c78a5fd688525433.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_typeck-46cd6f0c6836810c.so
lib/rustlib/aarch64-unknown-openbsd/lib/libscoped_tls-ea738f22a6db2a69.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libscopeguard-2cd56b87ca9ea3e1.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libserialize-5d48d9bfb9a3554c.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libserialize-5d48d9bfb9a3554c.so
lib/rustlib/aarch64-unknown-openbsd/lib/libsmallvec-bc3deffb8613ba26.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libstable_deref_trait-99c4c8ff8fece0f3.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libstd-7232d3e8beebf591.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libstd-7232d3e8beebf591.so
lib/rustlib/aarch64-unknown-openbsd/lib/libsyntax-f4158ecbddc8a15b.so
lib/rustlib/aarch64-unknown-openbsd/lib/libsyntax_ext-9ea925b320323b23.so
lib/rustlib/aarch64-unknown-openbsd/lib/libsyntax_pos-fe6040566d72b5d3.so
lib/rustlib/aarch64-unknown-openbsd/lib/libtempfile-232bf22ca2b5f6a1.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libterm-2f7044c8ce462f49.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libterm-2f7044c8ce462f49.so
lib/rustlib/aarch64-unknown-openbsd/lib/libtermcolor-53f791594193be06.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libtest-eea2511b64043c4c.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libtest-eea2511b64043c4c.so
lib/rustlib/aarch64-unknown-openbsd/lib/libunicode_width-432281cf5040e57a.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libunreachable-381f3226403022ba.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libunwind-17895591187da374.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libvoid-9d84d9efe063d54b.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/liballoc-3088fdec968ce698.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libarena-bdf0a305a75ab19d.so
lib/rustlib/aarch64-unknown-openbsd/lib/libarrayvec-62a7f983f2ce72b3.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libatty-af7f9e65a34d68d5.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libbacktrace-cf7e3d140281ca8b.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libbacktrace_sys-2b0bd99b651e2347.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libbacktrace_sys-d818df009ad9d4e1.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libbitflags-10a984622c65b016.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libbyteorder-01b24d1a9003897f.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libcc-ec60d08b23d6b16b.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libcfg_if-d87ca2be4dab9d31.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libchalk_engine-7855be416f83cf03.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libchalk_macros-5d43197ec3c89f04.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libcompiler_builtins-2d6d1a0f9eadbea0.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libcore-212c44ac56827b9c.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libcrc32fast-7cee6b4f946193b6.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libcrossbeam_deque-15ca59f60163762e.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libcrossbeam_epoch-27345278a1aeb54b.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libcrossbeam_utils-db1914b5fdc93037.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libdatafrog-87bda1c0a85ca9bd.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libeither-d20e542402a7d698.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libena-89470e4b2a16dc0b.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libenv_logger-28d6ba4fb337407b.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libflate2-f33df9cfb133bf90.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libfmt_macros-86a2b64427f3c955.so
lib/rustlib/aarch64-unknown-openbsd/lib/libgetopts-5d8dcb1f9f2b23c3.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libgraphviz-d07287fbedf39411.so
lib/rustlib/aarch64-unknown-openbsd/lib/libhumantime-8aacf1a867188793.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libjobserver-8fbb85437ce0a973.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/liblazy_static-dcf1c91662d9ee46.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/liblazy_static-fa61dbdc64e64526.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/liblibc-839542450aaaf8a3.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/liblibc-fc7e6cca10ac309f.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/liblock_api-3a910ae86570789c.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/liblog-66b07339162e6a33.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/liblog_settings-4e0ba0669892e931.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libmemmap-288498ebba290d4d.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libmemoffset-e7ea271baf45eb61.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libminiz_sys-5677c8dd1986aac5.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libnodrop-50cdb608937e6ec3.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libnum_cpus-254a85171fe0ee1b.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libowning_ref-bb54505a4362bd7f.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libpanic_abort-998e3bc1a17ea1f4.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libpanic_unwind-1d58408efb122d3c.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libparking_lot-ba10af659454bce7.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libparking_lot_core-ee9b3a83b6586b8c.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libpolonius_engine-6b163347ac75e80e.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libproc_macro-7a75009a6899d94c.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libquick_error-aee71ee35c105ad2.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/librand-3d2724d4d16b27ad.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/librand-ab97bae3a013e06a.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/librand-db8c2b3a317c525c.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/librand_chacha-2609c103c904d6c4.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/librand_core-5c29dc759656796f.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/librand_core-fb26e2759df55346.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/librand_hc-c632b0c035b4c6ba.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/librand_isaac-a96b8892eca65d7b.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/librand_pcg-60913aed47d7ce5e.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/librand_xorshift-cf48e386703fbe7c.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libremove_dir_all-07e90c31394f0b88.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/librls_data-51e28a21a06195ea.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/librls_span-6174f702bcd0b303.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/librustc-ee719965f5bb9d8e.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_allocator-ef580219f78caa49.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_apfloat-be2c4bed536b3cec.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_borrowck-bc4e96fce93b84ad.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_codegen_ssa-1081065e4b185f0a.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_codegen_utils-eea7f35a11495fd2.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_cratesio_shim-12548ac9a610a1b6.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_data_structures-5dc7adf680424e70.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_demangle-0e9727e488abe184.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_demangle-bf7d3e0e1fddb6ad.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_driver-5eb24e5f074f1bee.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_errors-baf941e8f1b25119.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_fs_util-9b2d3a631c8dec3c.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_hash-e50902a9925422ef.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_incremental-516f432e695c6b9a.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_lint-cdb48c0394dbcfac.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_metadata-249597cafbd474f4.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_mir-3ed8d7e79a43a758.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_passes-6a81c2f2c7313b7e.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_plugin-2708e85e9d2a3f56.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_privacy-41d5bee772c4c49a.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_rayon-e3a20b962219fdd5.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_rayon_core-b0025d4e3b3e4a9f.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_resolve-ea51e108f3f322cd.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_save_analysis-786696e196965897.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_serialize-fe6f0c86bc1b06f3.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_std_workspace_core-b465d41c8a7175dc.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_target-e9073c4139202af0.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_traits-9c46a2b5e40c5e3a.so
lib/rustlib/aarch64-unknown-openbsd/lib/librustc_typeck-9b21c06aff5b43a9.so
lib/rustlib/aarch64-unknown-openbsd/lib/libscoped_tls-7c85063c5ae21bc6.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libscopeguard-c76e20c7d8977e84.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libserialize-f5aed5828b98123b.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libserialize-f5aed5828b98123b.so
lib/rustlib/aarch64-unknown-openbsd/lib/libsmallvec-4185ddfa93d16947.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libstable_deref_trait-6e3fa1bbadb786d5.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libstd-e3c55bf0771cd49c.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libstd-e3c55bf0771cd49c.so
lib/rustlib/aarch64-unknown-openbsd/lib/libsyntax-e97d80eb4b0708d5.so
lib/rustlib/aarch64-unknown-openbsd/lib/libsyntax_ext-cac95bd219329cc9.so
lib/rustlib/aarch64-unknown-openbsd/lib/libsyntax_pos-9ce5cfad7679a7dd.so
lib/rustlib/aarch64-unknown-openbsd/lib/libtempfile-c4eafee5aa26e9aa.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libterm-1c70aadfcf98ccca.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libterm-1c70aadfcf98ccca.so
lib/rustlib/aarch64-unknown-openbsd/lib/libtermcolor-a95b069f9a6d4cfd.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libtest-702172e7d8e49669.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libtest-702172e7d8e49669.so
lib/rustlib/aarch64-unknown-openbsd/lib/libunicode_width-c864c7160c3dd051.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libunreachable-25b16b5c4bf829ec.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libunwind-1759b7ff93a2d3d4.rlib
lib/rustlib/aarch64-unknown-openbsd/lib/libvoid-6e4f09a046b44973.rlib

View File

@ -1,141 +1,150 @@
@comment $OpenBSD: PFRAG.amd64-main,v 1.28 2019/01/27 05:25:29 semarie Exp $
lib/libarena-c58fe4201d66366a.so
lib/libfmt_macros-05a2a49864e2a5eb.so
lib/libgraphviz-4bc33fcbe20a6a5c.so
lib/librustc-9ad902f71b0a1f5d.so
lib/librustc_allocator-bb54d645c32e7d8d.so
lib/librustc_borrowck-55cf309a78160a9e.so
lib/librustc_codegen_ssa-b6ee522092c1ee62.so
lib/librustc_codegen_utils-a2f945369f773078.so
lib/librustc_cratesio_shim-b4488753e7cc8535.so
lib/librustc_data_structures-3c91112094e60b4d.so
lib/librustc_driver-e5d1df417872c1a8.so
lib/librustc_errors-ebf3c68dbfd7712c.so
lib/librustc_fs_util-3435e9965eab0693.so
lib/librustc_incremental-2254cd1023d86b50.so
lib/librustc_lint-e7b0950426231df7.so
lib/librustc_metadata-857dffb9fa100a05.so
lib/librustc_mir-0414c7b40736d1a0.so
lib/librustc_passes-7be11840bd0f76f3.so
lib/librustc_platform_intrinsics-11c688fb7bbe46e7.so
lib/librustc_plugin-22c20557916cc5dc.so
lib/librustc_privacy-8b57ff05c5a1b3a1.so
lib/librustc_resolve-eb5b6d452220c75a.so
lib/librustc_save_analysis-f7e23ac683649204.so
lib/librustc_target-65cde86142bee1a3.so
lib/librustc_traits-c78a5fd688525433.so
lib/librustc_typeck-46cd6f0c6836810c.so
lib/libserialize-5d48d9bfb9a3554c.so
lib/libstd-7232d3e8beebf591.so
lib/libsyntax-f4158ecbddc8a15b.so
lib/libsyntax_ext-9ea925b320323b23.so
lib/libsyntax_pos-fe6040566d72b5d3.so
lib/libterm-2f7044c8ce462f49.so
lib/libtest-eea2511b64043c4c.so
@comment $OpenBSD: PFRAG.amd64-main,v 1.29 2019/03/11 19:13:40 semarie Exp $
lib/libarena-bdf0a305a75ab19d.so
lib/libfmt_macros-86a2b64427f3c955.so
lib/libgraphviz-d07287fbedf39411.so
lib/librustc-ee719965f5bb9d8e.so
lib/librustc_allocator-ef580219f78caa49.so
lib/librustc_borrowck-bc4e96fce93b84ad.so
lib/librustc_codegen_ssa-1081065e4b185f0a.so
lib/librustc_codegen_utils-eea7f35a11495fd2.so
lib/librustc_cratesio_shim-12548ac9a610a1b6.so
lib/librustc_data_structures-5dc7adf680424e70.so
lib/librustc_driver-5eb24e5f074f1bee.so
lib/librustc_errors-baf941e8f1b25119.so
lib/librustc_fs_util-9b2d3a631c8dec3c.so
lib/librustc_incremental-516f432e695c6b9a.so
lib/librustc_lint-cdb48c0394dbcfac.so
lib/librustc_metadata-249597cafbd474f4.so
lib/librustc_mir-3ed8d7e79a43a758.so
lib/librustc_passes-6a81c2f2c7313b7e.so
lib/librustc_plugin-2708e85e9d2a3f56.so
lib/librustc_privacy-41d5bee772c4c49a.so
lib/librustc_resolve-ea51e108f3f322cd.so
lib/librustc_save_analysis-786696e196965897.so
lib/librustc_target-e9073c4139202af0.so
lib/librustc_traits-9c46a2b5e40c5e3a.so
lib/librustc_typeck-9b21c06aff5b43a9.so
lib/libserialize-f5aed5828b98123b.so
lib/libstd-e3c55bf0771cd49c.so
lib/libsyntax-e97d80eb4b0708d5.so
lib/libsyntax_ext-cac95bd219329cc9.so
lib/libsyntax_pos-9ce5cfad7679a7dd.so
lib/libterm-1c70aadfcf98ccca.so
lib/libtest-702172e7d8e49669.so
lib/rustlib/x86_64-unknown-openbsd/
lib/rustlib/x86_64-unknown-openbsd/codegen-backends/
lib/rustlib/x86_64-unknown-openbsd/codegen-backends/librustc_codegen_llvm-llvm.so
lib/rustlib/x86_64-unknown-openbsd/lib/
lib/rustlib/x86_64-unknown-openbsd/lib/liballoc-f8066673cf7a54ff.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libarena-c58fe4201d66366a.so
lib/rustlib/x86_64-unknown-openbsd/lib/libarrayvec-d3cbd3482420f9bc.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libatty-f1d0bb8d776719e6.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libbacktrace-36caa8cd426e3005.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libbacktrace_sys-15b2be958275de84.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libbitflags-8212a51a19435ed2.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libbyteorder-c9089bec4f1c7f59.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libcc-13e0602e06669bd2.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libcfg_if-88679b6fc3c36712.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libchalk_engine-7e4a833f0a3ca343.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libchalk_macros-6a9f4334e75beee7.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libcompiler_builtins-a10da90139ad71dd.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libcore-6f8e107dd2931a19.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libcrossbeam_deque-d41acc11b206339e.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libcrossbeam_epoch-46430851940f4077.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libcrossbeam_utils-71bcd6278fcf3a41.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libdatafrog-7fdd0016b1e74be3.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libeither-a6d9d4cfd83cacee.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libena-c5975d8b8446d258.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libenv_logger-97f28b3c5729b29f.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libflate2-9a6218942ad3ec7b.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libfmt_macros-05a2a49864e2a5eb.so
lib/rustlib/x86_64-unknown-openbsd/lib/libgetopts-e6320562545589d4.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libgraphviz-4bc33fcbe20a6a5c.so
lib/rustlib/x86_64-unknown-openbsd/lib/libhumantime-8017b0189273d71e.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libjobserver-5abf8fe557a9f26f.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/liblazy_static-5e83a4dd947bbfac.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/liblazy_static-6209f5d180028d93.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/liblibc-d07df11945dafd02.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/liblibc-e0977626394f28dd.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/liblock_api-e20bb43a4946d392.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/liblog-9687d56bc06475ec.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/liblog_settings-87a5de2a9fc6cb52.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libmemmap-70eafc2aeeef613f.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libmemoffset-1414770d0ef1da21.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libminiz_sys-864f185cdb5c0aee.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libnodrop-4a97e5f66ed89dec.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libnum_cpus-92ee422486c5c026.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libowning_ref-b952e08213b5a793.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libpanic_abort-027bde16033a1a35.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libpanic_unwind-0e75da7d8ce5edb9.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libparking_lot-43594cfa8be0c07b.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libparking_lot_core-441d8f8cd8318b3f.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libpolonius_engine-b93c82b6a405cb2b.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libproc_macro-b217a98d1c3a72da.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libquick_error-80e18e168a60f664.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librand-87e570b4559bd856.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librand-96dca298040bfda2.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librand_core-d916e7d835700ff3.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libremove_dir_all-20fb0efdb1ec259a.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librls_data-05e92b6cfbc561e1.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librls_span-c9dbb435dc8fc21d.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librustc-9ad902f71b0a1f5d.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_allocator-bb54d645c32e7d8d.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_apfloat-8235d4d8ce9919f1.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_borrowck-55cf309a78160a9e.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_codegen_ssa-b6ee522092c1ee62.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_codegen_utils-a2f945369f773078.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_cratesio_shim-b4488753e7cc8535.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_data_structures-3c91112094e60b4d.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_demangle-4374ec7e611a17d3.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_driver-e5d1df417872c1a8.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_errors-ebf3c68dbfd7712c.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_fs_util-3435e9965eab0693.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_hash-d6b22c2f84161524.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_incremental-2254cd1023d86b50.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_lint-e7b0950426231df7.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_metadata-857dffb9fa100a05.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_mir-0414c7b40736d1a0.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_passes-7be11840bd0f76f3.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_platform_intrinsics-11c688fb7bbe46e7.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_plugin-22c20557916cc5dc.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_privacy-8b57ff05c5a1b3a1.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_rayon-a06cf670a5e0b569.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_rayon_core-5d07530a4884278b.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_resolve-eb5b6d452220c75a.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_save_analysis-f7e23ac683649204.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_serialize-39499848bac9ed76.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_target-65cde86142bee1a3.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_traits-c78a5fd688525433.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_typeck-46cd6f0c6836810c.so
lib/rustlib/x86_64-unknown-openbsd/lib/libscoped_tls-ea738f22a6db2a69.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libscopeguard-2cd56b87ca9ea3e1.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libserialize-5d48d9bfb9a3554c.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libserialize-5d48d9bfb9a3554c.so
lib/rustlib/x86_64-unknown-openbsd/lib/libsmallvec-bc3deffb8613ba26.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libstable_deref_trait-99c4c8ff8fece0f3.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libstd-7232d3e8beebf591.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libstd-7232d3e8beebf591.so
lib/rustlib/x86_64-unknown-openbsd/lib/libsyntax-f4158ecbddc8a15b.so
lib/rustlib/x86_64-unknown-openbsd/lib/libsyntax_ext-9ea925b320323b23.so
lib/rustlib/x86_64-unknown-openbsd/lib/libsyntax_pos-fe6040566d72b5d3.so
lib/rustlib/x86_64-unknown-openbsd/lib/libtempfile-232bf22ca2b5f6a1.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libterm-2f7044c8ce462f49.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libterm-2f7044c8ce462f49.so
lib/rustlib/x86_64-unknown-openbsd/lib/libtermcolor-53f791594193be06.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libtest-eea2511b64043c4c.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libtest-eea2511b64043c4c.so
lib/rustlib/x86_64-unknown-openbsd/lib/libunicode_width-432281cf5040e57a.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libunreachable-381f3226403022ba.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libunwind-17895591187da374.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libvoid-9d84d9efe063d54b.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/liballoc-3088fdec968ce698.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libarena-bdf0a305a75ab19d.so
lib/rustlib/x86_64-unknown-openbsd/lib/libarrayvec-62a7f983f2ce72b3.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libatty-af7f9e65a34d68d5.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libbacktrace-cf7e3d140281ca8b.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libbacktrace_sys-2b0bd99b651e2347.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libbacktrace_sys-d818df009ad9d4e1.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libbitflags-10a984622c65b016.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libbyteorder-01b24d1a9003897f.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libcc-ec60d08b23d6b16b.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libcfg_if-d87ca2be4dab9d31.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libchalk_engine-7855be416f83cf03.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libchalk_macros-5d43197ec3c89f04.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libcompiler_builtins-2d6d1a0f9eadbea0.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libcore-212c44ac56827b9c.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libcrc32fast-7cee6b4f946193b6.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libcrossbeam_deque-15ca59f60163762e.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libcrossbeam_epoch-27345278a1aeb54b.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libcrossbeam_utils-db1914b5fdc93037.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libdatafrog-87bda1c0a85ca9bd.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libeither-d20e542402a7d698.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libena-89470e4b2a16dc0b.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libenv_logger-28d6ba4fb337407b.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libflate2-f33df9cfb133bf90.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libfmt_macros-86a2b64427f3c955.so
lib/rustlib/x86_64-unknown-openbsd/lib/libgetopts-5d8dcb1f9f2b23c3.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libgraphviz-d07287fbedf39411.so
lib/rustlib/x86_64-unknown-openbsd/lib/libhumantime-8aacf1a867188793.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libjobserver-8fbb85437ce0a973.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/liblazy_static-dcf1c91662d9ee46.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/liblazy_static-fa61dbdc64e64526.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/liblibc-839542450aaaf8a3.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/liblibc-fc7e6cca10ac309f.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/liblock_api-3a910ae86570789c.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/liblog-66b07339162e6a33.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/liblog_settings-4e0ba0669892e931.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libmemmap-288498ebba290d4d.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libmemoffset-e7ea271baf45eb61.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libminiz_sys-5677c8dd1986aac5.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libnodrop-50cdb608937e6ec3.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libnum_cpus-254a85171fe0ee1b.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libowning_ref-bb54505a4362bd7f.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libpanic_abort-998e3bc1a17ea1f4.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libpanic_unwind-1d58408efb122d3c.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libparking_lot-ba10af659454bce7.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libparking_lot_core-ee9b3a83b6586b8c.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libpolonius_engine-6b163347ac75e80e.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libproc_macro-7a75009a6899d94c.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libquick_error-aee71ee35c105ad2.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librand-3d2724d4d16b27ad.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librand-ab97bae3a013e06a.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librand-db8c2b3a317c525c.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librand_chacha-2609c103c904d6c4.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librand_core-5c29dc759656796f.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librand_core-fb26e2759df55346.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librand_hc-c632b0c035b4c6ba.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librand_isaac-a96b8892eca65d7b.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librand_pcg-60913aed47d7ce5e.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librand_xorshift-cf48e386703fbe7c.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libremove_dir_all-07e90c31394f0b88.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librls_data-51e28a21a06195ea.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librls_span-6174f702bcd0b303.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librustc-ee719965f5bb9d8e.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_allocator-ef580219f78caa49.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_apfloat-be2c4bed536b3cec.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_borrowck-bc4e96fce93b84ad.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_codegen_ssa-1081065e4b185f0a.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_codegen_utils-eea7f35a11495fd2.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_cratesio_shim-12548ac9a610a1b6.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_data_structures-5dc7adf680424e70.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_demangle-0e9727e488abe184.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_demangle-bf7d3e0e1fddb6ad.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_driver-5eb24e5f074f1bee.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_errors-baf941e8f1b25119.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_fs_util-9b2d3a631c8dec3c.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_hash-e50902a9925422ef.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_incremental-516f432e695c6b9a.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_lint-cdb48c0394dbcfac.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_metadata-249597cafbd474f4.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_mir-3ed8d7e79a43a758.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_passes-6a81c2f2c7313b7e.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_plugin-2708e85e9d2a3f56.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_privacy-41d5bee772c4c49a.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_rayon-e3a20b962219fdd5.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_rayon_core-b0025d4e3b3e4a9f.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_resolve-ea51e108f3f322cd.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_save_analysis-786696e196965897.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_serialize-fe6f0c86bc1b06f3.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_std_workspace_core-b465d41c8a7175dc.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_target-e9073c4139202af0.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_traits-9c46a2b5e40c5e3a.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_typeck-9b21c06aff5b43a9.so
lib/rustlib/x86_64-unknown-openbsd/lib/libscoped_tls-7c85063c5ae21bc6.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libscopeguard-c76e20c7d8977e84.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libserialize-f5aed5828b98123b.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libserialize-f5aed5828b98123b.so
lib/rustlib/x86_64-unknown-openbsd/lib/libsmallvec-4185ddfa93d16947.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libstable_deref_trait-6e3fa1bbadb786d5.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libstd-e3c55bf0771cd49c.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libstd-e3c55bf0771cd49c.so
lib/rustlib/x86_64-unknown-openbsd/lib/libsyntax-e97d80eb4b0708d5.so
lib/rustlib/x86_64-unknown-openbsd/lib/libsyntax_ext-cac95bd219329cc9.so
lib/rustlib/x86_64-unknown-openbsd/lib/libsyntax_pos-9ce5cfad7679a7dd.so
lib/rustlib/x86_64-unknown-openbsd/lib/libtempfile-c4eafee5aa26e9aa.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libterm-1c70aadfcf98ccca.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libterm-1c70aadfcf98ccca.so
lib/rustlib/x86_64-unknown-openbsd/lib/libtermcolor-a95b069f9a6d4cfd.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libtest-702172e7d8e49669.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libtest-702172e7d8e49669.so
lib/rustlib/x86_64-unknown-openbsd/lib/libunicode_width-c864c7160c3dd051.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libunreachable-25b16b5c4bf829ec.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libunwind-1759b7ff93a2d3d4.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libvoid-6e4f09a046b44973.rlib

View File

@ -1,141 +1,150 @@
@comment $OpenBSD: PFRAG.i386-main,v 1.29 2019/01/27 05:25:29 semarie Exp $
lib/libarena-073485d4ba7f6912.so
lib/libfmt_macros-40af62d5e039262e.so
lib/libgraphviz-df2e55ee9f5ccded.so
lib/librustc-b4649c97a2ad2efe.so
lib/librustc_allocator-e39c3c8af3ad1bb4.so
lib/librustc_borrowck-30d4fa3a0b908d3c.so
lib/librustc_codegen_ssa-87cdff6dac20f022.so
lib/librustc_codegen_utils-6c9b2f8a21149af6.so
lib/librustc_cratesio_shim-2e19fe972ea17a09.so
lib/librustc_data_structures-24907d7b3617fdea.so
lib/librustc_driver-1023642d9de0259a.so
lib/librustc_errors-5db01c5d85d0902f.so
lib/librustc_fs_util-ae48aa355d122306.so
lib/librustc_incremental-e552627b4cce4459.so
lib/librustc_lint-f72c81bc85746a82.so
lib/librustc_metadata-3a2aaa3d0f6e22fa.so
lib/librustc_mir-6c2b019104b2df60.so
lib/librustc_passes-a52bf9756ba19753.so
lib/librustc_platform_intrinsics-b5eb9defce97a8d1.so
lib/librustc_plugin-a85a30139e173340.so
lib/librustc_privacy-bf25d7e70e06ab13.so
lib/librustc_resolve-41a1deed031a9378.so
lib/librustc_save_analysis-bc0d54a0bef6d990.so
lib/librustc_target-d6b812d3b52782f9.so
lib/librustc_traits-8bc899cc04334198.so
lib/librustc_typeck-2e5844d53efaa67a.so
lib/libserialize-76f2b627d82a60db.so
lib/libstd-9bd29363df0b1737.so
lib/libsyntax-eecde5b3eaead371.so
lib/libsyntax_ext-44f08a31f0a527df.so
lib/libsyntax_pos-403cb300db678eb2.so
lib/libterm-b81b347c0360701b.so
lib/libtest-942a4d9b3616ee2e.so
@comment $OpenBSD: PFRAG.i386-main,v 1.30 2019/03/11 19:13:40 semarie Exp $
lib/libarena-674f1b1d774998c8.so
lib/libfmt_macros-9a67fa504d069299.so
lib/libgraphviz-cd9ef5c1f3b3c6f4.so
lib/librustc-a74adb47e552ca2b.so
lib/librustc_allocator-caada5bac11844ba.so
lib/librustc_borrowck-5e9dc1ebc5121782.so
lib/librustc_codegen_ssa-a2912501180ba37a.so
lib/librustc_codegen_utils-4d9a93f6c24dea2e.so
lib/librustc_cratesio_shim-6d3105ea36f62409.so
lib/librustc_data_structures-eaa2b12d5833d474.so
lib/librustc_driver-ab4abadde2c116e6.so
lib/librustc_errors-a8425258e4849bbc.so
lib/librustc_fs_util-a8bd48408e5cd565.so
lib/librustc_incremental-a69acb9f008d73d7.so
lib/librustc_lint-0d0aae20770e3387.so
lib/librustc_metadata-7d20b086d969140f.so
lib/librustc_mir-3e055f2de7926ab0.so
lib/librustc_passes-3c09021a3f9df0ce.so
lib/librustc_plugin-d01b1f9b495c3772.so
lib/librustc_privacy-bd5f19ad6b90a32f.so
lib/librustc_resolve-13549b7997883488.so
lib/librustc_save_analysis-c0593c3158c7169e.so
lib/librustc_target-b3922df383745eb1.so
lib/librustc_traits-b136674fc7f0ccba.so
lib/librustc_typeck-bf3af0363fb6de22.so
lib/libserialize-9caa46b0037365ec.so
lib/libstd-f3b067764b67b829.so
lib/libsyntax-3a9ce86db737e0c1.so
lib/libsyntax_ext-1e460b5d1d23118b.so
lib/libsyntax_pos-a2b88aebe2177610.so
lib/libterm-9457233a5123490d.so
lib/libtest-dfacc79f0dcb263d.so
lib/rustlib/i686-unknown-openbsd/
lib/rustlib/i686-unknown-openbsd/codegen-backends/
lib/rustlib/i686-unknown-openbsd/codegen-backends/librustc_codegen_llvm-llvm.so
lib/rustlib/i686-unknown-openbsd/lib/
lib/rustlib/i686-unknown-openbsd/lib/liballoc-ca0cd39a455dca3f.rlib
lib/rustlib/i686-unknown-openbsd/lib/libarena-073485d4ba7f6912.so
lib/rustlib/i686-unknown-openbsd/lib/libarrayvec-437b29b5d46d971e.rlib
lib/rustlib/i686-unknown-openbsd/lib/libatty-01d8d996321234a4.rlib
lib/rustlib/i686-unknown-openbsd/lib/libbacktrace-6312fc1ea88b231c.rlib
lib/rustlib/i686-unknown-openbsd/lib/libbacktrace_sys-830078c8a7360f2c.rlib
lib/rustlib/i686-unknown-openbsd/lib/libbitflags-0184db6e675eaa1a.rlib
lib/rustlib/i686-unknown-openbsd/lib/libbyteorder-cc9b707570f99037.rlib
lib/rustlib/i686-unknown-openbsd/lib/libcc-1cb067c3dc7af19d.rlib
lib/rustlib/i686-unknown-openbsd/lib/libcfg_if-c3f18b48bf183d65.rlib
lib/rustlib/i686-unknown-openbsd/lib/libchalk_engine-d5b157a22d91540c.rlib
lib/rustlib/i686-unknown-openbsd/lib/libchalk_macros-dcd52244c93f7d84.rlib
lib/rustlib/i686-unknown-openbsd/lib/libcompiler_builtins-e3edc9a505124f49.rlib
lib/rustlib/i686-unknown-openbsd/lib/libcore-34a83bc3886cf4a5.rlib
lib/rustlib/i686-unknown-openbsd/lib/libcrossbeam_deque-6e9beef4c44b21e8.rlib
lib/rustlib/i686-unknown-openbsd/lib/libcrossbeam_epoch-5804eb1a856ea7b1.rlib
lib/rustlib/i686-unknown-openbsd/lib/libcrossbeam_utils-bed819e26e58b6a3.rlib
lib/rustlib/i686-unknown-openbsd/lib/libdatafrog-0f37b3e1e0cb7ddb.rlib
lib/rustlib/i686-unknown-openbsd/lib/libeither-f81f952e97dc2b1b.rlib
lib/rustlib/i686-unknown-openbsd/lib/libena-54f236bf1cbe0ef9.rlib
lib/rustlib/i686-unknown-openbsd/lib/libenv_logger-40fb0236b67ca499.rlib
lib/rustlib/i686-unknown-openbsd/lib/libflate2-64b0946a366bcb87.rlib
lib/rustlib/i686-unknown-openbsd/lib/libfmt_macros-40af62d5e039262e.so
lib/rustlib/i686-unknown-openbsd/lib/libgetopts-99416a8a6c48f708.rlib
lib/rustlib/i686-unknown-openbsd/lib/libgraphviz-df2e55ee9f5ccded.so
lib/rustlib/i686-unknown-openbsd/lib/libhumantime-093a30538a0c546b.rlib
lib/rustlib/i686-unknown-openbsd/lib/libjobserver-5cf9f74d16f37d79.rlib
lib/rustlib/i686-unknown-openbsd/lib/liblazy_static-06e2e4a521a3fe33.rlib
lib/rustlib/i686-unknown-openbsd/lib/liblazy_static-64d77a12b96de4a6.rlib
lib/rustlib/i686-unknown-openbsd/lib/liblibc-2c1f9e6d1452e696.rlib
lib/rustlib/i686-unknown-openbsd/lib/liblibc-2ca2f455583d4906.rlib
lib/rustlib/i686-unknown-openbsd/lib/liblock_api-53fa852f3de7d3fb.rlib
lib/rustlib/i686-unknown-openbsd/lib/liblog-090a6036711f2ff1.rlib
lib/rustlib/i686-unknown-openbsd/lib/liblog_settings-4d1ecbbbd01a6181.rlib
lib/rustlib/i686-unknown-openbsd/lib/libmemmap-e0174ef7d625e786.rlib
lib/rustlib/i686-unknown-openbsd/lib/libmemoffset-47b9428f3404cd98.rlib
lib/rustlib/i686-unknown-openbsd/lib/libminiz_sys-6f536770bd60a574.rlib
lib/rustlib/i686-unknown-openbsd/lib/libnodrop-399a9bd32ad8f6eb.rlib
lib/rustlib/i686-unknown-openbsd/lib/libnum_cpus-02c1a5bca778e5e6.rlib
lib/rustlib/i686-unknown-openbsd/lib/libowning_ref-fcbc858f71ec7688.rlib
lib/rustlib/i686-unknown-openbsd/lib/libpanic_abort-6928c8ff0cfdd3f1.rlib
lib/rustlib/i686-unknown-openbsd/lib/libpanic_unwind-729745aa9deb5455.rlib
lib/rustlib/i686-unknown-openbsd/lib/libparking_lot-e1b8e337fccc57c8.rlib
lib/rustlib/i686-unknown-openbsd/lib/libparking_lot_core-d23077e5d612dd71.rlib
lib/rustlib/i686-unknown-openbsd/lib/libpolonius_engine-50fadc567225f4da.rlib
lib/rustlib/i686-unknown-openbsd/lib/libproc_macro-d71941e0a28d1d6d.rlib
lib/rustlib/i686-unknown-openbsd/lib/libquick_error-3cab0ad74b8d3611.rlib
lib/rustlib/i686-unknown-openbsd/lib/librand-07a602547816e8ad.rlib
lib/rustlib/i686-unknown-openbsd/lib/librand-de75836a53791f0c.rlib
lib/rustlib/i686-unknown-openbsd/lib/librand_core-d8309972e1adf4e5.rlib
lib/rustlib/i686-unknown-openbsd/lib/libremove_dir_all-aef657165f6bc156.rlib
lib/rustlib/i686-unknown-openbsd/lib/librls_data-3ef6cde47a6fc898.rlib
lib/rustlib/i686-unknown-openbsd/lib/librls_span-d3facf77d10f4ee3.rlib
lib/rustlib/i686-unknown-openbsd/lib/librustc-b4649c97a2ad2efe.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_allocator-e39c3c8af3ad1bb4.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_apfloat-1db0f8e63b133158.rlib
lib/rustlib/i686-unknown-openbsd/lib/librustc_borrowck-30d4fa3a0b908d3c.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_codegen_ssa-87cdff6dac20f022.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_codegen_utils-6c9b2f8a21149af6.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_cratesio_shim-2e19fe972ea17a09.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_data_structures-24907d7b3617fdea.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_demangle-20a31855e474cd04.rlib
lib/rustlib/i686-unknown-openbsd/lib/librustc_driver-1023642d9de0259a.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_errors-5db01c5d85d0902f.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_fs_util-ae48aa355d122306.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_hash-3078fb3bc7e27141.rlib
lib/rustlib/i686-unknown-openbsd/lib/librustc_incremental-e552627b4cce4459.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_lint-f72c81bc85746a82.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_metadata-3a2aaa3d0f6e22fa.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_mir-6c2b019104b2df60.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_passes-a52bf9756ba19753.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_platform_intrinsics-b5eb9defce97a8d1.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_plugin-a85a30139e173340.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_privacy-bf25d7e70e06ab13.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_rayon-265705e02c49bcd0.rlib
lib/rustlib/i686-unknown-openbsd/lib/librustc_rayon_core-4ff58150459f1e81.rlib
lib/rustlib/i686-unknown-openbsd/lib/librustc_resolve-41a1deed031a9378.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_save_analysis-bc0d54a0bef6d990.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_serialize-0583b226055edf2f.rlib
lib/rustlib/i686-unknown-openbsd/lib/librustc_target-d6b812d3b52782f9.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_traits-8bc899cc04334198.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_typeck-2e5844d53efaa67a.so
lib/rustlib/i686-unknown-openbsd/lib/libscoped_tls-75f540686b7ffb98.rlib
lib/rustlib/i686-unknown-openbsd/lib/libscopeguard-7eac042384e4dba8.rlib
lib/rustlib/i686-unknown-openbsd/lib/libserialize-76f2b627d82a60db.rlib
lib/rustlib/i686-unknown-openbsd/lib/libserialize-76f2b627d82a60db.so
lib/rustlib/i686-unknown-openbsd/lib/libsmallvec-a1ab0a1e18d5ca9a.rlib
lib/rustlib/i686-unknown-openbsd/lib/libstable_deref_trait-c27735c2b29ff7b4.rlib
lib/rustlib/i686-unknown-openbsd/lib/libstd-9bd29363df0b1737.rlib
lib/rustlib/i686-unknown-openbsd/lib/libstd-9bd29363df0b1737.so
lib/rustlib/i686-unknown-openbsd/lib/libsyntax-eecde5b3eaead371.so
lib/rustlib/i686-unknown-openbsd/lib/libsyntax_ext-44f08a31f0a527df.so
lib/rustlib/i686-unknown-openbsd/lib/libsyntax_pos-403cb300db678eb2.so
lib/rustlib/i686-unknown-openbsd/lib/libtempfile-d65037a8d886c974.rlib
lib/rustlib/i686-unknown-openbsd/lib/libterm-b81b347c0360701b.rlib
lib/rustlib/i686-unknown-openbsd/lib/libterm-b81b347c0360701b.so
lib/rustlib/i686-unknown-openbsd/lib/libtermcolor-c424cedcc3fa0d41.rlib
lib/rustlib/i686-unknown-openbsd/lib/libtest-942a4d9b3616ee2e.rlib
lib/rustlib/i686-unknown-openbsd/lib/libtest-942a4d9b3616ee2e.so
lib/rustlib/i686-unknown-openbsd/lib/libunicode_width-acebfc03640eaa7f.rlib
lib/rustlib/i686-unknown-openbsd/lib/libunreachable-116176e241d8cb50.rlib
lib/rustlib/i686-unknown-openbsd/lib/libunwind-0e8946477a3126ac.rlib
lib/rustlib/i686-unknown-openbsd/lib/libvoid-71a5bebbe582a234.rlib
lib/rustlib/i686-unknown-openbsd/lib/liballoc-d743deaa96336e51.rlib
lib/rustlib/i686-unknown-openbsd/lib/libarena-674f1b1d774998c8.so
lib/rustlib/i686-unknown-openbsd/lib/libarrayvec-ea07ef32ece3138a.rlib
lib/rustlib/i686-unknown-openbsd/lib/libatty-c6fe7f05fc161e7b.rlib
lib/rustlib/i686-unknown-openbsd/lib/libbacktrace-4f6e76a1c30bdfbc.rlib
lib/rustlib/i686-unknown-openbsd/lib/libbacktrace_sys-1b5590df237e9981.rlib
lib/rustlib/i686-unknown-openbsd/lib/libbacktrace_sys-d23f33da0635af79.rlib
lib/rustlib/i686-unknown-openbsd/lib/libbitflags-f49933f07b4612af.rlib
lib/rustlib/i686-unknown-openbsd/lib/libbyteorder-c070b6056e1a5145.rlib
lib/rustlib/i686-unknown-openbsd/lib/libcc-c0034e02670a4eed.rlib
lib/rustlib/i686-unknown-openbsd/lib/libcfg_if-bbac66f01e5d2fab.rlib
lib/rustlib/i686-unknown-openbsd/lib/libchalk_engine-8693eb66ac0e57cb.rlib
lib/rustlib/i686-unknown-openbsd/lib/libchalk_macros-a5327e2c4fb74d89.rlib
lib/rustlib/i686-unknown-openbsd/lib/libcompiler_builtins-eb987484f5b0fe02.rlib
lib/rustlib/i686-unknown-openbsd/lib/libcore-ef1a1b16812c5b1d.rlib
lib/rustlib/i686-unknown-openbsd/lib/libcrc32fast-6ee71c83447dbf3d.rlib
lib/rustlib/i686-unknown-openbsd/lib/libcrossbeam_deque-039dff72c689f7d8.rlib
lib/rustlib/i686-unknown-openbsd/lib/libcrossbeam_epoch-8d14009ada562c26.rlib
lib/rustlib/i686-unknown-openbsd/lib/libcrossbeam_utils-4269ee0d11e71b03.rlib
lib/rustlib/i686-unknown-openbsd/lib/libdatafrog-fea1266ac26d72d6.rlib
lib/rustlib/i686-unknown-openbsd/lib/libeither-b44e75039818b6b2.rlib
lib/rustlib/i686-unknown-openbsd/lib/libena-6635403f17848bbb.rlib
lib/rustlib/i686-unknown-openbsd/lib/libenv_logger-ce3844e179401e37.rlib
lib/rustlib/i686-unknown-openbsd/lib/libflate2-b6194eb63b96b5c2.rlib
lib/rustlib/i686-unknown-openbsd/lib/libfmt_macros-9a67fa504d069299.so
lib/rustlib/i686-unknown-openbsd/lib/libgetopts-a33f91ae882ec318.rlib
lib/rustlib/i686-unknown-openbsd/lib/libgraphviz-cd9ef5c1f3b3c6f4.so
lib/rustlib/i686-unknown-openbsd/lib/libhumantime-d91f19b87fbcbbc0.rlib
lib/rustlib/i686-unknown-openbsd/lib/libjobserver-00f7e1bcf50cb5b4.rlib
lib/rustlib/i686-unknown-openbsd/lib/liblazy_static-12bea36f72f32ba5.rlib
lib/rustlib/i686-unknown-openbsd/lib/liblazy_static-7d1003c70d307a4d.rlib
lib/rustlib/i686-unknown-openbsd/lib/liblibc-03aa7e0b18bf46c4.rlib
lib/rustlib/i686-unknown-openbsd/lib/liblibc-af1a80376e42a162.rlib
lib/rustlib/i686-unknown-openbsd/lib/liblock_api-942cc5f2e6955a89.rlib
lib/rustlib/i686-unknown-openbsd/lib/liblog-6bd95f7871494391.rlib
lib/rustlib/i686-unknown-openbsd/lib/liblog_settings-b722e315076315f6.rlib
lib/rustlib/i686-unknown-openbsd/lib/libmemmap-b49d92163dc872f8.rlib
lib/rustlib/i686-unknown-openbsd/lib/libmemoffset-21897af7984a4fb0.rlib
lib/rustlib/i686-unknown-openbsd/lib/libminiz_sys-9735a9ebeced79f5.rlib
lib/rustlib/i686-unknown-openbsd/lib/libnodrop-4e7f6451bc59d314.rlib
lib/rustlib/i686-unknown-openbsd/lib/libnum_cpus-f70317507d7301f2.rlib
lib/rustlib/i686-unknown-openbsd/lib/libowning_ref-fb2be7bc47e2e47b.rlib
lib/rustlib/i686-unknown-openbsd/lib/libpanic_abort-534749fa4a93e8d3.rlib
lib/rustlib/i686-unknown-openbsd/lib/libpanic_unwind-7965af8c82ccae33.rlib
lib/rustlib/i686-unknown-openbsd/lib/libparking_lot-f071715e0883abf7.rlib
lib/rustlib/i686-unknown-openbsd/lib/libparking_lot_core-1ccf9a38416e3021.rlib
lib/rustlib/i686-unknown-openbsd/lib/libpolonius_engine-3f85ee5e274a0fec.rlib
lib/rustlib/i686-unknown-openbsd/lib/libproc_macro-48230ceaa72e48a3.rlib
lib/rustlib/i686-unknown-openbsd/lib/libquick_error-8a30e88e580d1787.rlib
lib/rustlib/i686-unknown-openbsd/lib/librand-326d87ecd374ed77.rlib
lib/rustlib/i686-unknown-openbsd/lib/librand-8d83357ce5b0b80a.rlib
lib/rustlib/i686-unknown-openbsd/lib/librand-8e994569f3ff7e49.rlib
lib/rustlib/i686-unknown-openbsd/lib/librand_chacha-78cbf4fd5c8c6663.rlib
lib/rustlib/i686-unknown-openbsd/lib/librand_core-84a9040958b82fa2.rlib
lib/rustlib/i686-unknown-openbsd/lib/librand_core-8782084a026435f8.rlib
lib/rustlib/i686-unknown-openbsd/lib/librand_hc-c4460db64490a6ef.rlib
lib/rustlib/i686-unknown-openbsd/lib/librand_isaac-49da2e89c26fce4b.rlib
lib/rustlib/i686-unknown-openbsd/lib/librand_pcg-db81cee84aad91f6.rlib
lib/rustlib/i686-unknown-openbsd/lib/librand_xorshift-8bfcbe45d2d736fb.rlib
lib/rustlib/i686-unknown-openbsd/lib/libremove_dir_all-46257b6f9f878193.rlib
lib/rustlib/i686-unknown-openbsd/lib/librls_data-7ddbd3f61935e1b0.rlib
lib/rustlib/i686-unknown-openbsd/lib/librls_span-9e84106d9ffefdfa.rlib
lib/rustlib/i686-unknown-openbsd/lib/librustc-a74adb47e552ca2b.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_allocator-caada5bac11844ba.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_apfloat-0107011e7324c8cc.rlib
lib/rustlib/i686-unknown-openbsd/lib/librustc_borrowck-5e9dc1ebc5121782.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_codegen_ssa-a2912501180ba37a.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_codegen_utils-4d9a93f6c24dea2e.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_cratesio_shim-6d3105ea36f62409.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_data_structures-eaa2b12d5833d474.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_demangle-2ef2e936ff281b3e.rlib
lib/rustlib/i686-unknown-openbsd/lib/librustc_demangle-638d82880138d108.rlib
lib/rustlib/i686-unknown-openbsd/lib/librustc_driver-ab4abadde2c116e6.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_errors-a8425258e4849bbc.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_fs_util-a8bd48408e5cd565.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_hash-59fcdc92c4bfe121.rlib
lib/rustlib/i686-unknown-openbsd/lib/librustc_incremental-a69acb9f008d73d7.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_lint-0d0aae20770e3387.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_metadata-7d20b086d969140f.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_mir-3e055f2de7926ab0.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_passes-3c09021a3f9df0ce.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_plugin-d01b1f9b495c3772.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_privacy-bd5f19ad6b90a32f.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_rayon-6ffa7a154692a549.rlib
lib/rustlib/i686-unknown-openbsd/lib/librustc_rayon_core-eac12f732b4d1ed0.rlib
lib/rustlib/i686-unknown-openbsd/lib/librustc_resolve-13549b7997883488.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_save_analysis-c0593c3158c7169e.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_serialize-3280d8b7cf7a3352.rlib
lib/rustlib/i686-unknown-openbsd/lib/librustc_std_workspace_core-0f43174580ac06ce.rlib
lib/rustlib/i686-unknown-openbsd/lib/librustc_target-b3922df383745eb1.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_traits-b136674fc7f0ccba.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_typeck-bf3af0363fb6de22.so
lib/rustlib/i686-unknown-openbsd/lib/libscoped_tls-1e41260df99bf10f.rlib
lib/rustlib/i686-unknown-openbsd/lib/libscopeguard-73283fe442751165.rlib
lib/rustlib/i686-unknown-openbsd/lib/libserialize-9caa46b0037365ec.rlib
lib/rustlib/i686-unknown-openbsd/lib/libserialize-9caa46b0037365ec.so
lib/rustlib/i686-unknown-openbsd/lib/libsmallvec-bd6f7a9e12af18a7.rlib
lib/rustlib/i686-unknown-openbsd/lib/libstable_deref_trait-4a2ae3f95e9e74d7.rlib
lib/rustlib/i686-unknown-openbsd/lib/libstd-f3b067764b67b829.rlib
lib/rustlib/i686-unknown-openbsd/lib/libstd-f3b067764b67b829.so
lib/rustlib/i686-unknown-openbsd/lib/libsyntax-3a9ce86db737e0c1.so
lib/rustlib/i686-unknown-openbsd/lib/libsyntax_ext-1e460b5d1d23118b.so
lib/rustlib/i686-unknown-openbsd/lib/libsyntax_pos-a2b88aebe2177610.so
lib/rustlib/i686-unknown-openbsd/lib/libtempfile-41b9a429d1897313.rlib
lib/rustlib/i686-unknown-openbsd/lib/libterm-9457233a5123490d.rlib
lib/rustlib/i686-unknown-openbsd/lib/libterm-9457233a5123490d.so
lib/rustlib/i686-unknown-openbsd/lib/libtermcolor-ee4cfad0853decae.rlib
lib/rustlib/i686-unknown-openbsd/lib/libtest-dfacc79f0dcb263d.rlib
lib/rustlib/i686-unknown-openbsd/lib/libtest-dfacc79f0dcb263d.so
lib/rustlib/i686-unknown-openbsd/lib/libunicode_width-77178572f3e8dd0a.rlib
lib/rustlib/i686-unknown-openbsd/lib/libunreachable-c88d0a8cdd833d67.rlib
lib/rustlib/i686-unknown-openbsd/lib/libunwind-e8dccb4ecc851f6b.rlib
lib/rustlib/i686-unknown-openbsd/lib/libvoid-e2b76487145d7a9f.rlib

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST-main,v 1.15 2018/12/16 09:19:57 semarie Exp $
@comment $OpenBSD: PLIST-main,v 1.16 2019/03/11 19:13:40 semarie Exp $
@conflict cargo-<0.20.0
@pkgpath devel/cargo
@bin bin/cargo
@ -19,9 +19,12 @@ lib/rustlib/etc/debugger_pretty_printers_common.pyc
@man man/man1/cargo-clean.1
@man man/man1/cargo-doc.1
@man man/man1/cargo-fetch.1
@man man/man1/cargo-fix.1
@man man/man1/cargo-generate-lockfile.1
@man man/man1/cargo-help.1
@man man/man1/cargo-init.1
@man man/man1/cargo-install.1
@man man/man1/cargo-locate-project.1
@man man/man1/cargo-login.1
@man man/man1/cargo-metadata.1
@man man/man1/cargo-new.1
@ -36,6 +39,7 @@ lib/rustlib/etc/debugger_pretty_printers_common.pyc
@man man/man1/cargo-test.1
@man man/man1/cargo-uninstall.1
@man man/man1/cargo-update.1
@man man/man1/cargo-verify-project.1
@man man/man1/cargo-version.1
@man man/man1/cargo-yank.1
@man man/man1/cargo.1