mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-23 19:50:13 +08:00

When building with clang, we get: error: unknown warning option '-Wmissing-parameter-type' [-Werror,-Wunknown-warning-option] This is because clang only warns by default when encountering an unknown warning option, and the probe for supported warning flags is done without -Werror. All flags are therefore accepted by configure, but then it breaks when actually compiling a source file with -Werror. This is equivalent to this commit in gdb: 3e019bdc20eb81b91ab5bc774386201b874c0bac gdb: Use -Werror when checking for (un)supported warning flags We then see some other compilation errors when building with clang and -Werror, they can be dealt with later.
18 lines
490 B
Plaintext
18 lines
490 B
Plaintext
2021-04-21 Simon Marchi <simon.marchi@polymtl.ca>
|
|
|
|
* configure: Regenerate.
|
|
|
|
2021-04-18 Mike Frysinger <vapier@gentoo.org>
|
|
|
|
* configure: Regenerate.
|
|
|
|
2021-04-12 Mike Frysinger <vapier@gentoo.org>
|
|
|
|
* interp.c (sim_open): Delete 3rd arg to sim_cpu_alloc_all.
|
|
|
|
2021-04-03 Mike Frysinger <vapier@gentoo.org>
|
|
|
|
* configure.ac, interp.c, Makefile.in, README, README.arch-spec,
|
|
sim-main.c, sim-main.h: New files for example simulator.
|
|
* aclocal.m4, config.in, configure: Regenerated.
|