multiple definition of main error in eclipse using C

£可爱£侵袭症+ 提交于 2019-12-01 01:40:18

It's possible to define multiple build configurations - each having different set of files that are built.

First open Project properties and navigate to Manage Configurations:

Create a new build configuration:

And set it active:

Finally define filter excluding file(s) to ensure that you build a source file with main() you want to use only:

And that's it:

Now you can choose target build configuration from Menu > Project > Build Configurations > Set Active.

I think you can set up multiple "Build Configurations" to avoid this. Under "Project" in the menu bar you can choose your active build configuration.

There are ways to exclude files in different configurations. Under your project properties you go to "C/C++ General", "Paths and Symbols" and here you choose "Source Location". Top most you can now choose your build configuration and then define different sorurce locations for you different build configurations. Here you add folders for your source code, and, here comes the trick, for the folders you choose to include you can put filter to ignore specific files.

In your case I would make two Build Configurations, one for confclient and for this one I would exclude confserver.c from the scource location, and vice versa.

You will need to build you project twice, but the utilspart will be left unchanged and hence it wont recompile which is a benefit over having two projects. Also it might be nice to have all the code in the same project since I guess the code on the server side and client side will be connected.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!