summaryrefslogtreecommitdiffstats
path: root/libopencm3/ld/Makefile.linker
blob: ae730a97c6b47edf77c3080fbf1a2f74f0895967 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
##
## This file is part of the libopencm3 project.
##
## Copyright (C) 2013 Frantisek Burian <BuFran@seznam.cz>
##
## Linker script generator feature
## -------------------------------
##
## This generator will generate <chipname>.ld linker script file in the project
## directory for the specified device, and this script will be automatically
## used as main linker script during the build process.
##
## WARNING: You must include this file after all shared variables are setup,
## and before the command section begins. Ideal place of the include is exactly
## after the all: rule in Your makefile.
##
## Options
## -------
##
## This feature is configured by specifying variable DEVICE=<device part name>
## in the makefile of Your project.
##
## WARNING Please don't forget to specify full name of the chip you are using.
## Many chip families have device specific letters specified on the end of
## device name string.
##
## Example:
## --------
##
## @code
## DEVICE=stm32f407vgt6
## <... common makefile code ...>
## all: images
##
## include <libopencm3 dir>/ld/Makefile.linker
##
## images: <....>
## @endcode

##
## This library is free software: you can redistribute it and/or modify
## it under the terms of the GNU Lesser General Public License as published by
## the Free Software Foundation, either version 3 of the License, or
## (at your option) any later version.
##
## This library 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 Lesser General Public License for more details.
##
## You should have received a copy of the GNU Lesser General Public License
## along with this library.  If not, see <http://www.gnu.org/licenses/>.
##

ifneq ($(DEVICE),)

LDSCRIPT=$(DEVICE).ld
LD_PARAMS=$(shell awk -v PAT="$(DEVICE)" -f $(SRCLIBDIR)/scripts/genlink.awk $(SRCLIBDIR)/ld/devices.data 2>/dev/null)
CFLAGS+=$(LD_PARAMS)
LDFLAGS+=$(LD_PARAMS)
ARCH_FLAGS=

$(LDSCRIPT):$(SRCLIBDIR)/ld/linker.ld.S
ifeq ($(LD_PARAMS),)
	$(error unknown device $(DEVICE) for the linker. Cannot generate ldscript)
endif
	@#printf "  GENLNK  $(subst $(shell pwd)/,,$(@))\n"
	$(Q)$(CC) $(LD_PARAMS) -P -E $< > $@

GENFILES += $(LDSCRIPT)
endif