-
Notifications
You must be signed in to change notification settings - Fork 57
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
Could not complile under FreeBSD 10.3, Clang 3.4.1, Boost 1.55: #129
Comments
Blackhole can handle both signed int64 and unsigned integers, but std::chrono representation type is long long, which may vary depending on architecture where building occurs. Thus, it may lead to ambiguous integer promotion when it's time to format. This commit does explicit cast to resolve ambiguity. This should fix #126 and #129.
Actually it's the same error as in #126. Check again please, I've updated the PR. |
Yes. Other error:
Full log:
|
Well, this may be tricky. I'm not sure of FreeBSD pthread support, because this function is not portable at all. Can you just try to add |
I did it. Same error. I found: http://www.mzan.com/article/2369738-can-i-set-the-name-of-a-thread-in-pthreads-linux.shtml
FreeBSD contains pthread_set_name_np function only:
|
Is there anything with similar functionality? |
LLDB (from LLVM) use the workaround for FreeBSD: It is used here: It is implemented here: |
Okay, it takes significant time for me to configure FreeBSD virtual machine to be able to declare its support. Since, PR's are welcome, you can speedup the process. |
Could not complile under FreeBSD 10.3, Clang 3.4.1, Boost 1.55
Branch issue/126/fix-long-long-upgrade
New error is:
Full log
The text was updated successfully, but these errors were encountered: