Tesseract-OCR-iOS
Tesseract-OCR-iOS copied to clipboard
pod framework,when i run iphone and this error
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)
Try after ENABLE_BITCODE=NO
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