annotate makefile-frags/link-steps @ 548:9f191ca0051f

implemented ability to enable -D_FF_RV_EXIST_ in TIF library It is not clear if this quirk is intentional or not, but TI's production version of tif_na7_db_{fl,ir}.lib was built without -D_FF_RV_EXIST_, and as a result, the code that is present in the source for the TRACEMASK_IN_FFS feature was not compiled in, making the feature unavailable. The present change makes it possible to re-enable this code (when TIF libraries are being rebuilt from source rather than used as blobs) by setting TRACEMASK_IN_FFS=1 on the configure line. The new code is NOT enabled by default: it is not a change which we can justify inflicting on our production firmwares.
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 18 Nov 2018 08:09:17 +0000
parents 9432dd63626b
children deabd7b91828
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
250
9432dd63626b firmware ident and build date mechanism implemented at the build level
Mychaela Falconia <falcon@freecalypso.org>
parents: 88
diff changeset
1 build_date.c: ${LIBS}
9432dd63626b firmware ident and build date mechanism implemented at the build level
Mychaela Falconia <falcon@freecalypso.org>
parents: 88
diff changeset
2 ../helpers/build-date ${CONFIG_NAME} > $@
9432dd63626b firmware ident and build date mechanism implemented at the build level
Mychaela Falconia <falcon@freecalypso.org>
parents: 88
diff changeset
3
9432dd63626b firmware ident and build date mechanism implemented at the build level
Mychaela Falconia <falcon@freecalypso.org>
parents: 88
diff changeset
4 build_date.obj: build_date.c
9432dd63626b firmware ident and build date mechanism implemented at the build level
Mychaela Falconia <falcon@freecalypso.org>
parents: 88
diff changeset
5 ../toolwrap/cl470 -q -c -me -mt -o -pw2 -x -mw build_date.c
9432dd63626b firmware ident and build date mechanism implemented at the build level
Mychaela Falconia <falcon@freecalypso.org>
parents: 88
diff changeset
6
61
dba3f097489e makefile-frags: initial concept
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
7 str2ind.obj: str2ind.c
dba3f097489e makefile-frags: initial concept
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
8 ../toolwrap/cl470 -q -c -me -mt -o -pw2 -x -mw str2ind.c
dba3f097489e makefile-frags: initial concept
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
9
dba3f097489e makefile-frags: initial concept
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
10 link.cmd: ${LINK_SCRIPT_SRC} Makefile lcfgen
63
065aacae8b37 makefile-frags/link-steps: it's make_cmd.pl, not make-cmd.pl
Mychaela Falconia <falcon@freecalypso.org>
parents: 61
diff changeset
11 perl ../scripts/ti/make_cmd.pl lcfgen $@ 0 ${LINK_SCRIPT_SRC} \
61
dba3f097489e makefile-frags: initial concept
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
12 ${SPECIAL_LINK_LIBS}
dba3f097489e makefile-frags: initial concept
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
13
250
9432dd63626b firmware ident and build date mechanism implemented at the build level
Mychaela Falconia <falcon@freecalypso.org>
parents: 88
diff changeset
14 fwimage.out: ${LIBS} build_date.obj str2ind.obj link.cmd
64
84f4a04fde24 TI's linker doesn't like hyphens in filenames
Mychaela Falconia <falcon@freecalypso.org>
parents: 63
diff changeset
15 ../toolwrap/vlnk470 -farcall -x -o $@ -m fwimage.map $^
61
dba3f097489e makefile-frags: initial concept
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
16
64
84f4a04fde24 TI's linker doesn't like hyphens in filenames
Mychaela Falconia <falcon@freecalypso.org>
parents: 63
diff changeset
17 fwimage.m0: fwimage.out
84f4a04fde24 TI's linker doesn't like hyphens in filenames
Mychaela Falconia <falcon@freecalypso.org>
parents: 63
diff changeset
18 ../toolwrap/hex470 -m -memwidth 16 -romwidth 16 $<
61
dba3f097489e makefile-frags: initial concept
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
19