使用 scons,如何链接到预构建的库?
我最近开始使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只是为了记录答案,因为我自己已经找到了它。
添加 LIBS 和 LIBPATH 参数将正确的参数添加到构建命令行。
更多信息请参见此处。
Just to document the answer, as I already located it myself.
Adding the LIBS & LIBPATH parameters add the correct arguments to the build command line.
More information here.