ld:找不到-lyoutube-ios-player-helper 的库
ld: library not found for -lyoutube-ios-player-helper
我有以下错误。我该如何解决?
How can I solve it?
错误非常简单:您要求将您的应用程序链接到 libyoutube-ios-player-helper
,但没有在链接器可以找到的任何地方提供此类库。
如果您的系统中某处确实存在此库,您需要添加 -L/path/to/dir/where/libyoutube-ios-player-helper/resides
。如果该库不存在,您应该从命令行中删除 -lyoutube-ios-player-helper
。
我有以下错误。我该如何解决?
How can I solve it?
错误非常简单:您要求将您的应用程序链接到 libyoutube-ios-player-helper
,但没有在链接器可以找到的任何地方提供此类库。
如果您的系统中某处确实存在此库,您需要添加 -L/path/to/dir/where/libyoutube-ios-player-helper/resides
。如果该库不存在,您应该从命令行中删除 -lyoutube-ios-player-helper
。