mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-18 18:59:44 +00:00
68337fb5f6
On an XPedite5170 over 11KBytes were saved: Before: text data bss dec hex filename 319488 28700 33204 381392 5d1d0 ./u-boot After: text data bss dec hex filename 307663 29144 33204 370011 5a55b ./u-boot Signed-off-by: Peter Tyser <ptyser@xes-inc.com> Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34 lines
1.2 KiB
Makefile
34 lines
1.2 KiB
Makefile
#
|
|
# (C) Copyright 2004 Freescale Semiconductor.
|
|
# Jeff Brown
|
|
#
|
|
# See file CREDITS for list of people who contributed to this
|
|
# project.
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License as
|
|
# published by the Free Software Foundation; either version 2 of
|
|
# the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
# MA 02111-1307 USA
|
|
#
|
|
|
|
PLATFORM_RELFLAGS += -fPIC -meabi
|
|
|
|
PLATFORM_CPPFLAGS += -ffixed-r2 -mstring
|
|
PLATFORM_CPPFLAGS += -maltivec -mabi=altivec -msoft-float
|
|
|
|
# Enable gc-sections to enable generation of smaller images.
|
|
PLATFORM_LDFLAGS += --gc-sections
|
|
PLATFORM_RELFLAGS += -ffunction-sections -fdata-sections
|
|
|
|
# Use default linker script. Board port can override in board/*/config.mk
|
|
LDSCRIPT := $(SRCTREE)/arch/powerpc/cpu/mpc86xx/u-boot.lds
|