Mercurial > lcfOS
view user/makeuser.py @ 327:61c9df5bffce
Changed emulated board to cortex a8 board
author | Windel Bouwman |
---|---|
date | Sat, 01 Feb 2014 17:21:21 +0100 |
parents | 084cccaa5deb |
children |
line wrap: on
line source
#!/usr/bin/env python import sys import os def fix(srcs, extra_args): import zcc arglist = srcs arglist += ['--target', 'arm'] arglist += extra_args args = zcc.parser.parse_args(arglist) zcc.main(args) def make_user(extra_args=[]): fix(['lib.c3', 'ipc.c3', 'hello.c3'], extra_args) fix(['lib.c3', 'ipc.c3', 'screen.c3'], extra_args) fix(['lib.c3', 'ipc.c3', 'console.c3'], extra_args) if __name__ == '__main__': sys.path.insert(0, os.path.join('..', 'python')) make_user(sys.argv[1:])