From 5d190bc13ca9af15d50029ecbcb5c178ed3f2b85 Mon Sep 17 00:00:00 2001 From: Tom Ross Date: Fri, 27 Feb 2009 07:30:41 +0000 Subject: Mac doesn't handle placing variables in specific sections very well. Building the sim on OS X is now possible once again. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20124 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugin.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/plugin.h') diff --git a/apps/plugin.h b/apps/plugin.h index 84c3d25..1c8682f 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -805,14 +805,14 @@ struct plugin_header { extern unsigned char plugin_start_addr[]; extern unsigned char plugin_end_addr[]; #define PLUGIN_HEADER \ - const struct plugin_api *rb __attribute__ ((section (".data"))); \ + const struct plugin_api *rb DATA_ATTR; \ const struct plugin_header __header \ __attribute__ ((section (".header")))= { \ PLUGIN_MAGIC, TARGET_ID, PLUGIN_API_VERSION, \ plugin_start_addr, plugin_end_addr, plugin_start, &rb }; #else /* SIMULATOR */ #define PLUGIN_HEADER \ - const struct plugin_api *rb __attribute__ ((section (".data"))); \ + const struct plugin_api *rb DATA_ATTR; \ const struct plugin_header __header \ __attribute__((visibility("default"))) = { \ PLUGIN_MAGIC, TARGET_ID, PLUGIN_API_VERSION, \ -- cgit v1.1