如何包含 vDSP 框架 (iOS)?
我在包含 vDSP 框架时遇到问题。 我认为这只是待办事项的步骤:
#include <Accelerate/Accelerate.h>
void test()
{
float a[1024], b[1024], c[1024];
vDSP_vmul( a, 1, b, 1, c, 1, 1024 );
}
但如果我尝试构建,我会收到错误:
"_vmul", referenced from:
我认为我没有链接框架。但我该怎么做呢?
I have problems to include the vDSP-Framework.
I thought it is just that steps todo:
#include <Accelerate/Accelerate.h>
void test()
{
float a[1024], b[1024], c[1024];
vDSP_vmul( a, 1, b, 1, c, 1, 1024 );
}
but if i try to build,I get an error:
"_vmul", referenced from:
I think i didnt link the framework. but how can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我没记错的话,vDSP 功能位于 Accelerate 框架中。
从“构建阶段”选项卡上的目标设置中,展开标题为“将二进制文件与库链接”的区域。
从那里您可以按加号按钮添加新框架。在列表中找到 Accelerate 并添加它。
然后您应该能够使用应用程序中的功能。
The vDSP functions are in the Accelerate framework, if I remember correctly.
From your target's settings on the Build Phases tab, expand the area titled "Link Binary With Libraries".
From there you can press the plus button to add a new framework. Locate Accelerate in the list and add it.
You should then be able to use the functions in your app.