按照http://iitdu.forumsmotion.com/t108-gcc-compiler-in-notepad上的说明
但是,在使用提供的代码(如下)执行 NPPExec 时,ld.exe 会显示一条警告,详细说明缺少 linintl-8.dll。
// The script code, C source code compiling with GNU CC (GCC) in notepad++ (by "NppExec" plug-in) and compressing with UPX...
//
// Enable? "//" signs remove in code line.
// Sample: C:\Program Files\CodeBlocks\MinGW\bin\gcc.exe "$(FULL_CURRENT_PATH)" -o $(NAME_PART)
YOUR_GCC\BIN\_PATH_HERE\gcc.exe "$(FULL_CURRENT_PATH)" -o $(NAME_PART)
// UPX Compress (with "--best, --ultra-brute" options)
// Enable? "//" signs remove in code line.
// Sample: C:\WINDOWS\system32\upx.exe --best --ultra-brute $(NAME_PART).exe
YOUR_UPX_PATH_HERE\upx.exe --best --ultra-brute $(NAME_PART).exe
然而,我可以看到 linintl-8.dll 位于 mingw 的 bin 目录中。
有没有人知道如何解决这个问题,或者在notepad++中成功编译C的完全不同的方法?