0

按照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的完全不同的方法?

4

1 回答 1

1

我不是 Windows 专家,但我知道 dll 应该放在 Windows 7 中的某个地方C:/SystemC:/System32用于 Windows 7,你应该检查这个问题:

如何在 Windows 7 64 位上注册 DLL 文件?

于 2012-11-05T10:31:13.690 回答