**Fix:** Resolve build errors on modern GCC (13+) by fixing C linker and C++ header issues. #263
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary of the Issue and Fixes
This contribution addresses two fundamental issues preventing the project from building successfully on systems using modern GNU Compiler Collection (GCC) versions, such as GCC 13+.
stdout
,logic_error
undefined)<cstdio>
,<cerrno>
,<stdexcept>
) to relevant C++ files to resolve undefined symbol errors.multiple definition of 'glava_abort'
)glava_abort
andglava_return
were declared withoutextern
inglava.h
. In C, this results in a redundant definition of the variables in every.c
file that includes the header.extern
keyword to the declarations inglava.h
and ensured the definition (the actual instance) remained in only one source file (e.g.,glava.c
), thereby resolving the "multiple definition" linker bug.