从 matlab 代码创建静态库
我已经知道您可以从 matlab 创建独立的可执行文件和共享库。然而,对于我们的配置管理过程(版本和发行版)来说,最好使用静态库,然后将其包含在我正在构建的 dll 中(用 C++ 编写)。
这可能根本不可能,但我很好奇。以前有人这样做过吗?
I'm already aware that you can create a stand alone executable and a shared lib from matlab. However, it would be better for our configuration management process (version and distribution) to use a static lib that then is included in the dll I'm building (in C++).
This may not be possible at all, but I'm curious. Has anyone done that before?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过一点谷歌,我发现了这个: Generate Static C/C++ Libraries from MATLAB 代码
看起来您可以从项目或命令行创建它们。
With a little google-fu I found this: Generating Static C/C++ Libraries from MATLAB Code
It looks like you can create them from projects or from the command line.