Add the findToolchains function that allow to find the files that match the toolchain...
[bertos.git] / wizard / const.py
1 #!/usr/bin/env python
2 # encoding: utf-8
3 #
4 # Copyright 2008 Develer S.r.l. (http://www.develer.com/)
5 # All rights reserved.
6 #
7 # $Id:$
8 #
9 # Author: Lorenzo Berni <duplo@develer.com>
10 #
11
12 CPU_DEF = {
13     "TOOLCHAIN": [],
14     "CORE_CPU": "",
15     "SCRIPT_DIR": "",
16     "HW_DIR": "",
17     "DRV_DIR": "",
18     "CPPA_FLAGS" : [],
19     "CPP_FLAGS" : [],
20     "LD_FLAGS" : [],
21     "CPPA_SRC" : [],
22     "SUPPORTED_DRV" : [],
23     "PC_SRC" : [],
24     "CPU_DESC" : []
25 }
26
27 CPU_DEFINITION = "*.cdef"
28
29 GCC_NAME = "*gcc*"