Linux: Add version script to restrict exported symbols (issue #1765)

This commit is contained in:
Marshall Greenblatt
2016-06-06 12:26:55 -04:00
parent e0fd09ed20
commit f1fec0933e
6 changed files with 21 additions and 4 deletions

9
libcef_dll/libcef.lst Normal file
View File

@@ -0,0 +1,9 @@
# Copyright 2016 The Chromium Embedded Framework Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
/* Only export necessary symbols from libcef.so. */
global: cef_*;
local: *;
};