The problem with the BoringSSL pod is fixed.
You have other Pods that are written in Swift (namely "FirebaseSharedSwift"), the builder hints you to use the precompiled versions of the Firebase pods. This is what you need to do to have your project to build on Windows.
The procedure is roughly :
- Identify all the Firebase pods in your podfile, and their version number
- Collect each of them (from the Firebase GitHub releases page) - see the README.md file in each Firebase release for the version number of each component
- Read the programmer's documentation/release notes of each to find out whether they need a particular linker flag (such as -ObjC) to be added (Firebase typically does). Firebase also typically requires you to provide a GoogleServicesInfo.plist file with your Google ID in it (if you don't provide it, your app will crash).
- Inject these frameworks in your project using the "Add extra framework" button and remove them from your podfile
- Build and resolve potential compiler/linker errors by reading the messages and providing the missing dependency libraries/frameworks until no more errors.
- Deploy and run your project : if you get a crash, see the cause in the debug console, and fix what's missing as appropriate.
- Once you get a running build configuration, *save it* on disk.
If you're stuck on any of these steps (after reasonable effort), ask here for help.