comparison kernel/make.py @ 300:158068af716c

yafm
author Windel Bouwman
date Tue, 03 Dec 2013 18:00:22 +0100
parents 9417caea2eb3
children 0615b5308710
comparison
equal deleted inserted replaced
299:674789d9ff37 300:158068af716c
3 import sys 3 import sys
4 import os 4 import os
5 sys.path.insert(0, os.path.join('..', 'python')) 5 sys.path.insert(0, os.path.join('..', 'python'))
6 import zcc 6 import zcc
7 7
8 arglist = ['memory.c3', 'kernel.c3', 'syscall.c3', 'process.c3', 'schedule.c3'] 8 arglist = ['memory.c3', 'kernel.c3', 'syscall.c3', 'process.c3', 'schedule.c3', 'arch_arm.c3']
9 arglist += ['--target', 'arm'] 9 arglist += ['--target', 'arm']
10 arglist += ['--dumpasm'] 10 arglist += ['--dumpasm']
11 arglist += ['--log', 'debug'] 11 arglist += ['--log', 'debug']
12 12
13 args = zcc.parser.parse_args(arglist) 13 args = zcc.parser.parse_args(arglist)