source: rtems-tools/linkers/test-trace.ini @ 17c8364

4.104.115
Last change on this file since 17c8364 was 097f1fd, checked in by Chris Johns <chrisj@…>, on 08/07/14 at 08:15:06

rtms-tld: Refactor the code to match a better configuration format.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1;
2; RTEMS Trace Linker Test Configuration.
3;
4; We must provide a top level trace section.
5;
6[tracer]
7;
8; Name of the trace.
9;
10name = RTEMS Trace Linker Test
11;
12; The BSP.
13;
14bsp = sparc/sis
15;
16; Options can be defined here or on the command line.
17;
18options = all-funcs, verbose
19;
20; Functions to trace.
21;
22traces = test-trace, test-trace-funcs, rtems-api-task
23;
24; Define the function sets. These are the function's that can be
25; added to the trace lists.
26;
27functions = test-trace-funcs, rtems-api
28;
29; Include RTEMS Trace support.
30;
31include = rtems.ini, rtld-base.ini
32
33;
34; User application trace example.
35;
36[test-trace]
37generator = printf-generator
38; Just here for testing.
39trace = test_trace_3
40
41[test-trace-funcs]
42; Parsed via the 'function-set', not parse as a 'trace'.
43headers = test-headers
44header = '#include "test-trace-2.h"'
45defines = test-defines
46define = "#define TEST_TRACE_2 2"
47signatures = test-signatures
48; Parsed via the 'trace', not parsed as a function-set
49trace = test_trace_1, test_trace_2
50
51[test-headers]
52header = '#include "test-trace-1.h"'
53
54[test-defines]
55define = "#define TEST_TRACE_1 1"
56
57[test-signatures]
58test_trace_1 = void, int
59test_trace_2 = test_type_2, test_type_1
60test_trace_3 = float, float*
Note: See TracBrowser for help on using the repository browser.