mirror of
https://github.com/encounter/bdwgc.git
synced 2026-03-30 10:57:55 -07:00
Add AArch64-32 target support
(Implement boehm-gc for AARCH64:ILP32) * include/private/gcconfig.h (CPP_WORDSZ, ALIGNMENT): Correct for AARCH64:ILP32.
This commit is contained in:
committed by
Ivan Maidanski
parent
bf62552626
commit
b399b13b9e
@@ -2020,9 +2020,14 @@
|
||||
# endif
|
||||
|
||||
# ifdef AARCH64
|
||||
# define CPP_WORDSZ 64
|
||||
# define MACH_TYPE "AARCH64"
|
||||
# define ALIGNMENT 8
|
||||
# ifdef __ILP32__
|
||||
# define CPP_WORDSZ 32
|
||||
# define ALIGNMENT 4
|
||||
# else
|
||||
# define CPP_WORDSZ 64
|
||||
# define ALIGNMENT 8
|
||||
# endif
|
||||
# ifndef HBLKSIZE
|
||||
# define HBLKSIZE 4096
|
||||
# endif
|
||||
|
||||
Reference in New Issue
Block a user