This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH][aarch64] Fix the big endian loader name


AArch64 uses arch specific configure.ac fragment to set HAVE_AARCH64_BE
in config.h so later the loader name can be decided based on this macro.

However config.h.in needs an appropriate line to generate the macro.

I think the loader name should be managed in a simpler way for future
abi variants.

Changelog:

2015-03-06  Szabolcs Nagy  <szabolcs.nagy@arm.com>

	* config.h.in (HAVE_AARCH64_BE): Add.
diff --git a/config.h.in b/config.h.in
index 695ca35..73ddb9c 100644
--- a/config.h.in
+++ b/config.h.in
@@ -260,4 +260,7 @@
 /* The PowerPC64 ELFv2 ABI is being used.  */
 #undef HAVE_ELFV2_ABI
 
+/* AArch64 big endian ABI */
+#undef HAVE_AARCH64_BE
+
 #endif

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]