diff options
| author | Marcel Moolenaar <marcel@FreeBSD.org> | 1999-11-12 16:53:58 +0000 |
|---|---|---|
| committer | Marcel Moolenaar <marcel@FreeBSD.org> | 1999-11-12 16:53:58 +0000 |
| commit | 2205071966973ecbc45b6282c40bd08248360e02 (patch) | |
| tree | 2c2dec6b3b7c967695c743e46873793f0b28bd49 /gnu/usr.bin/binutils/libbfd/alpha | |
| parent | 0d052386ba9f2ab5751c9d7176ecd7e396de65e0 (diff) | |
Notes
Diffstat (limited to 'gnu/usr.bin/binutils/libbfd/alpha')
| -rw-r--r-- | gnu/usr.bin/binutils/libbfd/alpha/bfd.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gnu/usr.bin/binutils/libbfd/alpha/bfd.h b/gnu/usr.bin/binutils/libbfd/alpha/bfd.h index 8ae43fe0256a..7bfdc946ec2d 100644 --- a/gnu/usr.bin/binutils/libbfd/alpha/bfd.h +++ b/gnu/usr.bin/binutils/libbfd/alpha/bfd.h @@ -1,3 +1,4 @@ +/* $FreeBSD$ */ /* Main header file for the bfd library -- portable access to object files. Copyright 1990, 91, 92, 93, 94, 95, 96, 97, 1998 Free Software Foundation, Inc. @@ -54,7 +55,11 @@ extern "C" { /* These two lines get substitutions done by commands in Makefile.in. */ #define BFD_VERSION "2.9.1" #define BFD_ARCH_SIZE 64 -#define BFD_HOST_64BIT_LONG 1 +#if defined(__i386__) +#define BFD_HOST_64BIT_LONG 0 +#else +#define BFD_HOST_64BIT_LONG 1 +#endif #if 0 #define BFD_HOST_64_BIT #define BFD_HOST_U_64_BIT |
