annotate scripts/test-setup-tms470.sh @ 107:b882091ebb68

gprscomp.c: DMEM_PARTITION_1_SIZE bumped from 1600 to 1700 for gcc These large DMEM partitions are used for T_CCD_Globs structure allocations by the GRLC and GRR entities, and this structure contains a jmp_buf for setjmp/longjmp. Our gcc/newlib version of jmp_buf is bigger than TI's TMS470, and the whole structure is now 1636 bytes instead of 1584.
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 23 Jul 2018 19:45:50 +0000
parents 5c4db73d289a
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
30
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
1 #!/bin/sh
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
2
88
b54e0f3759ff scripts/test-setup-tms470.sh: updated
Mychaela Falconia <falcon@freecalypso.org>
parents: 30
diff changeset
3 BUILD_DIR=build-test
30
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
4 TARGET=fcdev3b
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
5 CHIPSET=10
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
6 DSP=36
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
7 RF=12
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
8 L1_DYN_DSP_DWNLD=1
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
9 GPRS=1
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
10 SRVC=1
105
5c4db73d289a build system support for memory supervision
Mychaela Falconia <falcon@freecalypso.org>
parents: 88
diff changeset
11 MEMSUPER=0
30
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
12
105
5c4db73d289a build system support for memory supervision
Mychaela Falconia <falcon@freecalypso.org>
parents: 88
diff changeset
13 export BUILD_DIR TARGET CHIPSET DSP RF L1_DYN_DSP_DWNLD GPRS SRVC MEMSUPER
30
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
14
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
15 set -e
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
16
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
17 mkdir -p $BUILD_DIR
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
18 scripts/config-headers.sh
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
19 for i in `ls components`
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
20 do
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
21 echo $i
88
b54e0f3759ff scripts/test-setup-tms470.sh: updated
Mychaela Falconia <falcon@freecalypso.org>
parents: 30
diff changeset
22 if [ $i != libsys_fl -a $i != libsys_ir -a $i != main_ir ]
b54e0f3759ff scripts/test-setup-tms470.sh: updated
Mychaela Falconia <falcon@freecalypso.org>
parents: 30
diff changeset
23 then
b54e0f3759ff scripts/test-setup-tms470.sh: updated
Mychaela Falconia <falcon@freecalypso.org>
parents: 30
diff changeset
24 scripts/mk-component.sh $i
b54e0f3759ff scripts/test-setup-tms470.sh: updated
Mychaela Falconia <falcon@freecalypso.org>
parents: 30
diff changeset
25 fi
30
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
26 done