Page 1 of 1

Rebuilding pctools

Posted: Fri Jul 31, 2020 6:30 am
by sulliwk06
I'm trying to rebuild the system tools and I think I'm missing some library needed for them. Are there any additional tools I need to install in order to rebuild them?

Code: Select all

C:\nburn\pctools\packcode>make install
cl packcode.cpp advapi32.lib
process_begin: CreateProcess(NULL, cl packcode.cpp advapi32.lib, ...) failed.
make (e=2): The system cannot find the file specified.
make: *** [makefile:39: packcode.exe] Error 2

C:\nburn\pctools\packcode>
I'm running NNDK 2.9.2 and trying to modify packcode.cpp in order to pass in "-M MapFileName.map". I use customized makefiles to build my apps and it's looking for the map file in the wrong place.

Re: Rebuilding pctools

Posted: Fri Jul 31, 2020 7:34 am
by TomNB
Hello,

In 2.x the pc tools are windows utilities (3.x is different). Do you have microsoft visual studio installed? Version 2015 or later should work.

Re: Rebuilding pctools

Posted: Fri Jul 31, 2020 7:50 am
by sulliwk06
I don't have visual studio installed, so I'll give that a shot, thanks