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 _______________________________________________ svn-src-all@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"