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
configure.ac:82: warning: AC_C_BIGENDIAN should be used with AC_CONFIG_HEADERS
Reason is AC_C_BIGENDIAN wants to define WORDS_BIGENDIAN (which we use), but since we do not use the normal config.h anymore, this is not possible.
This at least affects the Wii version and Apple universal builds (uncommon nowadays).
The text was updated successfully, but these errors were encountered:
/* Define if building universal (internal helper macro) *//* #undef AC_APPLE_UNIVERSAL_BUILD *//* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most significant byte first (like Motorola and SPARC, unlike Intel). */#if defined AC_APPLE_UNIVERSAL_BUILD# if defined __BIG_ENDIAN__# defineWORDS_BIGENDIAN 1
# endif#else# ifndefWORDS_BIGENDIAN/* # undef WORDS_BIGENDIAN */# endif#endif
While configuring, this warning is shown:
Reason is
AC_C_BIGENDIAN
wants to defineWORDS_BIGENDIAN
(which we use), but since we do not use the normalconfig.h
anymore, this is not possible.This at least affects the Wii version and Apple universal builds (uncommon nowadays).
The text was updated successfully, but these errors were encountered: