comparison python/zcc.py @ 381:6df89163e114

Fix section and ldr pseudo instruction
author Windel Bouwman
date Sat, 26 Apr 2014 17:41:56 +0200
parents 9667d78ba79e
children 6ae782a085e0
comparison
equal deleted inserted replaced
380:67a584582aee 381:6df89163e114
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 2
3 import sys 3 import sys
4 import os
5 import argparse 4 import argparse
6 import logging 5 import logging
7 6
8 from ppci.tasks import TaskRunner 7 from ppci.tasks import TaskRunner
9 import ppci.buildtasks
10 from ppci.report import RstFormatter 8 from ppci.report import RstFormatter
11 from ppci.objectfile import ObjectFile
12 from ppci.target.target_list import targets, targetnames
13 from ppci.recipe import RecipeLoader 9 from ppci.recipe import RecipeLoader
10 import ppci.buildtasks # Include not used, but it registers build tasks.
14 import ppci 11 import ppci
15 12
16 13
17 def logLevel(s): 14 def logLevel(s):
18 """ Converts a string to a valid logging level """ 15 """ Converts a string to a valid logging level """