svn commit: r339353 - stable/11/gnu/usr.bin/binutils/libbfd
Ed Maste
emaste at FreeBSD.org
Sun Oct 14 01:16:49 UTC 2018
Author: emaste
Date: Sun Oct 14 01:16:48 2018
New Revision: 339353
URL: https://svnweb.freebsd.org/changeset/base/339353
Log:
MFC r336027 (andrew): Teach binutils that arm64 is a 64bit architecture.
This is needed to cross build from arm64 to other architectures that
use binutils.
Modified:
stable/11/gnu/usr.bin/binutils/libbfd/bfd.h
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/gnu/usr.bin/binutils/libbfd/bfd.h
==============================================================================
--- stable/11/gnu/usr.bin/binutils/libbfd/bfd.h Sun Oct 14 00:29:57 2018 (r339352)
+++ stable/11/gnu/usr.bin/binutils/libbfd/bfd.h Sun Oct 14 01:16:48 2018 (r339353)
@@ -85,7 +85,7 @@ extern "C" {
#define BFD_HOST_64BIT_LONG 0
#define BFD_HOST_64_BIT long long
#define BFD_HOST_U_64_BIT unsigned long long
-#elif defined(__alpha__) || defined(__sparc64__) || defined(__amd64__)
+#elif defined(__alpha__) || defined(__sparc64__) || defined(__amd64__) || defined(__aarch64__)
#define BFD_HOST_64BIT_LONG 1
#define BFD_HOST_64_BIT long
#define BFD_HOST_U_64_BIT unsigned long
More information about the svn-src-stable
mailing list