HAOUAS Elyes has uploaded this change for review. ( https://review.coreboot.org/c/flashrom/+/44197 )
Change subject: meson.build: Use 'std=c17' ......................................................................
meson.build: Use 'std=c17'
Currently, C17 is used as no C language dialect options are given. So meson should use the same.
Change-Id: Id47c840c2ef24e57917ccd74e86418e700e6e409 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M meson.build 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/97/44197/1
diff --git a/meson.build b/meson.build index 04176f3..7675a34 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ version : run_command('util/getversion.sh', '-v').stdout().strip(), license : 'GPL-2.0', meson_version : '>=0.47.0', - default_options : ['warning_level=2', 'c_std=c99'], + default_options : ['warning_level=2', 'c_std=c17'], )
# libtool versioning
Angel Pons has posted comments on this change. ( https://review.coreboot.org/c/flashrom/+/44197 )
Change subject: meson.build: Use 'std=c17' ......................................................................
Patch Set 1: Code-Review-1
AFAIUI, GCC by default uses *gnu17* according to the documentation: https://gcc.gnu.org/onlinedocs/gcc/Standards.html
The default, if no C language dialect options are given, is -std=gnu17.
Plus, not everyone is using the latest GCC to compile flashrom.
Hello build bot (Jenkins), Nico Huber, Angel Pons,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/flashrom/+/44197
to look at the new patch set (#2).
Change subject: meson.build: Use 'std=c17' ......................................................................
meson.build: Use 'std=c17'
Currently, gnu17 is used as no C language dialect options are given. So meson should use the same.
Change-Id: Id47c840c2ef24e57917ccd74e86418e700e6e409 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M meson.build 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/97/44197/2
Hello build bot (Jenkins), Nico Huber, Angel Pons,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/flashrom/+/44197
to look at the new patch set (#3).
Change subject: meson.build: Use 'std=c17' ......................................................................
meson.build: Use 'std=c17'
Currently, gnu17 is used as no C language dialect options are given. So meson should use the same.
Change-Id: Id47c840c2ef24e57917ccd74e86418e700e6e409 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M meson.build 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/97/44197/3
Hello build bot (Jenkins), Nico Huber, Angel Pons,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/flashrom/+/44197
to look at the new patch set (#4).
Change subject: meson.build: Use 'std=gnu17' ......................................................................
meson.build: Use 'std=gnu17'
Currently, gnu17 is used as no C language dialect options are given. So meson should use the same.
Change-Id: Id47c840c2ef24e57917ccd74e86418e700e6e409 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M meson.build 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/97/44197/4
Angel Pons has posted comments on this change. ( https://review.coreboot.org/c/flashrom/+/44197 )
Change subject: meson.build: Use 'std=gnu17' ......................................................................
Patch Set 4:
Patch Set 1: Code-Review-1
AFAIUI, GCC by default uses *gnu17* according to the documentation: https://gcc.gnu.org/onlinedocs/gcc/Standards.html
The default, if no C language dialect options are given, is -std=gnu17.
Plus, not everyone is using the latest GCC to compile flashrom.
Why not just remove the specified C standard? The official build system (Makefile) does not seem to set it.
HAOUAS Elyes has posted comments on this change. ( https://review.coreboot.org/c/flashrom/+/44197 )
Change subject: meson.build: Use 'std=gnu17' ......................................................................
Patch Set 4:
Patch Set 4:
Patch Set 1: Code-Review-1
AFAIUI, GCC by default uses *gnu17* according to the documentation: https://gcc.gnu.org/onlinedocs/gcc/Standards.html
The default, if no C language dialect options are given, is -std=gnu17.
Plus, not everyone is using the latest GCC to compile flashrom.
Why not just remove the specified C standard? The official build system (Makefile) does not seem to set it.
done
HAOUAS Elyes has abandoned this change. ( https://review.coreboot.org/c/flashrom/+/44197 )
Change subject: meson.build: Use 'std=gnu17' ......................................................................
Abandoned