Skip to content

Commit

Permalink
Explicitly specify symbols to be exported (#325)
Browse files Browse the repository at this point in the history
  • Loading branch information
swift-kim authored Aug 11, 2022
1 parent ba49016 commit c60bdea
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions shell/platform/embedder/flutter_engine_exports.lst
Original file line number Diff line number Diff line change
Expand Up @@ -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_*;
*;
};

0 comments on commit c60bdea

Please sign in to comment.