安装Notepad++ C编译器插件:缺少linintl-8.dll

问题描述 投票:0回答:1

按照 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 目录中。

有谁知道如何解决这个问题,或者有一种完全不同的方法在记事本++中成功编译C?

c notepad++
1个回答
1
投票

我不是 Windows 专家,但我知道 dll 应该位于

C:/System
C:/System32
对于 Windows 7 你应该检查这个问题:

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

© www.soinside.com 2019 - 2024. All rights reserved.