You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The immediate cause of the failure is that the Android libc likely doesn't have rindex.
But really, we shouldn't be compiling this particular package on Android at all, as you want to compile this on the host. We just don't have a good way to express that in our package.xml.
For now, I'm going to mark this as 'backlog' since Android isn't a supported platform.
@Chris-166 I met the same issue, and I modified workspace/src/build/uncrustify_vendor/uncrustify-0.72.0-prefix/src/uncrustify-0.72.0/src/log_rules.cpp:51 .
from: where = rindex(func, ':');
to: where = strrchr(func, ':');
after that, the package 'uncrustify_vendor' could be built sucessfully...
commit ec8f8b4 (HEAD -> humble, tag: 2.0.2, origin/humble)
The text was updated successfully, but these errors were encountered: