在 eclipse cdt 中,如何构建第一个目标以外的目标

发布于 2024-10-19 14:22:37 字数 200 浏览 0 评论 0原文

我是使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鸩远一方 2024-10-26 14:22:37

在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文