50-masm.conf 907 B

12345678910111213141516171819202122
  1. # We can't make commitment to supporting Microsoft assembler,
  2. # because it would mean supporting all masm versions. This in
  3. # in turn is because masm is not really an interchangeable option,
  4. # while users tend to have reasons to stick with specific Visual
  5. # Studio versions. It's usually lesser hassle to make it work
  6. # with latest assembler, but tweaking for older versions had
  7. # proven to be daunting task. This is experimental target, for
  8. # production builds stick with [up-to-date version of] nasm.
  9. my %targets = (
  10. "VC-WIN64A-masm" => {
  11. inherit_from => [ "VC-WIN64-common" ],
  12. AS => "ml64",
  13. ASFLAGS => "/nologo /Zi",
  14. asoutflag => "/Fo",
  15. asflags => "/c /Cp /Cx",
  16. sys_id => "WIN64A",
  17. uplink_arch => 'x86_64',
  18. asm_arch => 'x86_64',
  19. perlasm_scheme => "masm",
  20. },
  21. );