Browse Source

Don't pack structures on MIPS where unaligned access is not allowed

tags/v1.9.11-RC1
James Cowgill 8 years ago
parent
commit
39e984c38c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      common/jack/systemdeps.h

+ 1
- 1
common/jack/systemdeps.h View File

@@ -120,7 +120,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

#endif /* __APPLE__ || __linux__ || __sun__ || sun */

#if defined(__arm__) || defined(__aarch64__) || defined(__ppc__) || defined(__powerpc__)
#if defined(__arm__) || defined(__aarch64__) || defined(__mips__) || defined(__ppc__) || defined(__powerpc__)
#undef POST_PACKED_STRUCTURE
#define POST_PACKED_STRUCTURE
#endif /* __arm__ || __aarch64__ || __ppc__ || __powerpc__ */


Loading…
Cancel
Save