-
Notifications
You must be signed in to change notification settings - Fork 469
A few updates to enable building on Raspberry PI/Ubuntu 16.04 #318
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
src/source.c
Outdated
@@ -2023,15 +2023,15 @@ static inline unsigned long | |||
_dispatch_source_timer_data(dispatch_source_t ds, dispatch_unote_t du) | |||
{ | |||
dispatch_timer_source_refs_t dr = du._dt; | |||
unsigned long data, prev, clear_prev = 0; | |||
unsigned long long data, prev, clear_prev = 0; |
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 should be uint64_t
This looks good, please squash the branch so that I can merge it. |
@swift-ci test |
Done, I think? Let me know if I didn't do that right. |
Nope it says 4 commits, should be just the one |
|
Okay, the 'git rebase -i origin master' provided just a single 'noop' entry. So I rebased like normal but used your pick/fixup instruction and it looks like that got it right. Sorry 'bout this. It's not your job to teach git. Appreciate it, though. |
A few updates to enable building on Raspberry PI/Ubuntu 16.04 Signed-off-by: Daniel A. Steffen <dsteffen@apple.com>
I ran into some compilation failures while building on the Raspberry PI Model 3. These issues were simply type conversion warnings that resulted in errors (due to -Werror in the compilation settings.)
There may be more related issues, but what is attached is the minimal set of changes required to get it to build for me.
My setup: Raspberry PI 3 Model B
My apologies for not providing the exact compilation error output. It would take hours to produce those errors. If they are needed, I can restart that process to do so.