Chromium Code Reviews| Index: build/config/ios/BUILD.gn |
| diff --git a/build/config/ios/BUILD.gn b/build/config/ios/BUILD.gn |
| index 75e740f4543e4c6412326787dca0fe8508c566a7..888b40d14dd0d486fd09ba344721c176c8c5ed22 100644 |
| --- a/build/config/ios/BUILD.gn |
| +++ b/build/config/ios/BUILD.gn |
| @@ -37,3 +37,13 @@ config("runtime_library") { |
| ] |
| } |
| } |
| + |
| +config("ios_dynamic_flags") { |
| + ldflags = [ |
| + "-Wl,-ObjC", # Always load Objective-C categories and class. |
| + "-Xlinker", |
| + "-objc_abi_version", |
|
Robert Sesek
2016/07/20 16:21:07
I'm not familiar with this. Why is it required?
|
| + "-Xlinker", |
| + "2", |
| + ] |
| +} |