diff options
author | Andy Polyakov <appro@openssl.org> | 2015-09-23 16:43:55 +0200 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2015-09-25 13:39:02 +0200 |
commit | a93d3e06a9849deeceadf1b51c10492ae77c43eb (patch) | |
tree | 6413de6b858417116e6b5f7e5c89808f0dfd4b71 /Configurations | |
parent | Allow ILP32 compilation in AArch64 assembly pack. (diff) | |
download | openssl-a93d3e06a9849deeceadf1b51c10492ae77c43eb.tar.xz openssl-a93d3e06a9849deeceadf1b51c10492ae77c43eb.zip |
Configurations: add linux-arm64ilp32 target.
Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'Configurations')
-rw-r--r-- | Configurations/10-main.conf | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Configurations/10-main.conf b/Configurations/10-main.conf index 3230d86040..e612812052 100644 --- a/Configurations/10-main.conf +++ b/Configurations/10-main.conf @@ -582,6 +582,13 @@ inherit_from => [ "linux-generic64", asm("aarch64_asm") ], perlasm_scheme => "linux64", }, + "linux-arm64ilp32" => { # https://wiki.linaro.org/Platform/arm64-ilp32 + inherit_from => [ "linux-generic32", asm("aarch64_asm") ], + cflags => "-mabi=ilp32 -Wall" + bn_ops => "SIXTY_FOUR_BIT RC4_CHAR RC4_CHUNK DES_INT DES_UNROLL BF_PTR", + perlasm_scheme => "linux64", + shared_ldflag => "-mabi=ilp32", + }, "linux-mips32" => { # Configure script adds minimally required -march for assembly |