Put back bcm.c exclusion since it's still creating duplicate symbols error

pull/20975/head
Muxi Yan 5 years ago
parent 2a7e2af747
commit 87e73a5ba4
  1. 5
      src/objective-c/BoringSSL-GRPC.podspec
  2. 5
      templates/src/objective-c/BoringSSL-GRPC.podspec.template

@ -142,8 +142,11 @@ Pod::Spec.new do |s|
'crypto/*.h',
'crypto/**/*.h',
'third_party/fiat/*.h'
# bcm.c includes other source files, creating duplicated symbols. Since it is not used, we
# explicitly exclude it from the pod.
# TODO (mxyan): Work with BoringSSL team to remove this hack.
ss.exclude_files = '**/*_test.*',
ss.exclude_files = 'crypto/fipsmodule/bcm.c',
'**/*_test.*',
'**/test_*.*',
'**/test/*.*'

@ -149,8 +149,11 @@
'crypto/*.h',
'crypto/**/*.h',
'third_party/fiat/*.h'
# bcm.c includes other source files, creating duplicated symbols. Since it is not used, we
# explicitly exclude it from the pod.
# TODO (mxyan): Work with BoringSSL team to remove this hack.
ss.exclude_files = '**/*_test.*',
ss.exclude_files = 'crypto/fipsmodule/bcm.c',
'**/*_test.*',
'**/test_*.*',
'**/test/*.*'

Loading…
Cancel
Save