On 2020-09-01 11:46, Bob Eager wrote:
Almost certainly the -fno-common problem with clang 11.
This now defaults to -fno-common, which causes multiply defined symbols
at link time if something is declared global in more than one module
(instead of extern in all but one module). There is a similar
Almost certainly the -fno-common problem with clang 11.
This now defaults to -fno-common, which causes multiply defined symbols
at link time if something is declared global in more than one module
(instead of extern in all but one module). There is a similar problem
with gcc.
Declaring -fno-commo