mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 16:54:01 +00:00
Slightly more helpful error message for "null lib handle"
I changed the error message to also suggest checking the -L flag when this happens.
This commit is contained in:
parent
93845d0bae
commit
54aff74af0
@ -49,7 +49,8 @@ rust_crate_cache::c_sym::c_sym(rust_dom *dom, lib *library, char const *name)
|
||||
DLOG(dom, cache, "resolved symbol '%s' to 0x%" PRIxPTR,
|
||||
name, val);
|
||||
} else {
|
||||
DLOG_ERR(dom, cache, "unresolved symbol '%s', null lib handle", name);
|
||||
DLOG_ERR(dom, cache, "unresolved symbol '%s', null lib handle\n"
|
||||
"(did you omit a -L flag?)", name);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user