-
Notifications
You must be signed in to change notification settings - Fork 7
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
Fix include paths for wasm build #395
Conversation
Current dependencies on/for this PR:
This comment was auto-generated by Graphite. |
Codecov Report
@@ Coverage Diff @@
## nick/fix-beta-clippy #395 +/- ##
========================================================
+ Coverage 88.33% 88.42% +0.09%
========================================================
Files 40 40
Lines 5639 5633 -6
========================================================
Hits 4981 4981
+ Misses 658 652 -6
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
e5f34b5
to
be4b329
Compare
Previously the sys crates were using the vendored headers, but not the vendored `tlibc` directory. This would result in errors relating to `time.h` when building the sys crates on some platforms. Now the vendored `tlibc` is included when building the sys crates.
be4b329
to
8e0d16a
Compare
Fix missing
tlibc
include directory for sys cratesPreviously the sys crates were using the vendored headers, but not the
vendored
tlibc
directory. This would result in errors relating totime.h
when building the sys crates on some platforms. Now thevendored
tlibc
is included when building the sys crates.