Re: [PATCH v2 13/21] kconfig: add CC_IS_GCC and GCC_VERSION

2018-03-28 Thread Kees Cook
On Mon, Mar 26, 2018 at 10:29 PM, Masahiro Yamada wrote: > This will be useful to specify the required compiler version, > like this: > > config FOO > bool "Use Foo" > depends on GCC_VERSION >= 408000 > help > This feature requires

Re: [PATCH v2 13/21] kconfig: add CC_IS_GCC and GCC_VERSION

2018-03-28 Thread Kees Cook
On Mon, Mar 26, 2018 at 10:29 PM, Masahiro Yamada wrote: > This will be useful to specify the required compiler version, > like this: > > config FOO > bool "Use Foo" > depends on GCC_VERSION >= 408000 > help > This feature requires GCC 4.8 or newer. > >

[PATCH v2 13/21] kconfig: add CC_IS_GCC and GCC_VERSION

2018-03-26 Thread Masahiro Yamada
This will be useful to specify the required compiler version, like this: config FOO bool "Use Foo" depends on GCC_VERSION >= 408000 help This feature requires GCC 4.8 or newer. Signed-off-by: Masahiro Yamada --- Changes in v2:

[PATCH v2 13/21] kconfig: add CC_IS_GCC and GCC_VERSION

2018-03-26 Thread Masahiro Yamada
This will be useful to specify the required compiler version, like this: config FOO bool "Use Foo" depends on GCC_VERSION >= 408000 help This feature requires GCC 4.8 or newer. Signed-off-by: Masahiro Yamada --- Changes in v2: None init/Kconfig | 8