mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
The dynamic linker on some older versions of Android on x86 fails when doing dlsym(RTLD_DEFAULT) lookups of symbols exported by the engine library itself. The engine needs to do this for some data files that are linked into the engine library (ICU data and Dart snapshot blobs). To work around this, the engine will declare static symbols for these data objects on the affected platforms. Fixes https://github.com/flutter/flutter/issues/20091