summaryrefslogtreecommitdiff
path: root/py/waf/defaults/bsp/mips.py
blob: eb2ad83b938a3a56cf62b93fa0cf8fc9361bb99b (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
72
73
74
75
76
77
78
79
80
from py.config import Default, Config

class Base(Config):
	arch = name = "mips"
	conflicts=("clang",)

	def build(self, c):
		c.LINK_START	= ['${RTEMS}/start.o', 'crti.o', 'crtbegin.o', '-e', 'start']
		c.LINK_END	= ['crtend.o', 'crtn.o']


class csb350(Base):
	name = "mips/csb350"

	def build(self, c):
		c.CFLAGS		= ['-mips32', '-G0', '-msoft-float']
		c.LDFLAGS		= ['-msoft-float']
		c.LINKCMDS		= ['src/lib/libbsp/mips/csb350/startup/linkcmds']
		c.LINK_START	= ['${RTEMS}/start.o', 'crti.o', 'crtbegin.o', '-e', '_start']


class genmongoosev(Base):
	name = "mips/genmongoosev"

	def build(self, c):
		c.CFLAGS		= ['-mips1', '-G0']
		c.LINKCMDS		= ['src/lib/libbsp/mips/genmongoosev/startup/linkcmds']


class hurricane(Base):
	name = "mips/hurricane"

	def build(self, c):
		c.CFLAGS		= ['-mips3', '-G0', '-EL']
		c.LINKCMDS		= ['src/lib/libbsp/mips/hurricane/startup/linkcmds']
		c.LINK_LINK		= ['-EL'] # work around gcc driver bug

	def header(self, c):
		c.BSP_HAS_RM52xx		= Default
		c.BSP_HAS_USC320		= Default



class jmr3904(Base):
	name = "mips/jmr3904"

	def build(self, c):
		c.CFLAGS		= ['-march=r3900', '-Wa,-xgot', '-G0']
		c.LINKCMDS		= ['src/lib/libbsp/mips/jmr3904/startup/linkcmds']



class malta(Base):
	name = "mips/malta"

	def build(self, c):
		c.CFLAGS		= ['-march=24kf1_1', '-Wa,-xgot', '-G0']
		c.LINKCMDS		= ['src/lib/libbsp/mips/malta/startup/linkcmds']


class rbtx4925(Base):
	name = "mips/rbtx4925"

	def build(self, c):
		c.CFLAGS		= ['-mips3', '-G0', '-EL']
		c.LINKCMDS		= ['src/lib/libbsp/mips/rbtx4925/startup/linkcmds']
		c.LINK_LINK		= ['-EL'] # work around gcc driver bug

	def header(self, c):
		c.BSP_HAS_TX49xx		= Default



class rbtx4938(Base):
	name = "mips/rbtx4938"

	def build(self, c):
		c.CFLAGS		= ['-mips3', '-G0', '-EL']
		c.LINKCMDS		= ['src/lib/libbsp/mips/rbtx4938/startup/linkcmds']
		c.LINK_LINK		= ['-EL'] # work around gcc driver bug