문제

How can I use Whole Program Optimization feature in Free Pascal 2.7.1 on Windows?

I get this error:

Project1.dpr(92,1) Fatal: Cannot find "nm.exe" or "" to extract symbol liveness information from linked program

도움이 되었습니까?

해결책

The problem is the WPO is trying to extract symbols from your executable using NM. NM is not available for Windows.

The good news is, Windows has DumpBin instead. I think you can use this directly in place of NM.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top