-
Notifications
You must be signed in to change notification settings - Fork 54
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
FFI Sync Engine changes #223
Conversation
@scovich do you happen to know why the C define is missing in the codegen for |
I believe cbindgen tries to emit a single header that works no matter which features were selected (and uses
Most likely you just need to add |
@scovich ready for re-review! |
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.
nice thanks. just a couple small things
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.
one last small thing please!
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.
thanks for iterating! lgtm!
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.
Nice work, thanks!
Merged! Thanks for the contribution! |
Change list
Add sync engine cfg option to the ffi. This will allow us to build with local file paths only (mostly useful for testing).
How is this tested?
Changed
ffi-test.c
to build both a sync and default engine. It should pass both.Note This is a draft because I can't get the test to build right. For some reason, the codegenned c code isn't defining the
SYNC-ENGINE
flag. Any ideas @nicklanIssue
This addresses #199