mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-06-22 20:05:39 +03:00
fix building for s390 systems
Checking for __s390x__ means you work on s390x, but not s390 (32bit) systems. So use __s390__ which works for both. With this, `make check` passes on s390. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
parent
88c222c8e9
commit
9f9897ad42
1 changed files with 1 additions and 1 deletions
|
|
@ -287,7 +287,7 @@ static const bool config_ivsalloc =
|
|||
# ifdef __powerpc__
|
||||
# define LG_QUANTUM 4
|
||||
# endif
|
||||
# ifdef __s390x__
|
||||
# ifdef __s390__
|
||||
# define LG_QUANTUM 4
|
||||
# endif
|
||||
# ifdef __SH4__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue