The FreeBSD/Sparc64 port will also have an __ELF_WORD_SIZE of 64.

This commit is contained in:
Steve Price 2000-04-02 20:22:04 +00:00
parent 3e6ac25bd6
commit b7ea7f1260
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=58945
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@
#if defined(arch_i386)
#include <sys/elf32.h>
#define __ELF_WORD_SIZE 32
#elif defined(arch_alpha)
#elif defined(arch_alpha) || defined(arch_sparc64)
#include <sys/elf64.h>
#define __ELF_WORD_SIZE 64
#else

View File

@ -30,7 +30,7 @@
#if defined(arch_i386)
#define __ELF_WORD_SIZE 32
#include <sys/elf32.h>
#elif defined(arch_alpha)
#elif defined(arch_alpha) || defined(arch_sparc64)
#define __ELF_WORD_SIZE 64
#include <sys/elf64.h>
#endif