web-dev-qa-db-ja.com

Xcode 7でプロジェクトとココアポッドの依存関係のビットコードを無効にしますか?

プロジェクトとココアポッドの依存関係のビットコードを無効にするにはどうすればよいですか? Xcode 7でプロジェクトを実行しようとするとエラーが発生します。

ビットコードが含まれていません。ビットコードを有効にして(Xcode設定ENABLE_BITCODE)で再構築するか、ベンダーから更新されたライブラリを取得するか、このターゲットのビットコードを無効にする必要があります。アーキテクチャarm64用

編集:元々、ターゲットの1つに対してのみ無効にしました。すべてを無効にすると、正常にビルドできました。

52
jherg

pod installを実行するたびに上書きされないようにこの設定を設定するには、これをPodfileに追加します

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
141
Keith Smiley

完全なビットコードでCocoaPodsのターゲットをビルドする方法があります。それぞれの-fembed-bitcodeOTHER_CFLAGSオプションを追加するだけです:

post_install do |installer|
  installer.pods_project.targets.each do |target|
    target.build_configurations.each do |config|
      cflags = config.build_settings['OTHER_CFLAGS'] || ['$(inherited)']
      cflags << '-fembed-bitcode'
      config.build_settings['OTHER_CFLAGS'] = cflags
    end
  end
end

この方法はビットコードを無効にするよりも良いと思います。

8
werediver
project 'frameworkTest.xcodeproj'

# Uncomment this line to define a global platform for your project
platform :ios, '8.0'

target 'frameworkTest' do
  # Uncomment this line if you're using Swift or would like to use dynamic frameworks
  # use_frameworks!

  # Pods for frameworkTest
  source 'https://github.com/CocoaPods/Specs.git' 


#Zip files libs
  pod 'SSZipArchive'

#reachability 
  pod 'Reachability'

end

#bitcode enable
post_install do |installer|
  installer.pods_project.targets.each do |target|
    target.build_configurations.each do |config|

      # set valid architecture
      config.build_settings['VALID_ARCHS'] = 'arm64 armv7 armv7s i386 x86_64'

      # build active architecture only (Debug build all)
      config.build_settings['ONLY_ACTIVE_Arch'] = 'NO'

      config.build_settings['ENABLE_BITCODE'] = 'YES'

      if config.name == 'Release' || config.name == 'Pro'
          config.build_settings['BITCODE_GENERATION_MODE'] = 'bitcode'
      else # Debug
          config.build_settings['BITCODE_GENERATION_MODE'] = 'marker'
      end

      cflags = config.build_settings['OTHER_CFLAGS'] || ['$(inherited)']

      if config.name == 'Release' || config.name == 'Pro'
          cflags << '-fembed-bitcode'
      else # Debug
          cflags << '-fembed-bitcode-marker'
      end      

      config.build_settings['OTHER_CFLAGS'] = cflags
    end
  end
end
4
Romulo Rego

独自の開発ポッドのビットコードを無効にするには、プロジェクトのポッドファイルに以下のコードのみを追加します。

post_install do |installer|
    installer.pods_project.targets.each do |target|
        if target.name == "YOUR SDK TARGET NAME"
            puts "Processing for disable bit code in YOUR SDK TARGET NAME SDK"
            target.build_configurations.each do |config|
                config.build_settings['ENABLE_BITCODE'] = 'NO'
            end
        end
    end
end
1
Rajesh Kumar

メインプロジェクトとポッドでビットコードを無効にする

他の回答では、メインプロジェクトのビットコードフラグをクリアできません。 Cocoapodのインストール後のフックでは、メインプロジェクトにアクセスできません。これは設計上の選択であると考えられるため、プロジェクトファイルを見つけて xcodeproj を使用して変更する必要があります。バイナリライブラリにビットコードが含まれている場合は、xcrun bitcode_stripを使用してビットコードを削除し、プロジェクトの一貫性を保つ必要があります。

2つのヘルパー関数

def disable_bitcode_for_target(target)
    target.build_configurations.each do |config|
      config.build_settings['ENABLE_BITCODE'] = 'NO'

      remove_cflags_matching(config.build_settings, ['-fembed-bitcode', '-fembed-bitcode-marker'])
    end
end

def remove_cflags_matching(build_settings, cflags)
  existing_cflags = build_settings['OTHER_CFLAGS']

  removed_cflags = []
  if !existing_cflags.nil?
    cflags.each do |cflag|
      existing_cflags.delete_if { |existing_cflag| existing_cflag == cflag && removed_cflags << cflag }
    end
  end

  if removed_cflags.length > 0
    build_settings['OTHER_CFLAGS'] = existing_cflags
  end
end

インストール後のフェーズ

post_install do |installer|    
  project_name = Dir.glob("*.xcodeproj").first
  project = Xcodeproj::Project.open(project_name)
  project.targets.each do |target|
    disable_bitcode_for_target(target)
  end
  project.save

  installer.pods_project.targets.each do |target|
    disable_bitcode_for_target(target)
  end

  installer.pods_project.save
end

無効にするターゲットのビルド設定に移動します。 「ビットコードを有効にする」というメッセージを検索し、「いいえ」に設定します。

1
Kris Gellci

複数のxcodeproj生成を有効にしている場合、cocoapods 1.7以降の更新:

install! 'cocoapods', :generate_multiple_pod_projects => true

<Pod list section>

post_install do |installer|
    installer.pod_target_subprojects.each do |subproject|
        subproject.targets.each do |target|
            target.build_configurations.each do |config|
                config.build_settings['ENABLE_BITCODE'] = 'NO'
            end
        end
    end
end
0
Yuriy Pavlyshak