diff 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
line wrap: on
line diff
--- a/python/zcc.py	Fri Apr 18 13:08:45 2014 +0200
+++ b/python/zcc.py	Sat Apr 26 17:41:56 2014 +0200
@@ -1,16 +1,13 @@
 #!/usr/bin/env python
 
 import sys
-import os
 import argparse
 import logging
 
 from ppci.tasks import TaskRunner
-import ppci.buildtasks
 from ppci.report import RstFormatter
-from ppci.objectfile import ObjectFile
-from ppci.target.target_list import targets, targetnames
 from ppci.recipe import RecipeLoader
+import ppci.buildtasks # Include not used, but it registers build tasks.
 import ppci