Zint not compiling in newer versions of debian [duplicate]
Solution 1:
Multiple definitions of global variables of the same type with the same name are permitted in gcc if the source is built with -fcommon
. From the gcc manual:
The -fcommon places uninitialized global variables in a common block. This allows the linker to resolve all tentative definitions of the same variable in different compilation units to the same object, or to a non-tentative definition. This behavior is inconsistent with C++, and on many targets implies a speed and code size penalty on global variable references. It is mainly useful to enable legacy code to link without errors.
The default of pre-10 gcc used to be -fcommon
but that has been changed to -fno-common
in gcc 10. From the gcc 10 release notes:
GCC now defaults to -fno-common. As a result, global variable accesses are more efficient on various targets. In C, global variables with multiple tentative definitions now result in linker errors. With -fcommon such definitions are silently merged during linking.
This explains why the build fails in your environment using gcc 10 but was able to build with older gcc versions. Your options are to either add -fcommon
into the build or use a gcc version prior to 10.
Or as pointed out by @JohnBollinger another option is to fix the code to remove those multiple definitions and make the code conform strictly to the C standard.