From 6a989b8d4dec4750ad474598bd52897381d2f3cb Mon Sep 17 00:00:00 2001 From: Andree Buschmann Date: Wed, 7 Sep 2011 19:21:57 +0000 Subject: Submit FS#12258. Do not use '-ffunction-sections' and '-fdata-sections' when compiling. Fixes compiler warnings for mingw and cygwin simulatior builds. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30468 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/plugins.make | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'apps/plugins') diff --git a/apps/plugins/plugins.make b/apps/plugins/plugins.make index 0c667aaf24..41d2307682 100644 --- a/apps/plugins/plugins.make +++ b/apps/plugins/plugins.make @@ -87,10 +87,17 @@ $(BUILDDIR)/credits.raw credits.raw: $(DOCSDIR)/CREDITS # special dependencies $(BUILDDIR)/apps/plugins/wav2wv.rock: $(BUILDDIR)/apps/codecs/libwavpack.a $(PLUGINLIB) +# Do not use '-ffunction-sections' and '-fdata-sections' when compiling sdl-sim +ifeq ($(findstring sdl-sim, $(APP_TYPE)), sdl-sim) + PLUGINLIBFLAGS = $(PLUGINFLAGS) +else + PLUGINLIBFLAGS = $(PLUGINFLAGS) -ffunction-sections -fdata-sections +endif + # special pattern rule for compiling plugin lib (with function and data sections) $(BUILDDIR)/apps/plugins/lib/%.o: $(ROOTDIR)/apps/plugins/lib/%.c $(SILENT)mkdir -p $(dir $@) - $(call PRINTS,CC $(subst $(ROOTDIR)/,,$<))$(CC) -I$(dir $<) $(PLUGINFLAGS) -ffunction-sections -fdata-sections -c $< -o $@ + $(call PRINTS,CC $(subst $(ROOTDIR)/,,$<))$(CC) -I$(dir $<) $(PLUGINLIBFLAGS) -c $< -o $@ # special pattern rule for compiling plugins with extra flags $(BUILDDIR)/apps/plugins/%.o: $(ROOTDIR)/apps/plugins/%.c -- cgit v1.2.3