-
Notifications
You must be signed in to change notification settings - Fork 232
Small Build System Cleanup #225
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
Conversation
…g on cmake quirks.
…der files, instead ignore them through compiler options. This doesn't leak the warning ignores to customers.
😄 |
|
|
||
| // Make sure all components are set to the same value | ||
| #if EZ_SIMD_IMPLEMENTATION == EZ_SIMD_IMPLEMENTATION_SSE | ||
| #if (EZ_SIMD_IMPLEMENTATION == EZ_SIMD_IMPLEMENTATION_SSE) && EZ_ENABLED(EZ_COMPILER_MSVC) |
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.
Why is this stuff MSVC specific?
@C-Core
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.
Only MSVC defines __m128 as a union. On clang and gcc __m128 is a opaque data type with no members. Thats why all these tests only work on msvc.
|
Why do you need to check in a binary file (.o) ? |
jankrassnigg
left a comment
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.
Awesome! This is a really great improvement!
Adding this file was unintentional. Will remove. |
…same casing as in original source)
Uh oh!
There was an error while loading. Please reload this page.