mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
b51277eb97
Objtool has a fairly singular focus. It runs on object files and does validations and transformations which can be combined in various ways. The subcommand model has never been a good fit, making it awkward to combine and remove options. Remove the "check" and "orc" subcommands in favor of a more traditional cmdline option model. This makes it much more flexible to use, and easier to port individual features to other arches. Signed-off-by: Josh Poimboeuf <jpoimboe@redhat.com> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Reviewed-by: Miroslav Benes <mbenes@suse.cz> Link: https://lkml.kernel.org/r/5c61ebf805e90aefc5fa62bc63468ffae53b9df6.1650300597.git.jpoimboe@redhat.com
26 lines
558 B
C
26 lines
558 B
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Copyright (C) 2020 Matt Helsley <mhelsley@vmware.com>
|
|
* Weak definitions necessary to compile objtool without
|
|
* some subcommands (e.g. check, orc).
|
|
*/
|
|
|
|
#include <stdbool.h>
|
|
#include <errno.h>
|
|
#include <objtool/objtool.h>
|
|
|
|
#define UNSUPPORTED(name) \
|
|
({ \
|
|
fprintf(stderr, "error: objtool: " name " not implemented\n"); \
|
|
return ENOSYS; \
|
|
})
|
|
|
|
int __weak orc_dump(const char *_objname)
|
|
{
|
|
UNSUPPORTED("ORC");
|
|
}
|
|
|
|
int __weak orc_create(struct objtool_file *file)
|
|
{
|
|
UNSUPPORTED("ORC");
|
|
}
|