Skip to content

Commit eaca6bc

Browse files
authored
Update using-executorch-ios.md (#10595)
1 parent e67ef3b commit eaca6bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/source/using-executorch-ios.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ Copy them to your project and link them against your targets.
143143

144144
## Linkage
145145

146-
ExecuTorch initializes its backends and kernels (operators) during app startup by registering them in a static dictionary. If you encounter errors like "unregistered kernel" or "unregistered backend" at runtime, you may need to explicitly force-load certain components. Use the `-all_load` or `-force_load` linker flags in your Xcode build configuration to ensure components are registered early.
146+
ExecuTorch initializes its backends and kernels (operators) during app startup by registering them in a static dictionary. If you encounter errors like "unregistered kernel" or "unregistered backend" at runtime, you may need to explicitly force-load certain components. Use the `-all_load` or `-force_load` linker flags in your Xcode build configuration to ensure components are registered early. Also, you may need to link against the C++ standard library, if not already, e.g. by adding the `-lc++` linker flag.
147147

148148
Here's an example of a Xcode configuration file (`.xcconfig`):
149149

0 commit comments

Comments
 (0)