How do I use MS C++ Express 2008 to build Perl Unicode::Map on Windows?

后端 未结 2 1642
小蘑菇
小蘑菇 2021-01-27 15:18

I am currently trying to make the Unicode-Map-0.112 module, but encounter an error, \'0x1\', that is evidently related to using nmake. I tried to foll

2条回答
  •  情书的邮戳
    2021-01-27 16:10

    The error is saying that cl.exe is not in your path. I don't recall if the Express SKU has a "Visual Studio Command Prompt" or not (check your start menu).

    If not just find cl.exe (let's say it is c:\path\to\vstools\cl.exe) and do something like:

    set PATH=%PATH%;c:\path\to\vstools

提交回复
热议问题