-
-
Notifications
You must be signed in to change notification settings - Fork 300
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
segfault with clang #77
Comments
Try to compile with I got same crash with standard ConsoleApp example, and when I compiled it with
Key words are:
My guess is there is some SIMD optimization somewhere, probably in Update: It was indeed an alignment problem. Speed hack that solves it is here: Not sure how to solve it properly, best I can think of is using |
@bombomby You're welcome! There was small problem with gcc.
Looks like at least gcc 8.3.0 do not align C stings literals by 8 (like |
repro case: https://github.com/malytomas/optick-test-clang
when compiling Optick and/or the application that uses Optick with clang++ on linux with debug symbols and enabled optimizations, the application crashes
The text was updated successfully, but these errors were encountered: