Due to a change in GCC 10 (https://wiki.gentoo.org/wiki/Gcc_10_porting_notes/fno_common), compilation of target test_mac throws many multiple definition of ' ' first defined here errors when trying to link.
This happened to me as current debian testing uses GCC 10.
Setting the compile flag -fcommon for gcc fixes the errors, but is only rated as a workaround in the link mentioned above.
Check which changes we have to perform to enable error-free build with -fno-common and implement them.
Due to a change in GCC 10 (https://wiki.gentoo.org/wiki/Gcc_10_porting_notes/fno_common), compilation of target
test_mac
throws manymultiple definition of ' ' first defined here
errors when trying to link. This happened to me as current debian testing uses GCC 10.Setting the compile flag -fcommon for gcc fixes the errors, but is only rated as a workaround in the link mentioned above.
Check which changes we have to perform to enable error-free build with -fno-common and implement them.