summaryrefslogtreecommitdiff
path: root/py/waf/defaults/bsp/m32r.py
blob: 9ad5fad991cda84d894f4309acdbc4cbf3b794a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from rtems_waf.config import Default, Config

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



class m32rsim(Base):
	name = "m32r/m32rsim"

	def build(self, c):
		c.LINKCMDS		= ['src/lib/libbsp/m32r/m32rsim/startup/linkcmds']
		c.LINK_START	= ['${RTEMS}/start.o', 'crtinit.o', '-e', '_start']