missing required architecture armv7 in file?
Happened to me when I was including a framework that was built using Carthage and it's deployment target has been set to iOS 11 but I was building for iOS 9. Therefore the 32-bit architectures (armv7, i386) were missing. I have changed the deployment target for that framework to iOS 9 and that fixed my problem.
You need to link against the SystemConfiguration framework. Select your project in Xcode's project navigator, select your app target, and select the Build Phases tab. Under Link Binary With Libraries, click on the "+" button and choose SystemConfiguration.framework.
There may be other framework dependencies that you need to add in the same way, but adding SystemConfiguration is what fixed the same errors for me.
ETA: I jumped right to the errors and didn't see the ld warning at the top of the paste. If you're already linking to SystemConfiguration, maybe try removing and re-adding it, and if all else fails, update Xcode. The most recent release definitely has the right architecture, so it sounds to me like either your project is looking in the wrong place or something's wrong with the framework itself.