aboutsummaryrefslogtreecommitdiff
path: root/benchmarks/common/test.ld
blob: dda2a7f528ccd6e8b8ce964c03fefbf9995e4435 (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
/*======================================================================*/
/* Proxy kernel linker script                                           */
/*======================================================================*/
/* This is the linker script used when building the proxy kernel. */

/*----------------------------------------------------------------------*/
/* Setup                                                                */
/*----------------------------------------------------------------------*/

/* The OUTPUT_ARCH command specifies the machine architecture where the
   argument is one of the names used in the BFD library. More
   specifically one of the entires in bfd/cpu-mips.c */

OUTPUT_ARCH( "riscv" )

/* The ENTRY command specifies the entry point (ie. first instruction
   to execute). The symbol _start should be defined in each test. */

ENTRY( _start )

/*----------------------------------------------------------------------*/
/* Sections                                                             */
/*----------------------------------------------------------------------*/

SECTIONS
{

  /* text: test code section */
  . = 0x00002000;
  .text : 
  {
    crt.o(.text)
    *(.text)
  }

  /* data segmemt */
  .data : { *(.data) }
  .bss : { *(.bss) }

  /* thread-local data segment */
  .tbss : { 
    crt.o(.tbss) /* Make sure tls_start is the first TLS symbol */
    *(.tbss)
  }
  .tdata : { *(.tdata) }

  /* End of uninitalized data segement */
  _end = .;
}