summaryrefslogtreecommitdiff
path: root/registry
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-07-20 09:46:57 +0200
committerStephan Bergmann <sbergman@redhat.com>2012-07-20 09:46:57 +0200
commitce60a046d9db7b604bb66e47d683e62ac65a2f65 (patch)
treebbcc7ad99f88342af8da8ff2664f41e0352429a8 /registry
parent0d56e73df7decc32f45d375ec8cc9940f8d249f4 (diff)
Globally unique symbols missing from some map files
...after gbuild'ification (they used to be added via solenv/bin/addsym.awk). And sunjavaplugin.map is actually unused. Change-Id: If6804cff8d01e268b84512d6c4b1edebde018cc0
Diffstat (limited to 'registry')
-rw-r--r--registry/util/reg.map9
1 files changed, 9 insertions, 0 deletions
diff --git a/registry/util/reg.map b/registry/util/reg.map
index 7b9a3f502626..ad4c39c57b9a 100644
--- a/registry/util/reg.map
+++ b/registry/util/reg.map
@@ -17,6 +17,8 @@
#
UDK_3_0_0 {
global:
+ _ZTI*; _ZTS*; # weak RTTI symbols for C++ exceptions
+
initRegistry_Api;
initRegistryTypeWriter_Api;
initRegistryTypeReader_Api;
@@ -100,3 +102,10 @@ UDK_3.1 {
typereg_writer_setReferenceData;
typereg_writer_getBlob;
} UDK_3_0_0;
+
+# Unique libstdc++ symbols:
+GLIBCXX_3.4 {
+ global:
+ _ZGVNSt7num_put*; _ZNSt7num_put*;
+ _ZNSs4_Rep20_S_empty_rep_storageE;
+};