使用 scons,如何链接到预构建的库?

发布于 2024-07-07 09:07:53 字数 163 浏览 9 评论 0原文

我最近开始使用 scons 构建几个小型跨平台项目。 其中一个项目需要链接到预先构建的静态库......这是如何完成的?

在 make 中,我只需在 Windows 上附加“link /LIBPATH:wherever libstxxl.lib”,在 unix 上附加“stxxl.a”。

I recently started using scons to build several small cross-platform projects. One of these projects needs to link against pre-built static libraries... how is this done?

In make, I'd just append "link /LIBPATH:wherever libstxxl.lib" on windows, and "stxxl.a" on unix.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

折戟 2024-07-14 09:07:53

只是为了记录答案,因为我自己已经找到了它。

Program( 'foo', ['foo.cpp'], LIBS=['foo'], LIBPATH='.' )

添加 LIBS 和 LIBPATH 参数将正确的参数添加到构建命令行。

更多信息请参见此处

Just to document the answer, as I already located it myself.

Program( 'foo', ['foo.cpp'], LIBS=['foo'], LIBPATH='.' )

Adding the LIBS & LIBPATH parameters add the correct arguments to the build command line.

More information here.

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