Re: pkg-fallout on one of the ports I maintain

2020-09-01 Thread Niclas Zeising
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

Re: pkg-fallout on one of the ports I maintain

2020-09-01 Thread Bob Eager
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