diff options
| author | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2013-04-28 21:00:43 +0200 |
|---|---|---|
| committer | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2013-04-28 21:09:10 +0200 |
| commit | 850491a043a9341ef31ffb8c02eedd2ae7b2c53e (patch) | |
| tree | 686abad9b119452c95fc3a17b7dc5ca4246926cc /lib | |
| parent | 08199cd6cb1e2c600eb16ce077cc308fee82de33 (diff) | |
| download | rockbox-850491a043a9341ef31ffb8c02eedd2ae7b2c53e.zip rockbox-850491a043a9341ef31ffb8c02eedd2ae7b2c53e.tar.gz rockbox-850491a043a9341ef31ffb8c02eedd2ae7b2c53e.tar.bz2 rockbox-850491a043a9341ef31ffb8c02eedd2ae7b2c53e.tar.xz | |
Don't set CORE_GCSECTIONS in fixedpoint.make.
fixedpoint.make is not a subdir Makefile but a lib Makefile. Setting
CORE_GCSECTIONS in it will affect the final link and make it always use
--gc-sections (for SWCODEC Rockbox), since libfixedpoint is always needed
(bootloader and HWCODEC don't use libfixedpoint).
Fixes FS#12857.
Change-Id: Ib30bd03cbcea9c339a73daf7b673868aa3cc7a88
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/fixedpoint/fixedpoint.make | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/fixedpoint/fixedpoint.make b/lib/fixedpoint/fixedpoint.make index 0233e94..bfbde74 100644 --- a/lib/fixedpoint/fixedpoint.make +++ b/lib/fixedpoint/fixedpoint.make @@ -16,7 +16,6 @@ OTHER_SRC += $(FIXEDPOINTLIB_SRC) # If not SOFTWARECODECS, then only plugins depend upon us ifdef SOFTWARECODECS CORE_LIBS += $(FIXEDPOINTLIB) -CORE_GCSECTIONS := yes endif FIXEDPOINTLIB_FLAGS := $(CFLAGS) $(SHARED_CFLAGS) |