This is the mail archive of the binutils@sourceware.org mailing list for the binutils 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]

Re: PATCH: Fix compile time error building non-ELF targeted ARM ports,From: Nick Clifton <nickc@redhat.com>


Hi Daniel,

+ #ifdef OBJ_ELF
    if (EF_ARM_EABI_VERSION (meabi_flags) < EF_ARM_EABI_VER4)
      want_reloc = FALSE;
+ #endif

Hmm, should this be:


+ #ifdef OBJ_ELF
    if (EF_ARM_EABI_VERSION (meabi_flags) < EF_ARM_EABI_VER4)
+ #endif
      want_reloc = FALSE;

Yes, I think you are right. I will check this change in.


Cheers
  Nick



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