kconfig/zconf.gperf
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Jul 17 22:43:07 2011 +0200 (2011-07-17)
changeset 2893 a8a65758664f
permissions -rw-r--r--
cc/gcc: do not use the core pass-2 to build the baremetal compiler

In case we build a baremetal compiler, use the standard passes:
- core_cc is used to build the C library;
- as such, it is meant to run on build, not host;
- the final compiler is meant to run on host;

As the current final compiler step can not build a baremetal compiler,
call the core backend from the final step.

NB: Currently, newlib is built during the start_files pass, so we have
to have a core compiler by then... Once we can build the baremetal
compiler from the final cc step, then we can move the newlib build to
the proper step, and then get rid of the core pass-1 static compiler...

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
     1 %language=ANSI-C
     2 %define hash-function-name kconf_id_hash
     3 %define lookup-function-name kconf_id_lookup
     4 %define string-pool-name kconf_id_strings
     5 %compare-strncmp
     6 %enum
     7 %pic
     8 %struct-type
     9 
    10 struct kconf_id;
    11 
    12 static struct kconf_id *kconf_id_lookup(register const char *str, register unsigned int len);
    13 
    14 %%
    15 mainmenu,	T_MAINMENU,	TF_COMMAND
    16 menu,		T_MENU,		TF_COMMAND
    17 endmenu,	T_ENDMENU,	TF_COMMAND
    18 source,		T_SOURCE,	TF_COMMAND
    19 choice,		T_CHOICE,	TF_COMMAND
    20 endchoice,	T_ENDCHOICE,	TF_COMMAND
    21 comment,	T_COMMENT,	TF_COMMAND
    22 config,		T_CONFIG,	TF_COMMAND
    23 menuconfig,	T_MENUCONFIG,	TF_COMMAND
    24 help,		T_HELP,		TF_COMMAND
    25 if,		T_IF,		TF_COMMAND|TF_PARAM
    26 endif,		T_ENDIF,	TF_COMMAND
    27 depends,	T_DEPENDS,	TF_COMMAND
    28 optional,	T_OPTIONAL,	TF_COMMAND
    29 default,	T_DEFAULT,	TF_COMMAND, S_UNKNOWN
    30 prompt,		T_PROMPT,	TF_COMMAND
    31 tristate,	T_TYPE,		TF_COMMAND, S_TRISTATE
    32 def_tristate,	T_DEFAULT,	TF_COMMAND, S_TRISTATE
    33 bool,		T_TYPE,		TF_COMMAND, S_BOOLEAN
    34 boolean,	T_TYPE,		TF_COMMAND, S_BOOLEAN
    35 def_bool,	T_DEFAULT,	TF_COMMAND, S_BOOLEAN
    36 int,		T_TYPE,		TF_COMMAND, S_INT
    37 hex,		T_TYPE,		TF_COMMAND, S_HEX
    38 string,		T_TYPE,		TF_COMMAND, S_STRING
    39 select,		T_SELECT,	TF_COMMAND
    40 range,		T_RANGE,	TF_COMMAND
    41 visible,	T_VISIBLE,	TF_COMMAND
    42 option,		T_OPTION,	TF_COMMAND
    43 on,		T_ON,		TF_PARAM
    44 modules,	T_OPT_MODULES,	TF_OPTION
    45 defconfig_list,	T_OPT_DEFCONFIG_LIST,TF_OPTION
    46 env,		T_OPT_ENV,	TF_OPTION
    47 %%