-
Notifications
You must be signed in to change notification settings - Fork 13k
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
replace POSIX glob implementation with an internal implementation #6100
Comments
Android dose not support glob also |
bors
added a commit
that referenced
this issue
May 5, 2013
transitional patch to resolve compile/link failure on android after #6161 landed, I've encountered below errors since android does not support glob in libc. /opt/ndk_standalone/bin/../lib/gcc/arm-linux-androideabi/4.6/../../../../arm-linux-androideabi/bin/ld: /home/yichoi/rust_work/build/x86_64-unknown-linux-gnu/stage1/lib/rustc/arm-linux-androideabi/lib/libcore-c3ca5d77d81b46c1-0.7-pre.so: error: undefined reference to 'glob' /opt/ndk_standalone/bin/../lib/gcc/arm-linux-androideabi/4.6/../../../../arm-linux-androideabi/bin/ld: /home/yichoi/rust_work/build/x86_64-unknown-linux-gnu/stage1/lib/rustc/arm-linux-androideabi/lib/libcore-c3ca5d77d81b46c1-0.7-pre.so: error: undefined reference to 'globfre Since android does not have `glob.h`, `glob_t` definition comes from https://groups.google.com/forum/?fromgroups=#!topic/android-ndk/vSH6MWPD0Vk #6100 should be resolved.
Still relevant |
I am currently rewriting glob in rust. |
Dretch
added a commit
to Dretch/rust
that referenced
this issue
Aug 1, 2013
Dretch
added a commit
to Dretch/rust
that referenced
this issue
Sep 5, 2013
@Dretch did this, see |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This will be necessary for Windows support, as well as ensuring consistency across platforms and allowing more room for expansion of functionality. (In preparation for #5832.)
The text was updated successfully, but these errors were encountered: