如何在编译 c++ 时自动链接类在日食中?
我正在 eclipse 中编写软件,并且使用 libcurl。为了让我编译它,我必须进入终端(ubuntu),并在 cd-ing 到包含 .cpp 文件的目录后,我必须运行这个:
g++ -g -Wall -o myapp myapp.cpp -L/usr/local/lib -lcurl
How do I configure the Eclipse Compiler to run this while comiling对我来说,我不必每次都运行终端。
有什么帮助吗?谢谢。
I am writing software in eclipse and i am using libcurl. In order for me to compile it, i have to go to the terminal(ubuntu) and after cd-ing to the directory wiht the .cpp file, i have to run this:
g++ -g -Wall -o myapp myapp.cpp -L/usr/local/lib -lcurl
How do I configure the eclipse compiler to run this when comiling for me, instead of me having to run the terminal everytime.
Any help? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
项目->属性-> c/c++ 构建 ->设置-> gcc c++ 链接器 ->图书馆
点击绿色+图标
添加您的库名称(不带-l)
project -> properties -> c/c++ build -> settings -> gcc c++ linker -> libraries
click on green + icon
add your library name (without -l)
您必须选择一个工具链并添加一个 make 文件目标。
您可以尝试创建一个新的 Hello World 项目(文件 --> 新建 --> C++ 项目 --> Hello World C++-Project ),然后添加适应您的需求(重命名,添加您的类)。 ..
创建项目后,它应该在项目资源管理器中可见。打开 Makefile 并设置
打开 Make Target 视图(Window-->Show View --> Make Target )并添加一个目标来构建 Makefile 的所有目标。您可以通过以下方式执行此操作:
希望这可能有所帮助
You have to choose a tool chain and and add a make file target.
You can try to create a new Hello World project (file--> New --> C++ project --> Hello World C++-Project ) and add after that adapt to your needs (do renaming, add your classes)...
After creating the project it should be visible in the Project explorer. Open the Makefile and set
Open the Make Target View (Window-->Show View --> Make Target) and add a target to build your all target of the Makefile. You may do this by:
Hope this may help