Skip to content

Commit

Permalink
Fix build on ARMv8 64bit.
Browse files Browse the repository at this point in the history
I previously used the wrong variable (_ARCH64EL_ instead of
__ARCH64EL__).

BUG=33
  • Loading branch information
floitsch committed Dec 23, 2013
1 parent 6229232 commit e379559
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2013-12-23:
Fix compilation for ARMv8 64bit (used wrong define).

2013-11-09:
Tagged v1.0.2.
Backport:
Expand Down
2 changes: 1 addition & 1 deletion src/utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
defined(__sparc__) || defined(__sparc) || defined(__s390__) || \
defined(__SH4__) || defined(__alpha__) || \
defined(_MIPS_ARCH_MIPS32R2) || \
defined(_AARCH64EL_)
defined(__AARCH64EL__)
#define DOUBLE_CONVERSION_CORRECT_DOUBLE_OPERATIONS 1
#elif defined(_M_IX86) || defined(__i386__) || defined(__i386)
#if defined(_WIN32)
Expand Down

0 comments on commit e379559

Please sign in to comment.