Tesseract-OCR-iOS icon indicating copy to clipboard operation
Tesseract-OCR-iOS copied to clipboard

pod framework,when i run iphone and this error

Open yixiaojichunqiu opened this issue 7 years ago • 2 comments

ld: -weak_library and -bitcode_bundle (Xcode setting ENABLE_BITCODE=YES) cannot be used together clang: error: linker command failed with exit code 1 (use -v to see invocation)

yixiaojichunqiu avatar Jan 05 '18 13:01 yixiaojichunqiu

Try after ENABLE_BITCODE=NO

niravkotecha avatar Feb 05 '18 12:02 niravkotecha

add these lines on your pod file and update post_install do |installer| installer.pods_project.targets.each do |target| target.build_configurations.each do |config| config.build_settings['ENABLE_BITCODE'] = 'NO' end end end

sulaimansust avatar Aug 09 '18 11:08 sulaimansust