Skip to content

Commit

Permalink
Switch OSS builds to cocoapods
Browse files Browse the repository at this point in the history
Summary:
Dynamically linking grpc in the open source build is causing a lot of issues, as every time grpc releases a new versions it's likely that a previously compiled version of idb will fail.

To fix this lets build from source and then statically link grpc.

I'll need to also update the homebrew formula once this lands

Reviewed By: jbardini

Differential Revision: D28810010

fbshipit-source-id: a69676d799de1e7df0426fe5c00b4c0f4783fd7c
  • Loading branch information
c-ryan747 authored and facebook-github-bot committed Jun 2, 2021
1 parent 24e4584 commit e88a614
Show file tree
Hide file tree
Showing 5 changed files with 547 additions and 44 deletions.
13 changes: 13 additions & 0 deletions Podfile
@@ -0,0 +1,13 @@
project 'idb_companion.xcodeproj'

platform :macos, '10.14'

target 'idb_companion' do
pod 'gRPC-C++'
pod 'gRPC-C++/Protobuf'
pod 'Protobuf-C++'
end

target 'idbGRPC' do
pod 'Protobuf-C++'
end

0 comments on commit e88a614

Please sign in to comment.