Skip to content

Commit c60bdea

Browse files
authored
Explicitly specify symbols to be exported (#325)
1 parent ba49016 commit c60bdea

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

shell/platform/embedder/flutter_engine_exports.lst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
# Use of this source code is governed by a BSD-style license that can be
33
# found in the LICENSE file.
44

5-
# Linker script that hides symbols with the prefix "FT_" so that global freetype
6-
# symbols referenced by Skia are not overriden by an external shared library at
7-
# runtime.
8-
5+
# Never export symbols internally used by the engine (such as FT_*).
96
{
107
global:
11-
*;
8+
kFlutter*;
9+
kDart*;
10+
FlutterEngine*;
11+
FlutterPlatformMessage*;
1212
local:
13-
FT_*;
13+
*;
1414
};

0 commit comments

Comments
 (0)