Remove force_static
Summary: static linking is dangerous here as more than one library could be including the same symbols. The used to only be used by the jni target previously but that is no longer true Reviewed By: gkassabli Differential Revision: D4258293 fbshipit-source-id: 053f9e607503707830e3766b1f268ab31d3081ff
This commit is contained in:
committed by
Facebook Github Bot
parent
686289814d
commit
07cf47baad
5
BUCK
5
BUCK
@@ -29,9 +29,10 @@ cxx_library(
|
||||
tests=[':tests'],
|
||||
exported_headers = subdir_glob([('', 'CSSLayout/*.h')]),
|
||||
header_namespace = '',
|
||||
force_static = True,
|
||||
compiler_flags = COMPILER_FLAGS,
|
||||
deps = [],
|
||||
deps = [] if THIS_IS_FBOBJC else [
|
||||
csslayout_dep('lib/fb:ndklog'),
|
||||
],
|
||||
visibility = ['PUBLIC'],
|
||||
)
|
||||
|
||||
|
Reference in New Issue
Block a user