-
-
Notifications
You must be signed in to change notification settings - Fork 69
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
Doesn't build on clang due to --no-gnu-unique #279
Comments
does clang have an analogous option or does it just not create unique? |
best I could guess is -fcommon/-fno-common (doc)
but fwiw just compiling without --no-gnu-unique (with or without -fcommon/-fno-common) only errors out on hyprtrails with:
which seems fixable enough, with everything else just being warnings (full build log) |
no-gnu-unique fixes a problem where this happens:
|
regarding the build error yeah feel free to make a MR I dont use clang |
clang version:
Building with g++ instead of clang works, and removing --no-gnu-unique and then building with clang seems to work for the most part, though that build flag is probably there for a reason.
The text was updated successfully, but these errors were encountered: