-
Notifications
You must be signed in to change notification settings - Fork 255
glaze: add v5.5.2 #2250
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
base: master
Are you sure you want to change the base?
glaze: add v5.5.2 #2250
Conversation
drafting because im running into some issues trying to use it locally |
|
||
glaze_dep = declare_dependency( | ||
include_directories: 'include', | ||
compile_args: '-std=c++23', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is most definitely not allowed. It is both compiler specific and clashes with the builtin standard version option.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
meson does not support c++23 when specifying a default version, and glaze will not build unless it is on c++23. also, not to mention all standard compilers (llvm, gcc, msvc, etc.) support this flag and the way it's formatted
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
He's saying having it a part of glaze_dep
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Marking "request changes" for -std
in glaze_dep
.
couldn't sanity check on my local copy but i tested with gcc on Windows 11 and Ubuntu 13 (WSL)