diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-03-21 17:40:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-21 17:40:20 +0100 |
commit | bb69dfca17913faf3972fc5cb53f332767c7ae20 (patch) | |
tree | b34a2983069cf74c9ef139ef57aa532e969e655e /thirdparty/thekla_atlas/poshlib/posh.h | |
parent | baa092e99dc0dcf39362c4ce7086ea92095f9224 (diff) | |
parent | cd63e699ca113ce2a45c3437c5430a06d51adf4d (diff) |
Merge pull request #17658 from bkeys/update_thekla
Updated thekla_atlas to support arm64
Diffstat (limited to 'thirdparty/thekla_atlas/poshlib/posh.h')
-rw-r--r-- | thirdparty/thekla_atlas/poshlib/posh.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/thirdparty/thekla_atlas/poshlib/posh.h b/thirdparty/thekla_atlas/poshlib/posh.h index c3efe26a2d..3038297b39 100644 --- a/thirdparty/thekla_atlas/poshlib/posh.h +++ b/thirdparty/thekla_atlas/poshlib/posh.h @@ -498,6 +498,11 @@ Metrowerks: # define POSH_CPU_STRING "ARM" #endif +#if defined AARCH64 || defined __aarch64__ || defined _AARCH64 +# define POSH_CPU_STRONGARM 1 +# define POSH_CPU_STRING "AARCH64" +#endif + #if defined mips || defined __mips__ || defined __MIPS__ || defined _MIPS # define POSH_CPU_MIPS 1 # if defined _R5900 |