Skip to content
Snippets Groups Projects
Commit 7b75b13c authored by Sam Ravnborg's avatar Sam Ravnborg
Browse files

kbuild: when warning symbols exported twice now tell user this is the problem


Warning now looks like this:
WARNING: vmlinux: 'strcpy' exported twice. Previous export was in vmlinux

Which gives much better hint how to fix it.

Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
parent f6ecebd6
No related merge requests found
...@@ -191,7 +191,7 @@ static struct symbol *sym_add_exported(const char *name, struct module *mod) ...@@ -191,7 +191,7 @@ static struct symbol *sym_add_exported(const char *name, struct module *mod)
s = new_symbol(name, mod); s = new_symbol(name, mod);
} else { } else {
if (!s->preloaded) { if (!s->preloaded) {
warn("%s: duplicate symbol '%s' previous definition " warn("%s: '%s' exported twice. Previous export "
"was in %s%s\n", mod->name, name, "was in %s%s\n", mod->name, name,
s->module->name, s->module->name,
is_vmlinux(s->module->name) ?"":".ko"); is_vmlinux(s->module->name) ?"":".ko");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment