undefined reference to compareBigint
This error message means that the linker is unable to find a definition for the function compareBigint that is being used in your code.
Possible reasons for this error could be:
- The function
compareBiginthas not been defined or implemented in your code. - The function
compareBiginthas been defined, but not in a way that is compatible with the way it is being used in your code. - The function
compareBiginthas been defined in a separate source file, but that source file has not been included or linked properly.
To fix this error, you should check that the function compareBigint has been defined correctly and that all necessary header files and source files are included and linked properly in your code
原文地址: https://www.cveoy.top/t/topic/dIPN 著作权归作者所有。请勿转载和采集!