Path: blob/main/crypto/openssl/Configurations/50-masm.conf
34860 views
# We can't make commitment to supporting Microsoft assembler,1# because it would mean supporting all masm versions. This in2# in turn is because masm is not really an interchangeable option,3# while users tend to have reasons to stick with specific Visual4# Studio versions. It's usually lesser hassle to make it work5# with latest assembler, but tweaking for older versions had6# proven to be daunting task. This is experimental target, for7# production builds stick with [up-to-date version of] nasm.89my %targets = (10"VC-WIN64A-masm" => {11inherit_from => [ "VC-WIN64-common" ],12AS => "ml64",13ASFLAGS => "/nologo /Zi",14asoutflag => "/Fo",15asflags => "/c /Cp /Cx",16sys_id => "WIN64A",17uplink_arch => 'x86_64',18asm_arch => 'x86_64',19perlasm_scheme => "masm",20},21);222324