Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ACE6] macOS: sizeof long double is different on ARM64 #2143

Merged
merged 1 commit into from
Oct 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions ACE/ace/config-macosx-leopard.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,7 @@
#endif /* ! __ACE_INLINE__ */

#if !defined (ACE_SIZEOF_LONG_DOUBLE)
# if (__GNUC__ == 3 && __GNUC_MINOR__ == 3)
// Size of long double in GCC 3.3 is 8.
# define ACE_SIZEOF_LONG_DOUBLE 8
# else // Else, the compiler is GCC4
// For GCC4, the size is 16.
# define ACE_SIZEOF_LONG_DOUBLE 16
# endif // GCC 3.3
# define ACE_SIZEOF_LONG_DOUBLE __SIZEOF_LONG_DOUBLE__
#endif // ACE_SIZEOF_LONG_DOUBLE

#if defined (__GNUG__)
Expand Down
8 changes: 1 addition & 7 deletions ACE/ace/config-macosx-tiger.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,7 @@
#endif /* ! __ACE_INLINE__ */

#if !defined (ACE_SIZEOF_LONG_DOUBLE)
# if (__GNUC__ == 3 && __GNUC_MINOR__ == 3)
// Size of long double in GCC 3.3 is 8.
# define ACE_SIZEOF_LONG_DOUBLE 8
# else // Else, the compiler is GCC4
// For GCC4, the size is 16.
# define ACE_SIZEOF_LONG_DOUBLE 16
# endif // GCC 3.3
# define ACE_SIZEOF_LONG_DOUBLE __SIZEOF_LONG_DOUBLE__
#endif // ACE_SIZEOF_LONG_DOUBLE

#if defined (__GNUG__)
Expand Down