summaryrefslogtreecommitdiff
path: root/py/waf/defaults/bsp/h8300.py
blob: faa147536afe160bc7930f0d87aa24e923394a09 (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
from rtems_waf.config import Default, Config

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



class h8sim_shared(Base):
	def build(self, c):
		c.LINKCMDS		= ['src/lib/libbsp/h8300/h8sim/startup/linkcmds']
		c.LINK_START	= ['${RTEMS}/start.o', '-e', '_start']

class h8sxsim(h8sim_shared):
	name = "h8300/h8sxsim"

	def build(self, c):
		c.LINKCMDS		= ['src/lib/libbsp/h8300/h8sim/startup/linkcmds']


class h8sim(h8sim_shared):
	name = "h8300/h8sim"

	def build(self, c):
		c.LINKCMDS		= ['src/lib/libbsp/h8300/h8sim/startup/linkcmds']