| Summary: | arm cross compiler error | ||
|---|---|---|---|
| Product: | Busybox | Reporter: | a3251453 |
| Component: | Other | Assignee: | unassigned |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | busybox-cvs |
| Priority: | P5 | ||
| Version: | 1.19.x | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Linux | ||
| Host: | Target: | ||
| Build: | |||
|
Description
a3251453
2011-09-08 15:13:54 UTC
Strange. On Android, we should avoid using it:
#if defined(ANDROID)
...
# undef HAVE_STRVERSCMP
...
#endif
#if defined(HAVE_STRVERSCMP) && HAVE_STRVERSCMP == 1
if (sort_opts == SORT_VERSION) {
dif = strverscmp(d1->name, d2->name);
} else
#endif
What libc do you use? If uclibc, what is its version?
I'd strengthen android check: -#if defined(ANDROID) +#if defined(ANDROID) || defined(__ANDROID__) http://busybox.net/downloads/fixes-1.19.2/busybox-1.19.2-android.patch Hope this will fix it... |