]>
Commit | Line | Data |
---|---|---|
8ae158cd TL |
1 | # |
2 | # (C) Copyright 2003 Josef Baumgartner <[email protected]> | |
3 | # | |
4 | # (C) Copyright 2000-2004 | |
5 | # Wolfgang Denk, DENX Software Engineering, [email protected]. | |
6 | # | |
45370e18 AW |
7 | # Copyright 2011-2012 Freescale Semiconductor, Inc. |
8 | # | |
1a459660 | 9 | # SPDX-License-Identifier: GPL-2.0+ |
8ae158cd TL |
10 | # |
11 | ||
51148790 MY |
12 | cfg=$(srctree)/include/configs/$(CONFIG_SYS_CONFIG_NAME:"%"=%).h |
13 | is5441x:=$(shell grep CONFIG_MCF5441x $(cfg)) | |
45370e18 AW |
14 | |
15 | ifneq (,$(findstring CONFIG_MCF5441x,$(is5441x))) | |
16 | PLATFORM_CPPFLAGS += -mcpu=54418 -fPIC | |
17 | else | |
d9240a5f | 18 | PLATFORM_CPPFLAGS += -mcpu=54455 -fPIC |
45370e18 | 19 | endif |
8371dc20 TL |
20 | |
21 | ifneq (,$(findstring -linux-,$(shell $(CC) --version))) | |
22 | ifneq (,$(findstring GOT,$(shell $(LD) --help))) | |
23 | PLATFORM_LDFLAGS += --got=single | |
24 | endif | |
25 | endif |