-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Add various strcase* functions and getline #1130
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
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @alexcrichton (or someone else) soon. If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes. Please see the contribution instructions for more information. |
It appears that the freebsd image used in CI lacks |
@gnzlbg https://www.freebsd.org/cgi/man.cgi?query=getline&apropos=0&sektion=0&manpath=FreeBSD+8.2-RELEASE&format=html indicates FreeBSD 8.0+ has getline, but only if you define |
@bors: r+ |
📋 Looks like this PR is still in progress, ignoring approval. Hint: Remove [WIP] from this PR's title when it is ready for review. |
The windows
Could you take a look? |
☔ The latest upstream changes (presumably #1129) made this pull request unmergeable. Please resolve the merge conflicts. |
I think it would be good to add these to |
I dug through https://github.com/redox-os/relibc and https://github.com/NuxiNL/cloudlibc and added all of these functions that I could find there, along with what I think is the right header support... |
Uh, so I think all the Travis failures are nothing to do with this branch e.g.
Can we kick it in some way to rebuild and try again? |
@bors: r+ |
💔 Test failed - status-travis |
@bors: try |
@bors: retry |
Add various strcase* functions and getline Adds * `strcasestr` * `strcasecmp` * `strncasecmp` * `getline` I *think* they're semi-universal, but shall see what CI pops up...
💔 Test failed - status-travis |
@bors: retry |
Add various strcase* functions and getline Adds * `strcasestr` * `strcasecmp` * `strncasecmp` * `getline` I *think* they're semi-universal, but shall see what CI pops up...
💔 Test failed - status-travis |
b05e058 is a bit of a hack, but I managed to hit (temporarily) one of the Travis issues locally and manually pulling the Docker images before building seemed to fix the problem |
@bors: r+ |
📌 Commit 0942070 has been approved by |
Good news: down to just 1 failure ;)
Pretty sure this still isn't due to this PR... |
Add various strcase* functions and getline Adds * `strcasestr` * `strcasecmp` * `strncasecmp` * `getline` I *think* they're semi-universal, but shall see what CI pops up...
💔 Test failed - status-travis |
@bors: retry |
@palfrey: 🔑 Insufficient privileges: not in try users |
@bors: retry |
Add various strcase* functions and getline Adds * `strcasestr` * `strcasecmp` * `strncasecmp` * `getline` I *think* they're semi-universal, but shall see what CI pops up...
☀️ Test successful - status-appveyor, status-travis |
Thank you! |
Adds
strcasestr
strcasecmp
strncasecmp
getline
I think they're semi-universal, but shall see what CI pops up...