第一次使用 PCH,得到链接器工具错误
Posted
技术标签:
【中文标题】第一次使用 PCH,得到链接器工具错误【英文标题】:First Time Using PCH, getting Linker Tool Error 【发布时间】:2017-09-27 04:00:37 【问题描述】:我是一个非常新手的程序员,只是学习了一点 c,但我总是在 Linux 上使用 gcc 和 Vim 进行,但我决定尝试使用 Visual Studio,但我遇到了 LNK2005 和 LNK1169 错误,我已经尝试查找错误以及如何修复它们并正确使用 PCH,因为我认为即使我的程序太小而无法使用它,学习也会很有用。
据我了解,我需要在我的源文件顶部添加#include "stdafx.h"
(称为'helloworld.c
')我没有从我创建项目时的默认值中触及'stdafx.c
',我创建了一个名为“bitwise.h
”的头文件,其中有一个名为“int bw()
”的函数,然后我有“stdafx.h
”,我添加的只是#include "bitwise.h"
在我的头文件bitwise.h
中我试图包含@987654329 @ 甚至不包括任何东西。所有这些都破坏了我的程序。我可以让它编译的唯一方法是,如果我注释掉//bw();
,那么我的程序编译就好了。
以下是我认为可能是罪魁祸首的文件:
helloworld.c
#include "stdafx.h"
int main()
printf("\tHello World!\n");
getchar();
bw(); //If this line is commented out everything works just Honky-Dory
getchar();
return 0;
按位.h
#include "stdafx.h" //I've tried lots of diffrent lines here, nothing works
int bw()
int a = 1;
int x;
for (x = 0; x < 7; x++)
printf("\nNumber is Shifted By %i Bits: %i", x, a << x);
getchar();
return 0;
stdafx.c
// stdafx.cpp : source file that includes just the standard includes
// $safeprojectname$.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.h"
// TODO: reference any additional headers you need in STDAFX.H
// and not in this file
stdafx.h
// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
//
#pragma once
#include "targetver.h"
#include "bitwise.h"
#include <stdio.h>
#include <tchar.h>
// TODO: reference additional headers your program requires here
【问题讨论】:
【参考方案1】:这与 PCH 无关。您混淆了头文件 (.h) 和实现 (.c) 文件。您需要做的是拆分实现和声明。您应该执行以下操作:
将您的 bitwise.h
重命名为 bitwise.c
,因为这是您的实现文件,而不是标题!
创建一个新文件bitwise.h
并只在其中放置声明,它应该如下所示:
#pragma once
int bw();
之后你的项目应该可以编译了。
还请注意 PCH 文件应包含不经常更改的包含,这可能不是您的情况,因为您还包含 bitwise.h
。您可能希望从 stdafx.h
中删除此包含并将其包含到您的 helloworld.c
中。
顺便说一句,在学习 C 的过程中不要考虑通过#include
包含 .c 文件!如果它修复了您的一些编译错误,那么您的项目设计可能非常错误。
【讨论】:
【参考方案2】:Nitpick:您不需要在 bitwise.h 中添加 #include stdafx.h,尽管它仍然应该有一个 #pragma once。
bw()
的代码仍应位于单独的 bitwise.c 文件中,而不是在标头中。我认为您可能会将预编译的标头与函数内联混淆?现在,您的 bw
代码正在被编译到应该是虚拟 stdafx 对象中,并再次在主对象中,并在链接时导致冲突。
另外,您是否记得将您的 stdafx.h 标记为预编译头文件 (/Yu),并将 stdafx.cpp 标记为...无论 /Yc 应该是什么意思?确保在 Properties -> C/C++ -> Precompiled Headers 中为 两个文件 的所有项目配置都设置了这两个选项。
【讨论】:
这不是挑剔 - 编写的代码具有循环依赖关系。以上是关于第一次使用 PCH,得到链接器工具错误的主要内容,如果未能解决你的问题,请参考以下文章
为啥 Xcode 将我的所有代码编译两次,导致任何全局变量的链接器错误?