0

我正在使用 nppexec 为 PIC 微控制器使用 ccsc 编译器编译文件。
它工作得很好,但 ccsc 编译器在单独的文件中写入错误/警告。
http://pastebin.com/yNrytafg

控制台不显示任何错误。

我该怎么做才能在 nppexec 控制台中显示该文件,以便我可以单击错误?

4

1 回答 1

0

Found the solution.

Add "+STDOUT +EX" parameters.
With +STDOUT errors are shown in the console, and with +EX the errors are formatted like gcc errors (for simpler filters)

Here are all excecute commands I have used:

npp_save
CD $(CURRENT_DIRECTORY)
cmd /c del project.ESYM
cmd /c del project.o
cmd /c del project.HEX
cmd /c del project.LST
cmd /c del project.ERR
cmd /c del project.COF
cmd /c del project.mcs
"C:\Program Files (x86)\PICC\Ccsc.exe" +FH "$(FULL_CURRENT_PATH)" +Y=9 +EA +STDOUT +EX

Console Output Filter:

%ABSFILE%:%LINE%:*:  Error*
%ABSFILE%:%LINE%:*:  Warning*
于 2013-11-10T18:51:22.717 回答