Path: blob/main/crypto/openssl/Configurations/50-win-clang-cl.conf
34860 views
## -*- mode: perl; -*-1# Windows on Arm clang-cl targets.2#34my %targets = (5"VC-WIN64-CLANGASM-ARM" => {6inherit_from => [ "VC-noCE-common" ],7defines => add("_ARM_WINAPI_PARTITION_DESKTOP_SDK_AVAILABLE",8"OPENSSL_SYS_WIN_CORE"),9bn_ops => "SIXTY_FOUR_BIT RC4_CHAR",10multilib => "-arm64",11asm_arch => "aarch64",12AS => "clang-cl.exe",13ASFLAGS => "/nologo /Zi --target=arm64-pc-windows-msvc",14asflags => "/c",15asoutflag => "/Fo",16perlasm_scheme => "win64",17uplink_arch => 'armv8',18},19"VC-CLANG-WIN64-CLANGASM-ARM" => {20CC => "clang-cl",21inherit_from => [ "VC-noCE-common" ],22defines => add("_ARM_WINAPI_PARTITION_DESKTOP_SDK_AVAILABLE",23"OPENSSL_SYS_WIN_CORE"),24bn_ops => "SIXTY_FOUR_BIT RC4_CHAR",25multilib => "-arm64",26asm_arch => "aarch64",27CFLAGS => add("--target=arm64-pc-windows-msvc"),28AS => "clang-cl.exe",29ASFLAGS => "/nologo /Zi --target=arm64-pc-windows-msvc",30asflags => "/c",31asoutflag => "/Fo",32perlasm_scheme => "win64",33uplink_arch => 'armv8',34},35);363738