mirror of
https://github.com/torvalds/linux.git
synced 2025-12-07 20:06:24 +00:00
Remove the following from CONFIG_OBJTOOL_WERROR: * backtrace * "upgraded warnings to errors" message * cmdline args This makes the default output less cluttered and makes it easier to spot the actual warnings. Note the above options are still are available with --verbose or OBJTOOL_VERBOSE=1. Also, do the cmdline arg printing on all warnings, regardless of werror. Signed-off-by: Josh Poimboeuf <jpoimboe@kernel.org> Signed-off-by: Ingo Molnar <mingo@kernel.org> Cc: Linus Torvalds <torvalds@linux-foundation.org> Link: https://lore.kernel.org/r/d61df69f64b396fa6b2a1335588aad7a34ea9e71.1742852846.git.jpoimboe@kernel.org
53 lines
874 B
C
53 lines
874 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Copyright (C) 2015 Josh Poimboeuf <jpoimboe@redhat.com>
|
|
*/
|
|
#ifndef _BUILTIN_H
|
|
#define _BUILTIN_H
|
|
|
|
#include <subcmd/parse-options.h>
|
|
|
|
struct opts {
|
|
/* actions: */
|
|
bool dump_orc;
|
|
bool hack_jump_label;
|
|
bool hack_noinstr;
|
|
bool hack_skylake;
|
|
bool ibt;
|
|
bool mcount;
|
|
bool noinstr;
|
|
bool orc;
|
|
bool retpoline;
|
|
bool rethunk;
|
|
bool unret;
|
|
bool sls;
|
|
bool stackval;
|
|
bool static_call;
|
|
bool uaccess;
|
|
int prefix;
|
|
bool cfi;
|
|
|
|
/* options: */
|
|
bool backtrace;
|
|
bool dryrun;
|
|
bool link;
|
|
bool mnop;
|
|
bool module;
|
|
bool no_unreachable;
|
|
const char *output;
|
|
bool sec_address;
|
|
bool stats;
|
|
bool verbose;
|
|
bool werror;
|
|
};
|
|
|
|
extern struct opts opts;
|
|
|
|
int cmd_parse_options(int argc, const char **argv, const char * const usage[]);
|
|
|
|
int objtool_run(int argc, const char **argv);
|
|
|
|
void print_args(void);
|
|
|
|
#endif /* _BUILTIN_H */
|