From d8fee247788dfe0401ba5f654f364af7cbb87aa4 Mon Sep 17 00:00:00 2001 From: Daniel Tsuan Date: Tue, 7 Nov 2017 14:33:02 -0800 Subject: [PATCH] Set link_whole true for YogaKit and IGListKit Summary: For our -objc efforts we'll be excluding vendorlibs from these changes for now and then working on getting them to not have to be fully linked as a second effort. The way -objc flag works is its an all or nothing flag for the app and thus for any library we still want to link completely we'll have to add a link_whole = True to the BUCK file. (Otherwise we'll have crashes in these libraries :P). Reviewed By: kastiglione Differential Revision: D6252740 fbshipit-source-id: fe074977a11b70c4aa63a4c69cb7518906c98eb9 --- YogaKit/BUCK | 1 + 1 file changed, 1 insertion(+) diff --git a/YogaKit/BUCK b/YogaKit/BUCK index 7ca2d47e..dfb67e64 100644 --- a/YogaKit/BUCK +++ b/YogaKit/BUCK @@ -36,6 +36,7 @@ apple_library( "$SDKROOT/System/Library/Frameworks/Foundation.framework", "$SDKROOT/System/Library/Frameworks/UIKit.framework", ], + link_whole = True, visibility = ["PUBLIC"], deps = [ yoga_dep(":yoga"),