diff options
author | Stefan Weil | 2022-11-02 21:22:58 +0100 |
---|---|---|
committer | Paolo Bonzini | 2022-11-06 09:48:37 +0100 |
commit | 8a0afbb2a4f7da5e6a542787ea90eb240e7ac65d (patch) | |
tree | e9ec7c771b017f8dd3c58b8ae0aeb70cab9992c8 /configure | |
parent | gdb-xml: Fix size of EFER register on i386 architecture when debugged by GDB (diff) | |
download | qemu-8a0afbb2a4f7da5e6a542787ea90eb240e7ac65d.tar.gz qemu-8a0afbb2a4f7da5e6a542787ea90eb240e7ac65d.tar.xz qemu-8a0afbb2a4f7da5e6a542787ea90eb240e7ac65d.zip |
Fix broken configure with -Wunused-parameter
The configure script fails because it tries to compile small C programs
with a main function which is declared with arguments argc and argv
although those arguments are unused.
Running `configure -extra-cflags=-Wunused-parameter` triggers the problem.
configure for a native build does abort but shows the error in config.log.
A cross build configure for Windows with Debian stable aborts with an
error.
Avoiding unused arguments fixes this.
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Message-Id: <20221102202258.456359-1-sw@weilnetz.de>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1258,7 +1258,7 @@ if test "$stack_protector" != "no"; then cat > $TMPC << EOF int main(int argc, char *argv[]) { - char arr[64], *p = arr, *c = argv[0]; + char arr[64], *p = arr, *c = argv[argc - 1]; while (*c) { *p++ = *c++; } @@ -1607,7 +1607,7 @@ fi if test "$safe_stack" = "yes"; then cat > $TMPC << EOF -int main(int argc, char *argv[]) +int main(void) { #if ! __has_feature(safe_stack) #error SafeStack Disabled @@ -1629,7 +1629,7 @@ EOF fi else cat > $TMPC << EOF -int main(int argc, char *argv[]) +int main(void) { #if defined(__has_feature) #if __has_feature(safe_stack) @@ -1675,7 +1675,7 @@ static const int Z = 1; #define TAUT(X) ((X) == Z) #define PAREN(X, Y) (X == Y) #define ID(X) (X) -int main(int argc, char *argv[]) +int main(void) { int x = 0, y = 0; x = ID(x); |