From 502feab8be6d8417b39e2c830783740aa155f307 Mon Sep 17 00:00:00 2001 From: Scott Kyle Date: Mon, 27 Jun 2016 12:16:35 -0700 Subject: [PATCH] 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. --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c6e68bc1..422b7830 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) =============================================================