summaryrefslogtreecommitdiff
path: root/bsps/arm/py/base.py
blob: 8502e370f525c097429142b2191afce2eaf8021c (plain)
1
2
3
4
5
6
7
8
9
10
11
from py.config import Default, Config


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

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