On Sat, Jan 7, 2023 at 1:08 AM Khem Raj <raj.k...@gmail.com> wrote:

> off_t is always 64bit on musl regardless of 32bit or 64bit
> architectures. autoconf has AC_SYS_LARGEFILE to detect correct off_t
> size but it only work with glibc since it defines feature macros
> _FILE_OFFSET_BITS=64 and _LARGEFILE_SOURCE but these macros are
> not used on musl headers.
>
> Signed-off-by: Khem Raj <raj.k...@gmail.com>
> Cc: Nicolas Dechesne <nicolas.deche...@linaro.org>
>

Thanks. It fixes the build issue in e2fsprog I reported earlier.


> ---
>  meta/site/common-musl | 2 ++
>  1 file changed, 2 insertions(+)
>
> diff --git a/meta/site/common-musl b/meta/site/common-musl
> index 86aed4a38c..23e50ef749 100644
> --- a/meta/site/common-musl
> +++ b/meta/site/common-musl
> @@ -15,6 +15,8 @@
> ac_cv_func_posix_getgrgid_r=${ac_cv_func_posix_getgrgid_r=yes}
>  ac_cv_func_getaddrinfo=${ac_cv_func_getaddrinfo=yes}
>  ac_cv_func_mmap_fixed_mapped=${ac_cv_func_mmap_fixed_mapped=yes}
>  ac_cv_func_strtod=${ac_cv_func_strtod=yes}
> +# off_t is always 64bit on musl systems
> +ac_cv_sys_file_offset_bits=${ac_cv_sys_file_offset_bits=64}
>
>  # glib
>  glib_cv_strlcpy=${glib_cv_strlcpy=no}
> --
> 2.39.0
>
>
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#175616): 
https://lists.openembedded.org/g/openembedded-core/message/175616
Mute This Topic: https://lists.openembedded.org/mt/96105410/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-

Reply via email to