Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix 2 functions calls with HIDDENSTRLEN #20

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

jamesjer
Copy link

The Fedora project is in the process of rebuilding all packages with GCC 15, which defaults to the C23 standard. One major change in C23 is that declarations of the form type f(); no longer mean "a function that returns type with an unspecified parameter list". Now such a declaration means "a function that returns type with an empty parameter list"; i.e., it is the same as type f(void);. This has caused quite a few packages to fail to build, including the Csdp package. While working with the sources to resolve this issue, one thing I did was to replace the BLAS and LAPACK function declarations at the bottom of include/declarations.h with the appropriate #include directives. This turned up two cases where function calls failed to match the declarations. We use a library where HIDDENSTRLEN needs to be defined (flexiblas). This PR fixes both cases.

@CLAassistant
Copy link

CLAassistant commented Jan 16, 2025

CLA assistant check
All committers have signed the CLA.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants