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

[ENH] Better diagnostic message for fatal error: ios: No such file or directory — require usage of C++ #6560

Open
user202729 opened this issue Dec 11, 2024 · 0 comments

Comments

@user202729
Copy link

Is your feature request related to a problem? Please describe.

Currently, if a code uses except + or something similar, the generated code will have #include "ios" which causes a compilation failure with fatal error: ios: No such file or directory error message, which is confusing.

#1910 sagemath/sage#39046 (comment)

Describe the solution you'd like.

We modify the generated code to say e.g.

#ifdef __cplusplus
#include "ios"
#else
#error "C++ is required to compile this file."
#endif

Describe alternatives you've considered.

No response

Additional context

No response

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

No branches or pull requests

1 participant