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
CoreCLR currently defines the minimum Android API level to be 21, since this is also the base level used by .NET for Android. While trying to build CoreCLR to target Android proper (and not linux-bionic), I ran into the issue of CoreCLR PAL sources using glob(3) which is available on Android only starting with API28.
The simple fix is to bump the minimum API requirement to 28, however this may limit the reach of CoreCLR on Android devices. If we don't want to do that, the glob(3) functionality would have to be implemented in-tree (or imported from another libc, for instance from musl or picolibc).
The text was updated successfully, but these errors were encountered:
CoreCLR currently defines the minimum Android API level to be 21, since this is also the base level used by .NET for Android. While trying to build CoreCLR to target Android proper (and not
linux-bionic
), I ran into the issue of CoreCLR PAL sources usingglob(3)
which is available on Android only starting with API28.The simple fix is to bump the minimum API requirement to 28, however this may limit the reach of CoreCLR on Android devices. If we don't want to do that, the
glob(3)
functionality would have to be implemented in-tree (or imported from another libc, for instance from musl or picolibc).The text was updated successfully, but these errors were encountered: