我已经构建了一个动态库(在这种情况下添加ICU支持),我需要将其添加为pod的依赖项。为此我创建了一个带有以下podspec的pod(我删除了诸如作者,许可证等......以保持简短)
Pod::Spec.new do |s|
s.name = 'unicode'
s.version = '57.0'
s.source = { :git => "git@bitbucket.org:mycompany/unicode.git", :tag => "#{s.version}" }
s.requires_arc = false
s.platform = :ios, '8.0'
s.default_subspecs = 'all'
s.subspec 'all' do |ss|
ss.header_mappings_dir = 'icu4c/include'
ss.source_files = 'icu4c/include/**/*.h'
ss.public_header_files = 'icu4c/include/**/*.h'
ss.vendored_libraries = 'Frameworks/lib*.dylib'
end
end
这里我有第二个pod我需要链接这些库
Pod::Spec.new do |s|
s.name = 'sqlite3'
s.version = '3.14.2'
s.summary = 'SQLite is an embedded SQL database engine'
s.documentation_url = 'https://sqlite.org/docs.html'
s.homepage = 'https://github.com/clemensg/sqlite3pod'
s.authors = { 'Clemens Gruber' => 'clemensgru@gmail.com' }
v = s.version.to_s.split('.')
archive_name = "sqlite-amalgamation-"+v[0]+v[1].rjust(2, '0')+v[2].rjust(2, '0')+"00"
#s.source = { :http => "https://www.sqlite.org/#{Time.now.year}/#{archive_name}.zip" }
s.source = { :git => "git@bitbucket.org:wrthphoenixspeedy/sqlite3.git", :tag => "#{s.version}" }
s.requires_arc = false
s.platform = :ios, '8.0'
s.default_subspecs = 'common'
s.subspec 'common' do |ss|
ss.source_files = "#{archive_name}/sqlite*.{h,c}"
ss.osx.pod_target_xcconfig = { 'OTHER_CFLAGS' => '$(inherited) -DHAVE_USLEEP=1' }
# Disable OS X / AFP locking code on mobile platforms (iOS, tvOS, watchOS)
sqlite_xcconfig_ios = { 'OTHER_CFLAGS' => '$(inherited) -DHAVE_USLEEP=1 -DSQLITE_ENABLE_LOCKING_STYLE=0' }
ss.ios.pod_target_xcconfig = sqlite_xcconfig_ios
ss.tvos.pod_target_xcconfig = sqlite_xcconfig_ios
ss.watchos.pod_target_xcconfig = sqlite_xcconfig_ios
end
# enable support for icu - International Components for Unicode
s.subspec 'icu' do |ss|
ss.dependency 'sqlite3/common'
ss.pod_target_xcconfig = { 'OTHER_CFLAGS' => '$(inherited) -DSQLITE_ENABLE_ICU=1' }
ss.dependency 'unicode', '57.0'
ss.libraries = 'icucore', 'icudata.57.1', 'icui18n.57.1', 'icuio.57.1', 'icule.57.1', 'iculx.57.1', 'icutu.57.1', 'icuuc.57.1'
end
end
通过这些,我能够编译它。 Cocoapods正在将这些库在构建时复制到文件夹 ../ Frameworks / 中,而不是在运行时进行。相反它失败了,因为它说它在 ../ lib 中找不到库。
dyld: Library not loaded: ../lib/libicudata.57.1.dylib
Referenced from: /var/containers/Bundle/Application/9663CB3A-6ACD-487E-A92D-48F8AFE5260C/MyApp.app/MyApp
Reason: image not found
我必须使用 use_frameworks!,因为我也使用了一些Swift框架。
所以我做错了...问题是,我可以将dylib从一个pod连接到另一个pod吗?如果是的话......怎么样?
答案 0 :(得分:0)
基于" libs"之间的差异和#34;框架",这看起来像是runpath search paths(正在运行的应用程序没有从框架中查找库)或者库的安装名称与它所在的位置不匹配的问题#39;相对于动态加载的位置放置。
确保在捆绑动态库的应用中,您的"运行路径搜索路径中包含以下路径":@executable_path/../Frameworks
,@loader_path/../Frameworks
确保"动态库安装名称"正在加载的库的名称设置为等效于@rpath/$(EXECUTABLE_PATH)
(即在您的情况下应该是" @ rpath / libicudata.57.1.dylib")。您可以在构建期间使用-install_name
编译器(链接器?)标记或install_name_tool
设置它,如下所示:install_name_tool -id "@rpath/libicudata.57.1.dylib" libicudata.57.1.dylib
。希望不会发现这一点。