mirror of
https://github.com/genodelabs/genode.git
synced 2025-02-21 18:06:50 +00:00
On ARM, the compiler generates calls to memcpy and memset. Most dynamically linked programs use the libc, which provides these functions. However, if a dynamically linked program does not use the libc (e.g., noux/minimal or the new version of cli_monitor), those symbols remain unresolved. By adding them to ldso's symbol.map, the dynamic linker will resolve them with the functions of the cxx library, which is part of the dynamic linker. Issue #1561