From df41d2920c30f7ab94052953fce0c8984e8c4ad0 Mon Sep 17 00:00:00 2001 From: Swift Kim Date: Fri, 5 Aug 2022 11:00:56 +0900 Subject: [PATCH] Explicitly specify symbols to be exported --- shell/platform/embedder/flutter_engine_exports.lst | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/shell/platform/embedder/flutter_engine_exports.lst b/shell/platform/embedder/flutter_engine_exports.lst index b1a56e733a945..611435fa2f61f 100644 --- a/shell/platform/embedder/flutter_engine_exports.lst +++ b/shell/platform/embedder/flutter_engine_exports.lst @@ -2,13 +2,13 @@ # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. -# Linker script that hides symbols with the prefix "FT_" so that global freetype -# symbols referenced by Skia are not overriden by an external shared library at -# runtime. - +# Never export symbols internally used by the engine (such as FT_*). { global: - *; + kFlutter*; + kDart*; + FlutterEngine*; + FlutterPlatformMessage*; local: - FT_*; + *; };