Fix for linker error when building for iOS 7

By default, React Native projects target a minimum of iOS 7, but our projects were set to iOS 8 because previously we used a dynamic framework.

When building for an iOS 7 minimum target version, the linker would complain about thread local variables not working on iOS 7. So it was necessary to add even more checks (iOS >= 8 or OS X >= 10.7) before using native thread local variables rather than our shim.

This also changes our projects to target iOS 7 so we can catch these issues quicker in the future.
This commit is contained in:
Scott Kyle 2016-06-27 12:16:35 -07:00 committed by Ari Lazier
parent 47c1c2d400
commit 502feab8be
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ x.x.x Release notes (yyyy-MM-dd)
* Added support for debugging in Visual Studio Code.
### Bugfixes
* None
* Fix linker error when building for minimum target version of iOS 7.
0.14.1 Release notes (2016-6-28)
=============================================================