summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorNils Wallménius <nils@rockbox.org>2007-10-02 09:08:08 +0000
committerNils Wallménius <nils@rockbox.org>2007-10-02 09:08:08 +0000
commit605949d48239551f721f5e8110d5f1001a2b2623 (patch)
treeb809945dea13749f8d1881ba50611f6dbfed71d8 /apps
parent6d0ee558e86beece998bfa032c06b091cf723355 (diff)
downloadrockbox-605949d48239551f721f5e8110d5f1001a2b2623.tar.gz
rockbox-605949d48239551f721f5e8110d5f1001a2b2623.zip
Hide symbols by default on 64 bit sim buildsto avoid clashing, fixes crashing on track change with the same codec, crashing in calculator and text display in midiplay
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14953 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/codecs.h3
-rw-r--r--apps/plugin.h3
2 files changed, 4 insertions, 2 deletions
diff --git a/apps/codecs.h b/apps/codecs.h
index 50bc36baa2..a59a791d42 100644
--- a/apps/codecs.h
+++ b/apps/codecs.h
@@ -267,7 +267,8 @@ extern unsigned char plugin_end_addr[];
267#else /* def SIMULATOR */ 267#else /* def SIMULATOR */
268/* decoders */ 268/* decoders */
269#define CODEC_HEADER \ 269#define CODEC_HEADER \
270 const struct codec_header __header = { \ 270 const struct codec_header __header \
271 __attribute__((visibility("default"))) = { \
271 CODEC_MAGIC, TARGET_ID, CODEC_API_VERSION, \ 272 CODEC_MAGIC, TARGET_ID, CODEC_API_VERSION, \
272 NULL, NULL, codec_start }; 273 NULL, NULL, codec_start };
273/* encoders */ 274/* encoders */
diff --git a/apps/plugin.h b/apps/plugin.h
index 5f868e5654..5f98f951e6 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -655,7 +655,8 @@ extern unsigned char plugin_end_addr[];
655 plugin_start_addr, plugin_end_addr, plugin_start }; 655 plugin_start_addr, plugin_end_addr, plugin_start };
656#else /* SIMULATOR */ 656#else /* SIMULATOR */
657#define PLUGIN_HEADER \ 657#define PLUGIN_HEADER \
658 const struct plugin_header __header = { \ 658 const struct plugin_header __header \
659 __attribute__((visibility("default"))) = { \
659 PLUGIN_MAGIC, TARGET_ID, PLUGIN_API_VERSION, \ 660 PLUGIN_MAGIC, TARGET_ID, PLUGIN_API_VERSION, \
660 NULL, NULL, plugin_start }; 661 NULL, NULL, plugin_start };
661#endif /* SIMULATOR */ 662#endif /* SIMULATOR */