Issue with dllexport/dllimport inline function

2022-10-10 Thread Xavier Claessens via Gcc
Hi, I'm trying to dllexport/dllimport an inline function, but I get this warning: ``` inline function ‘g_strcmp0’ declared as dllimport: attribute ignored [- Wattributes] ``` This is when cross compiling my code on Linux for Windows using mingw. The relevant code is ``` GLIB_API inline int

Error: attempt to get value of unresolved symbol `L0'

2022-10-10 Thread Pali Rohár via Gcc
Hello! During development and debugging of U-Boot bootloader I got strange error from ARM GNU assembler, which looks like a bug in binutils or gcc. Below is simplified code which can trigger it: $ cat test.S kernoffs: .word KERNEL_OFFSET - (. - CONFIG_SYS_TEXT_BASE) $ arm-linux-gnueabi-

Re: [PATCH RESEND 0/1] RFC: P1689R5 support

2022-10-10 Thread Jason Merrill via Gcc
On 10/4/22 11:11, Ben Boeckel wrote: This patch adds initial support for ISO C++'s [P1689R5][], a format for describing C++ module requirements and provisions based on the source code. This is required because compiling C++ with modules is not embarrassingly parallel and need to be ordered to ens

Re: [PATCH RESEND 1/1] p1689r5: initial support

2022-10-10 Thread Jason Merrill via Gcc
On 10/4/22 11:12, Ben Boeckel wrote: This patch implements support for [P1689R5][] to communicate to a build system the C++20 module dependencies to build systems so that they may build `.gcm` files in the proper order. Thanks! Support is communicated through the following three new flags: -

Re: Makeinfo generates wrong link

2022-10-10 Thread Richard Stallman via Gcc
[[[ To any NSA and FBI agents reading my email: please consider]]] [[[ whether defending the US Constitution against all enemies, ]]] [[[ foreign or domestic, requires you to follow Snowden's example. ]]] Does this replacement text give the right results? @itemize @bullet @item Some macr

Re: Issue with dllexport/dllimport inline function

2022-10-10 Thread LIU Hao via Gcc
在 2022/10/11 00:39, Xavier Claessens via Gcc 写道: Is there a trick to get that working with GCC? Or should that issue be reported somewhere? Probably. This Microsoft `dllimport` with `inline` has the same semantics with GNU `extern inline`, so may be it's an alternative. So instead of `

Re: Error: attempt to get value of unresolved symbol `L0'

2022-10-10 Thread Richard Biener via Gcc
On Mon, Oct 10, 2022 at 7:19 PM Pali Rohár via Gcc wrote: > > Hello! > > During development and debugging of U-Boot bootloader I got strange > error from ARM GNU assembler, which looks like a bug in binutils or gcc. > > Below is simplified code which can trigger it: > > $ cat test.S > kernoffs