public inbox for gdb-prs@sourceware.org
help / color / mirror / Atom feed
* [Bug build/28413] New: string_view-selftests.c build error on macOS
@ 2021-10-04  8:54 lienze2010 at hotmail dot com
  2021-10-04 12:18 ` [Bug build/28413] " simark at simark dot ca
                   ` (13 more replies)
  0 siblings, 14 replies; 15+ messages in thread
From: lienze2010 at hotmail dot com @ 2021-10-04  8:54 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=28413

            Bug ID: 28413
           Summary: string_view-selftests.c build error on macOS
           Product: gdb
           Version: HEAD
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: build
          Assignee: unassigned at sourceware dot org
          Reporter: lienze2010 at hotmail dot com
  Target Milestone: ---

Recently, I noticed that when I use clang/clang++ to compile gdb (master) on
macOS, the following error message appears.

  CXX    unittests/vec-utils-selftests.o
In file included from unittests/string_view-selftests.c:34:
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/fstream:580:17:
error:
      The symbol ::fdopen refers to the system function. Use gnulib::fdopen
instead.
      [-Werror,-Wuser-defined-warnings]
      __file_ = fdopen(__fd, __mdstr);
                ^
./../gnulib/import/stdio.h:801:1: note: from 'diagnose_if' attribute on
'fdopen':
_GL_CXXALIASWARN (fdopen);
^~~~~~~~~~~~~~~~~~~~~~~~~
./../gnulib/import/stdio.h:450:4: note: expanded from macro '_GL_CXXALIASWARN'
   _GL_CXXALIASWARN_1 (func, GNULIB_NAMESPACE)
   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./../gnulib/import/stdio.h:452:4: note: expanded from macro
'_GL_CXXALIASWARN_1'
   _GL_CXXALIASWARN_2 (func, namespace)
   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./../gnulib/import/stdio.h:457:5: note: expanded from macro
'_GL_CXXALIASWARN_2'
    _GL_WARN_ON_USE (func, \
    ^~~~~~~~~~~~~~~~~~~~~~~~
./../gnulib/import/stdio.h:621:19: note: expanded from macro '_GL_WARN_ON_USE'
  __attribute__ ((__diagnose_if__ (1, message, "warning")))
                  ^                ~
  CXX    unittests/xml-utils-selftests.o
1 error generated.
make[2]: *** [unittests/string_view-selftests.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[1]: *** [all-gdb] Error 2
make: *** [all] Error 2

Here is the command line I executed,
# cd /path/to/binutils-gdb
# ./configure --prefix=/path/to/binutils-gdb/build/
# make

I tested in the following system environment, and this issue exists on both.
macOS Mojave(version 10.14.6)
macOS Catalina(version 10.15.7)

By the way, if I use GCC to compile on macOS, the issue will not occur.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug build/28413] string_view-selftests.c build error on macOS
  2021-10-04  8:54 [Bug build/28413] New: string_view-selftests.c build error on macOS lienze2010 at hotmail dot com
@ 2021-10-04 12:18 ` simark at simark dot ca
  2021-10-04 14:33 ` vries at gcc dot gnu.org
                   ` (12 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: simark at simark dot ca @ 2021-10-04 12:18 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=28413

Simon Marchi <simark at simark dot ca> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |simark at simark dot ca

--- Comment #1 from Simon Marchi <simark at simark dot ca> ---
This happens when building with Clang on Linux too.  Not sure what we can do
here.  But as a workaround, you can build with CXXFLAGS=-std=gnu++17.  That
will disable the string_view selftest, as GDB will use string_view from C++17. 
Or, configure with --disable-unit-tests.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug build/28413] string_view-selftests.c build error on macOS
  2021-10-04  8:54 [Bug build/28413] New: string_view-selftests.c build error on macOS lienze2010 at hotmail dot com
  2021-10-04 12:18 ` [Bug build/28413] " simark at simark dot ca
@ 2021-10-04 14:33 ` vries at gcc dot gnu.org
  2021-10-04 14:46 ` vries at gcc dot gnu.org
                   ` (11 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: vries at gcc dot gnu.org @ 2021-10-04 14:33 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=28413

Tom de Vries <vries at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |vries at gcc dot gnu.org

--- Comment #2 from Tom de Vries <vries at gcc dot gnu.org> ---
FTR, patch posted here:
https://sourceware.org/pipermail/gdb-patches/2021-October/182366.html

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug build/28413] string_view-selftests.c build error on macOS
  2021-10-04  8:54 [Bug build/28413] New: string_view-selftests.c build error on macOS lienze2010 at hotmail dot com
  2021-10-04 12:18 ` [Bug build/28413] " simark at simark dot ca
  2021-10-04 14:33 ` vries at gcc dot gnu.org
@ 2021-10-04 14:46 ` vries at gcc dot gnu.org
  2021-10-04 15:13 ` simark at simark dot ca
                   ` (10 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: vries at gcc dot gnu.org @ 2021-10-04 14:46 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=28413

--- Comment #3 from Tom de Vries <vries at gcc dot gnu.org> ---
(In reply to Simon Marchi from comment #1)
> This happens when building with Clang on Linux too.

FWIW, I've tried to reproduce this with Clang on Linux, but didn't manage.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug build/28413] string_view-selftests.c build error on macOS
  2021-10-04  8:54 [Bug build/28413] New: string_view-selftests.c build error on macOS lienze2010 at hotmail dot com
                   ` (2 preceding siblings ...)
  2021-10-04 14:46 ` vries at gcc dot gnu.org
@ 2021-10-04 15:13 ` simark at simark dot ca
  2021-10-06  0:11 ` bruno at clisp dot org
                   ` (9 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: simark at simark dot ca @ 2021-10-04 15:13 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=28413

--- Comment #4 from Simon Marchi <simark at simark dot ca> ---
Well, now I get this, but I have definitely seen the fdopen one in the past:

  CXX    unittests/string_view-selftests.o
In file included from
/home/simark/src/binutils-gdb/gdb/unittests/string_view-selftests.c:26:
In file included from /home/simark/src/binutils-gdb/gdb/defs.h:28:
In file included from
/home/simark/src/binutils-gdb/gdb/../gdbsupport/common-defs.h:95:
../gnulib/import/string.h:693:1: error: reference to overloaded function could
not be resolved; did you mean to call it?
_GL_CXXALIASWARN (memchr);
^~~~~~~~~~~~~~~~~~~~~~~~~
../gnulib/import/sys/select.h:430:4: note: expanded from macro
'_GL_CXXALIASWARN'
   _GL_CXXALIASWARN_1 (func, GNULIB_NAMESPACE)
   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../gnulib/import/sys/select.h:432:4: note: expanded from macro
'_GL_CXXALIASWARN_1'
   _GL_CXXALIASWARN_2 (func, namespace)
   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../gnulib/import/sys/select.h:437:5: note: expanded from macro
'_GL_CXXALIASWARN_2'
    _GL_WARN_ON_USE (func, \
    ^~~~~~~~~~~~~~~~~~~~~~~~
../gnulib/import/sys/select.h:572:19: note: expanded from macro
'_GL_WARN_ON_USE'
extern __typeof__ (function) function \
                  ^~~~~~~~~~
/usr/include/string.h:73:20: note: possible target for call
extern const void *memchr (const void *__s, int __c, size_t __n)
                   ^
/usr/include/string.h:71:14: note: possible target for call
extern void *memchr (void *__s, int __c, size_t __n)
             ^

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug build/28413] string_view-selftests.c build error on macOS
  2021-10-04  8:54 [Bug build/28413] New: string_view-selftests.c build error on macOS lienze2010 at hotmail dot com
                   ` (3 preceding siblings ...)
  2021-10-04 15:13 ` simark at simark dot ca
@ 2021-10-06  0:11 ` bruno at clisp dot org
  2021-10-06  0:19 ` simark at simark dot ca
                   ` (8 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: bruno at clisp dot org @ 2021-10-06  0:11 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=28413

Bruno Haible <bruno at clisp dot org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bruno at clisp dot org

--- Comment #5 from Bruno Haible <bruno at clisp dot org> ---
(In reply to Simon Marchi from comment #4)
> /home/simark/src/binutils-gdb/gdb/../gdbsupport/common-defs.h:95:
> ../gnulib/import/string.h:693:1: error: reference to overloaded function
> could not be resolved; did you mean to call it?
> _GL_CXXALIASWARN (memchr);
> ^~~~~~~~~~~~~~~~~~~~~~~~~

On which platform do you see this? Gnulib's string.in.h protects this line with

# elif __GLIBC__ >= 2
_GL_CXXALIASWARN (memchr);
# endif

So, on macOS systems, there should be no '_GL_CXXALIASWARN (memchr);'
invocation.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug build/28413] string_view-selftests.c build error on macOS
  2021-10-04  8:54 [Bug build/28413] New: string_view-selftests.c build error on macOS lienze2010 at hotmail dot com
                   ` (4 preceding siblings ...)
  2021-10-06  0:11 ` bruno at clisp dot org
@ 2021-10-06  0:19 ` simark at simark dot ca
  2021-10-06 12:32 ` bruno at clisp dot org
                   ` (7 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: simark at simark dot ca @ 2021-10-06  0:19 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=28413

--- Comment #6 from Simon Marchi <simark at simark dot ca> ---
(In reply to Bruno Haible from comment #5)
> (In reply to Simon Marchi from comment #4)
> > /home/simark/src/binutils-gdb/gdb/../gdbsupport/common-defs.h:95:
> > ../gnulib/import/string.h:693:1: error: reference to overloaded function
> > could not be resolved; did you mean to call it?
> > _GL_CXXALIASWARN (memchr);
> > ^~~~~~~~~~~~~~~~~~~~~~~~~
> 
> On which platform do you see this? Gnulib's string.in.h protects this line
> with
> 
> # elif __GLIBC__ >= 2
> _GL_CXXALIASWARN (memchr);
> # endif
> 
> So, on macOS systems, there should be no '_GL_CXXALIASWARN (memchr);'
> invocation.

Sorry that wasn't clear.  This one is on an Arch Linux system, updated a few
weeks ago.  It has:

 - gcc 11.1.0-1
 - glibc 2.33-5

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug build/28413] string_view-selftests.c build error on macOS
  2021-10-04  8:54 [Bug build/28413] New: string_view-selftests.c build error on macOS lienze2010 at hotmail dot com
                   ` (5 preceding siblings ...)
  2021-10-06  0:19 ` simark at simark dot ca
@ 2021-10-06 12:32 ` bruno at clisp dot org
  2021-10-06 13:03 ` simark at simark dot ca
                   ` (6 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: bruno at clisp dot org @ 2021-10-06 12:32 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=28413

--- Comment #7 from Bruno Haible <bruno at clisp dot org> ---
(In reply to Simon Marchi from comment #6)
> This one is on an Arch Linux system, updated a few
> weeks ago.  It has:
> 
>  - gcc 11.1.0-1
>  - glibc 2.33-5

Still more information needed:
  - Do you have Gnulib's c++defs.h, or the one by Enze Li?
  - Do the compiler options that are being passed for this compilation unit
include optimization options (-O*)?

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug build/28413] string_view-selftests.c build error on macOS
  2021-10-04  8:54 [Bug build/28413] New: string_view-selftests.c build error on macOS lienze2010 at hotmail dot com
                   ` (6 preceding siblings ...)
  2021-10-06 12:32 ` bruno at clisp dot org
@ 2021-10-06 13:03 ` simark at simark dot ca
  2022-02-11 13:11 ` levraiphilippeblain at gmail dot com
                   ` (5 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: simark at simark dot ca @ 2021-10-06 13:03 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=28413

--- Comment #8 from Simon Marchi <simark at simark dot ca> ---
(In reply to Bruno Haible from comment #7)
> (In reply to Simon Marchi from comment #6)
> > This one is on an Arch Linux system, updated a few
> > weeks ago.  It has:
> > 
> >  - gcc 11.1.0-1
> >  - glibc 2.33-5
> 
> Still more information needed:
>   - Do you have Gnulib's c++defs.h, or the one by Enze Li?
>   - Do the compiler options that are being passed for this compilation unit
> include optimization options (-O*)?

 - It's the c++defs.h in GDB's source tree, so the one from gnulib commit
776af40e09b476a41073131a90022572f448c189, unmodified.
 - No optimization.  The full compilation command line is:

   clang++ -x c++    -I. -I/home/simark/src/binutils-gdb/gdb
-I/home/simark/src/binutils-gdb/gdb/config
-DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H
-I/home/simark/src/binutils-gdb/gdb/../include/opcode
-I/home/simark/src/binutils-gdb/gdb/../readline/readline/..
-I/home/simark/src/binutils-gdb/gdb/../zlib -I../bfd
-I/home/simark/src/binutils-gdb/gdb/../bfd
-I/home/simark/src/binutils-gdb/gdb/../include -I../libdecnumber
-I/home/simark/src/binutils-gdb/gdb/../libdecnumber 
-I/home/simark/src/binutils-gdb/gdb/../gnulib/import -I../gnulib/import
-I/home/simark/src/binutils-gdb/gdb/.. -I..
-I/home/simark/src/binutils-gdb/gdb/../libbacktrace/ -I../libbacktrace/ 
-DTUI=1    -I/usr/include/guile/2.0 -pthread  -I/usr/include/python3.9
-I/usr/include/python3.9   -I/home/simark/src/binutils-gdb/gdb/.. -pthread 
-Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch
-Wno-char-subscripts -Wempty-body -Wno-sign-compare -Wno-mismatched-tags
-Wno-error=deprecated-register -Wsuggest-override -Wdeprecated-copy
-Wdeprecated-copy-dtor -Wredundant-move -Wmissing-declarations
-Wmissing-prototypes -Wformat -Wformat-nonliteral -Werror -g3 -O0
-D_GLIBCXX_DEBUG=1 -ferror-limit=1   -c -o unittests/string_view-selftests.o
-MT unittests/string_view-selftests.o -MMD -MP -MF
unittests/.deps/string_view-selftests.Tpo
/home/simark/src/binutils-gdb/gdb/unittests/string_view-selftests.c

I gave the gcc version, but the problem is actually when compiling with clang,
so here's the clang version:

$ clang++ --version
clang version 12.0.1

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug build/28413] string_view-selftests.c build error on macOS
  2021-10-04  8:54 [Bug build/28413] New: string_view-selftests.c build error on macOS lienze2010 at hotmail dot com
                   ` (7 preceding siblings ...)
  2021-10-06 13:03 ` simark at simark dot ca
@ 2022-02-11 13:11 ` levraiphilippeblain at gmail dot com
  2022-10-18 13:48 ` lienze at sourceware dot org
                   ` (4 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: levraiphilippeblain at gmail dot com @ 2022-02-11 13:11 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=28413

Philippe Blain <levraiphilippeblain at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |levraiphilippeblain at gmail dot c
                   |                            |om

--- Comment #9 from Philippe Blain <levraiphilippeblain at gmail dot com> ---
I can confirm the original build error reported by Enze Li (fdopen on macOS)
still occurs for current master with both (macOS 10.11 + clang 13) and (macOS
10.15 + clang 12) [1].

The patch sent to gnulib (link in [2] above) was not well received, and Bruno
indicated that gnulib does not support '-Werror' [3], which is automatically
applied for GDB builds from Git if I'm not mistaken. 

I'm not sure of what could be done to fix the issue... 

It seems weird that gnulib issues a warning for a system include (here libc++),
as this would be outside the control of projects using gnulib, so maybe it
could be disabled somehow for system includes ?

[1]
https://github.com/phil-blain/binutils-gdb/runs/5145831559?check_suite_focus=true#step:5:4227
[2] https://sourceware.org/bugzilla/show_bug.cgi?id=28413#c2
[3] https://lists.gnu.org/archive/html/bug-gnulib/2021-10/msg00005.html

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug build/28413] string_view-selftests.c build error on macOS
  2021-10-04  8:54 [Bug build/28413] New: string_view-selftests.c build error on macOS lienze2010 at hotmail dot com
                   ` (8 preceding siblings ...)
  2022-02-11 13:11 ` levraiphilippeblain at gmail dot com
@ 2022-10-18 13:48 ` lienze at sourceware dot org
  2022-11-15  4:00 ` research_trasio at irq dot a4lg.com
                   ` (3 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: lienze at sourceware dot org @ 2022-10-18 13:48 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=28413

--- Comment #10 from Enze Li <lienze at sourceware dot org> ---
FTR, a proposed patch posted here:
https://sourceware.org/pipermail/gdb-patches/2022-September/191861.html

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug build/28413] string_view-selftests.c build error on macOS
  2021-10-04  8:54 [Bug build/28413] New: string_view-selftests.c build error on macOS lienze2010 at hotmail dot com
                   ` (9 preceding siblings ...)
  2022-10-18 13:48 ` lienze at sourceware dot org
@ 2022-11-15  4:00 ` research_trasio at irq dot a4lg.com
  2022-11-15 13:43 ` lienze at sourceware dot org
                   ` (2 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: research_trasio at irq dot a4lg.com @ 2022-11-15  4:00 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=28413

Tsukasa OI <research_trasio at irq dot a4lg.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |research_trasio at irq dot a4lg.co
                   |                            |m

--- Comment #11 from Tsukasa OI <research_trasio at irq dot a4lg.com> ---
A fix to this is upstreamed as commit a5b6e43669b7.
https://sourceware.org/git/?p=binutils-gdb.git;a=commit;h=a5b6e43669b78729d2ef78d668e19bac2b11197d

I hope someone who owns the modern Mac should test it whether this issue is
really resolved by this commit.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug build/28413] string_view-selftests.c build error on macOS
  2021-10-04  8:54 [Bug build/28413] New: string_view-selftests.c build error on macOS lienze2010 at hotmail dot com
                   ` (10 preceding siblings ...)
  2022-11-15  4:00 ` research_trasio at irq dot a4lg.com
@ 2022-11-15 13:43 ` lienze at sourceware dot org
  2022-11-15 13:44 ` lienze at sourceware dot org
  2022-11-15 13:47 ` vries at gcc dot gnu.org
  13 siblings, 0 replies; 15+ messages in thread
From: lienze at sourceware dot org @ 2022-11-15 13:43 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=28413

--- Comment #12 from Enze Li <lienze at sourceware dot org> ---
(In reply to Tsukasa OI from comment #11)
> A fix to this is upstreamed as commit a5b6e43669b7.
> https://sourceware.org/git/?p=binutils-gdb.git;a=commit;
> h=a5b6e43669b78729d2ef78d668e19bac2b11197d
> 
> I hope someone who owns the modern Mac should test it whether this issue is
> really resolved by this commit.

It works well!  Thanks for doing this.

I'll mark this bug as RESOLVED.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug build/28413] string_view-selftests.c build error on macOS
  2021-10-04  8:54 [Bug build/28413] New: string_view-selftests.c build error on macOS lienze2010 at hotmail dot com
                   ` (11 preceding siblings ...)
  2022-11-15 13:43 ` lienze at sourceware dot org
@ 2022-11-15 13:44 ` lienze at sourceware dot org
  2022-11-15 13:47 ` vries at gcc dot gnu.org
  13 siblings, 0 replies; 15+ messages in thread
From: lienze at sourceware dot org @ 2022-11-15 13:44 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=28413

Enze Li <lienze at sourceware dot org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |FIXED
             Status|UNCONFIRMED                 |RESOLVED

--- Comment #13 from Enze Li <lienze at sourceware dot org> ---
Fixed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug build/28413] string_view-selftests.c build error on macOS
  2021-10-04  8:54 [Bug build/28413] New: string_view-selftests.c build error on macOS lienze2010 at hotmail dot com
                   ` (12 preceding siblings ...)
  2022-11-15 13:44 ` lienze at sourceware dot org
@ 2022-11-15 13:47 ` vries at gcc dot gnu.org
  13 siblings, 0 replies; 15+ messages in thread
From: vries at gcc dot gnu.org @ 2022-11-15 13:47 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=28413

Tom de Vries <vries at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |13.1

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2022-11-15 13:47 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-04  8:54 [Bug build/28413] New: string_view-selftests.c build error on macOS lienze2010 at hotmail dot com
2021-10-04 12:18 ` [Bug build/28413] " simark at simark dot ca
2021-10-04 14:33 ` vries at gcc dot gnu.org
2021-10-04 14:46 ` vries at gcc dot gnu.org
2021-10-04 15:13 ` simark at simark dot ca
2021-10-06  0:11 ` bruno at clisp dot org
2021-10-06  0:19 ` simark at simark dot ca
2021-10-06 12:32 ` bruno at clisp dot org
2021-10-06 13:03 ` simark at simark dot ca
2022-02-11 13:11 ` levraiphilippeblain at gmail dot com
2022-10-18 13:48 ` lienze at sourceware dot org
2022-11-15  4:00 ` research_trasio at irq dot a4lg.com
2022-11-15 13:43 ` lienze at sourceware dot org
2022-11-15 13:44 ` lienze at sourceware dot org
2022-11-15 13:47 ` vries at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).