WIP FPC-III support
[linux/fpc-iii.git] / tools / objtool / weak.c
blob7843e9a7a72f4885285c4d6b4bb0a7d98fae19f9
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * Copyright (C) 2020 Matt Helsley <mhelsley@vmware.com>
4 * Weak definitions necessary to compile objtool without
5 * some subcommands (e.g. check, orc).
6 */
8 #include <stdbool.h>
9 #include <errno.h>
10 #include "objtool.h"
12 #define UNSUPPORTED(name) \
13 ({ \
14 fprintf(stderr, "error: objtool: " name " not implemented\n"); \
15 return ENOSYS; \
18 int __weak check(struct objtool_file *file)
20 UNSUPPORTED("check subcommand");
23 int __weak orc_dump(const char *_objname)
25 UNSUPPORTED("orc");
28 int __weak create_orc(struct objtool_file *file)
30 UNSUPPORTED("orc");
33 int __weak create_orc_sections(struct objtool_file *file)
35 UNSUPPORTED("orc");