简体   繁体   English

链接器错误未定义符号

[英]linker error Undefined symbols

I use this library to download files. 我使用此下载文件。 But when I compile my project the linker throw me an error. 但是,当我编译我的项目时,链接器使我出错。 The architecture is armv7. 架构是armv7。

在此处输入图片说明

The origin of this error is because I use: 此错误的起因是因为我使用了:

[[BDMultiDownloader shared] queueRequest:[urlFolder stringByAppendingString:video] completion:^(NSData* data){
                [data writeToFile:file atomically:TRUE];
            }];

Thanks for the help! 谢谢您的帮助!

When you added the files to your project, was the target you are building ticked? 当您将文件添加到项目中时,您正在构建的目标被打勾了吗?

Select the BDMultiDownloader.m file in the project navigator in the left-hand sidebar, then select the file inspector in the right-hand sidebar. 在左侧边栏中的项目导航器中选择BDMultiDownloader.m文件,然后在右侧边栏中选择文件检查器。 Make sure that the target membership includes the target you are building. 确保目标成员资格包括您正在构建的目标。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 链接器错误:未定义的符号,未找到符号 - Linker error: undefined symbols, symbols not found Xcode 8链接器错误与框架,体系结构i386的未定义符号 - Xcode 8 Linker error with Framework, undefined symbols for architecture i386 Xcode 6链接器错误 - 架构armv7的未定义符号 - Xcode 6 linker error - Undefined symbols for architecture armv7 Parse.framework的链接器错误(未定义符号) - Linker errors (undefined symbols) with Parse.framework Apple Mach-O链接器错误/体系结构i386的未定义符号: - Apple Mach-O Linker Error / Undefined symbols for architecture i386: Apple Mach-O链接器错误-体系结构x86_64的未定义符号:“ _ UISceneWillEnterForegroundNotification”和“ ___isPlatformVersionAtLeast” - Apple Mach-O Linker Error - Undefined symbols for architecture x86_64: “_UISceneWillEnterForegroundNotification” and “___isPlatformVersionAtLeast” 第三方库在体系结构x86_64部分的未定义符号中创建78个链接器错误 - Third part library create 78 linker error in an Undefined symbols for architecture x86_64 section 如何修复Apple Mach-o链接器错误“体系结构i386的未定义符号”? - How can I fix apple mach-o linker error “Undefined symbols for architecture i386”? Apple Mach-o链接器错误体系结构i386的未定义符号: - Apple Mach-o Linker Error Undefined symbols for architecture i386: clang:错误:linker 命令失败,退出代码为 1:体系结构 x86_64 的未定义符号 - clang: error: linker command failed with exit code 1:Undefined symbols for architecture x86_64
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM