diff options
author | Tom de Vries <tdevries@suse.de> | 2023-04-24 15:02:59 +0200 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2023-04-24 15:02:59 +0200 |
commit | 618e9847c576e97724a39077925588e4c19119b2 (patch) | |
tree | 12ed44146647934697dfb389be65b9782030b1c1 /gdb/testsuite/gdb.server/attach-flag.exp | |
parent | f20f27e0553b6751c4fa39ce2acb7e0da370ef23 (diff) | |
download | gdb-618e9847c576e97724a39077925588e4c19119b2.zip gdb-618e9847c576e97724a39077925588e4c19119b2.tar.gz gdb-618e9847c576e97724a39077925588e4c19119b2.tar.bz2 |
[gdb/testsuite] Use -std=gnu99 for gdb.server/attach-flag.exp
When using a compiler defaulting to -std=gnu90, we run into:
...
Running gdb.server/attach-flag.exp ...
gdb compile failed, attach-flag.c: In function 'main':
attach-flag.c:22:3: error: 'for' loop initial declarations are only allowed \
in C99 or C11 mode
for (int i = 0; i < NTHREADS; i++)
^~~
attach-flag.c:22:3: note: use option -std=c99, -std=gnu99, -std=c11 or \
-std=gnu11 to compile your code
...
Fix this by using -std=gnu99.
Tested on x86_64-linux.
Diffstat (limited to 'gdb/testsuite/gdb.server/attach-flag.exp')
-rw-r--r-- | gdb/testsuite/gdb.server/attach-flag.exp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/testsuite/gdb.server/attach-flag.exp b/gdb/testsuite/gdb.server/attach-flag.exp index ad67303..f275b9f 100644 --- a/gdb/testsuite/gdb.server/attach-flag.exp +++ b/gdb/testsuite/gdb.server/attach-flag.exp @@ -37,7 +37,7 @@ proc run_one_test { non-stop target-non-stop } { } if { [prepare_for_testing "failed to prepare" $::testfile $::srcfile \ - {debug pthreads}] } { + {debug pthreads additional_flags=-std=gnu99}] } { return -1 } } |