view python/ppci/target/target_list.py @ 366:39bf68bf1891

Fix sample tests and deterministic build
author Windel Bouwman
date Fri, 21 Mar 2014 09:43:01 +0100
parents b4882ff0ed06
children c0d9837acde8
line wrap: on
line source


from .arm import ArmTarget
from .thumb import ThumbTarget
from .msp430.msp430 import msp430target

# Instance:
arm_target = ArmTarget()
thumb_target = ThumbTarget()

target_list = [arm_target, thumb_target]
targets = {t.name: t for t in target_list}
targetnames = list(targets.keys())