Skip to content

Commit

Permalink
Silence warning on AArch64 too
Browse files Browse the repository at this point in the history
Useless warning because it's silenced by default on all of their platforms
  • Loading branch information
tpoechtrager committed Feb 22, 2020
1 parent ae83e7f commit 2ac55b7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions cctools/libstuff/ofile.c
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,11 @@
static enum bool otool_first_ofile_map = TRUE;
#else /* !define(OTOOL) */

#if (!defined(m68k) && !defined(__i386__) && !defined(__x86_64__) && !defined(__ppc__) && !defined(__arm__))
/* cctools-port: Added && !defined(__arm64__) && !defined(__aarch64__) */
#if (!defined(m68k) && !defined(__i386__) && !defined(__x86_64__) && !defined(__ppc__) && !defined(__arm__) && !defined(__arm64__) && !defined(__aarch64__))
#define ALIGNMENT_CHECKS_ARCHIVE_64_BIT
static enum bool archive_64_bit_align_warning = FALSE;
#endif /* (!defined(m68k) && !defined(__i386__) && !defined(__x86_64__) && !defined(__ppc__) && !defined(__arm__)) */
#endif /* (!defined(m68k) && !defined(__i386__) && !defined(__x86_64__) && !defined(__ppc__) && !defined(__arm__) && !defined(__arm64__) && !defined(__aarch64__)) */

#endif /* OTOOL */

Expand Down

0 comments on commit 2ac55b7

Please sign in to comment.