在 eclipse cdt 中,如何构建第一个目标以外的目标
我是使用 eclipse cdt 的新手。我有一个 makefile 项目,并且我的 Makefile 中有两个以上的目标。假设 Makefile 如下,
all:
...
t1:
...
t2:
...
很容易使 CDT 构建目标为“all”。但是,如何构建第一个目标以外的目标,例如 t1 和 t2?谢谢。
I am quite newbie in using eclipse cdt. I have a makefile project, and have more than two targets in my Makefile. Say the Makefile is as follows,
all:
...
t1:
...
t2:
...
it's easy to make CDT build target 'all'. However, how can I build targets other than the first one, like t1 and t2? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Eclipse 中,转到:
窗口 >显示视图>创建目标
在打开的视图中,右键单击您的项目,然后单击“新建”。
给你的目标命名,说“T1”。取消选中“与目标名称相同”并将“Make Target”值设置为 t1。
t2 也一样。
下次您想要构建目标时,请查看您打开的“创建目标”视图,然后双击所需的目标。
In eclipse, go to:
Window > Show View > Make Target
In the view that opens up, right click your project, click on "New".
Give your target a name, say "T1". Uncheck the "same as the target name" and put the "Make Target" value to t1.
Same for t2.
The next time you want to build your targets, look at the Make Target view that you opened, and double click the target you want.