fatal error LNK1104: cannot open file "Debug/构造函数.exe"

今天编写程序遇到下面这个问题:

现象:

编译没有错误,一连接就报错:fatal error LNK1104: cannot open file "Debug/构造函数.exe"

原因:

进程中正有一个xxx.exe运行,所以这个文件受保护,不能打开创建

解决:

ctrl+alt+del,打开任务管理器,杀掉该进程

时间: 2024-12-26 22:53:30

fatal error LNK1104: cannot open file "Debug/构造函数.exe"的相关文章

VS2008 LINK : fatal error LNK1104: cannot open file 'atls.lib'错误解决方案

用VS 2008编写ATL的64位应用程序时,提示链接错误: VS2008 LINK : fatal error LNK1104: cannot open file 'atls.lib' 问题原因 VS 2008默认并不包含ATL x64的库,需要参照以下文档自行编译,但是编译过程会出错. C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\atlmfc\src\readme.txt 解决方案 通过测试我发现,其它高版本VS,如VS 201

LINK : fatal error LNK1104: cannot open file 'mfcs42d.lib'

今天在自己的机器上安装EVC后,建立MFC工程,编译出现错误 : LINK : fatal error LNK1104: cannot open file 'mfcs42d.lib' 或 INK : fatal error LNK1104: cannot open file 'mfcs42.lib' 解决方法: 找到   mfcs42d.lib   或   mfcs42.lib所在的目录,如我的机器是:  D:/Program   Files/Windows   CE   Tools/wce50

LINK : fatal error LNK1104: cannot open file "mfc42d.lib"

VC++6.0上建立了个基于MFC应用程序,在编译时候没出现错误,但在LINK的是时候出现这样的错误:Linking...LINK : fatal error LNK1104: cannot open file "mfc42d.lib"执行 link.exe 时出错.Calculator.exe - 1 error(s), 0 warning(s) 答案: 错误主要出现在网络流传的VC++6.0版本中,当调试链接MFC向导程序的时候,出现此错误.发生这一错误的原因主要是设置问题,但仅通

编译C++,找不到头文件(fatal error: string: No such file or directory)

在androidproject中编译C++时,找不到头文件,报错例如以下: fatal error: string: No such file or directory 解决该问题须要在Android.mk文件里: LOCAL_C_INCLUDES :=  \                 bionic \                 external/stlport/stlport 编译C++,找不到头文件(fatal error: string: No such file or dir

Delphi7 [Fatal Error] ClassPas.pas(8): File not found: 'DesignIntf.dcu'

Delphi7 [Fatal Error] ClassPas.pas(8): File not found: 'DesignIntf.dcu' Add path to Project>Options>Directories/Conditionals >Search path D:\Program Files (x86)\Borland\Delphi7\Source\ToolsAPI Delphi7 [Fatal Error] ClassPas.pas(8): File not found

fatal error: 'libxml/xmlversion.h' file not found

问题: MACOS安装scrapy时,安装lxml出现错误 In file included from src/lxml/lxml.etree.c:232: /tmp/easy_install-O2UfP7/lxml-3.4.0/src/lxml/includes/etree_defs.h:14:10: fatal error: 'libxml/xmlversion.h' file not found #include "libxml/xmlversion.h"          ^

mac编译openssl扩展报错 openssl.c:44:10: fatal error: 'openssl/evp.h' file not found

解决办法 brew link openssl --force 然后 ./configure --with-openssl --with-php-config=/usr/local/php/bin/php-config make sudo make install mac编译openssl扩展报错 openssl.c:44:10: fatal error: 'openssl/evp.h' file not found

fatal error LNK1104: 无法打开文件“libc.lib”的问题

          如果将用低版本的VC开发的项目,拿到高版本的VC开发环境上去编译,链接时也许会触发LNK1104错误.解决方案是链接时忽略此库,在此提供三种解决方案:               1.解决如下:项目->属性中->配置属性->链接器->输入->在忽略特定库             2.解决如下:项目->属性->配置属性->链接器->命令行输入/nodefaultlib:libcd              3.在头文件中写上代码:  

问题描述: fatal error: 'XCTest/XCTest.h' file not found

#import 解决方法:在报错的Target中的Building settings中FRAMEWORK_SEARCH_PATHS添加$(PLATFORM_DIR)/Developer/Library/Frameworks详解:http://stackoverflow.com/questions/24275470/xctest-xctest-h-not-found-on-old-projects-built-in-xcode-6 问题描述: fatal error: 'XCTest/XCTest