All of lore.kernel.org
 help / color / mirror / Atom feed
* [LTP] [RFC PATCH 1/1] config.mk: Explicitly set used C and C++ standard
@ 2017-04-14 12:23 Petr Vorel
  2017-04-27 13:10 ` Cyril Hrubis
  0 siblings, 1 reply; 3+ messages in thread
From: Petr Vorel @ 2017-04-14 12:23 UTC (permalink / raw)
  To: ltp

Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
IMHO If we really want to require old standard, we should explicitly say which one.
I suppose passing a flag is appropriate way than to use c89 as CC variable.
---
 include/mk/config.mk.default | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/mk/config.mk.default b/include/mk/config.mk.default
index dff3479db..ff67486a1 100644
--- a/include/mk/config.mk.default
+++ b/include/mk/config.mk.default
@@ -54,8 +54,8 @@ bindir			:= ${exec_prefix}/bin
 libdir			:= ${exec_prefix}/lib
 mandir			:= ${datarootdir}/man
 
-CPPFLAGS		:=
-CFLAGS			:= -g -O2
+CPPFLAGS		:= -std=c++98
+CFLAGS			:= -g -O2 -std=gnu89
 LDLIBS			:=
 LDFLAGS			:=
 
-- 
2.11.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [LTP] [RFC PATCH 1/1] config.mk: Explicitly set used C and C++ standard
  2017-04-14 12:23 [LTP] [RFC PATCH 1/1] config.mk: Explicitly set used C and C++ standard Petr Vorel
@ 2017-04-27 13:10 ` Cyril Hrubis
  2017-04-27 13:22   ` Petr Vorel
  0 siblings, 1 reply; 3+ messages in thread
From: Cyril Hrubis @ 2017-04-27 13:10 UTC (permalink / raw)
  To: ltp

Hi!
> IMHO If we really want to require old standard, we should explicitly say which one.
> I suppose passing a flag is appropriate way than to use c89 as CC variable.

Where do we say that we require old standard?

All I can think of is that we should produce portable code, which is
something completely different that sticking to a single C standard
revision...

-- 
Cyril Hrubis
chrubis@suse.cz

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [LTP] [RFC PATCH 1/1] config.mk: Explicitly set used C and C++ standard
  2017-04-27 13:10 ` Cyril Hrubis
@ 2017-04-27 13:22   ` Petr Vorel
  0 siblings, 0 replies; 3+ messages in thread
From: Petr Vorel @ 2017-04-27 13:22 UTC (permalink / raw)
  To: ltp

Hi Cyril,

> > IMHO If we really want to require old standard, we should explicitly say which one.
> > I suppose passing a flag is appropriate way than to use c89 as CC variable.

> Where do we say that we require old standard?
We don't, I just understood it from Alexeys' comments.

[1]:
Please also use checkpatch and fix any errors/warnings reported:
    total: 5 errors, 37 warnings

[2]:
Used default options for gcc in OL6, I guess in my case it has --std=gnu89
by default and you have something different, may be gnu99...

> All I can think of is that we should produce portable code, which is
> something completely different that sticking to a single C standard
> revision...
Make sense :-). Thanks for your comments, please forget on the patch.


Kind regards,
Petr

[1]: http://lists.linux.it/pipermail/ltp/2017-April/004230.html
[2]: http://lists.linux.it/pipermail/ltp/2017-April/004315.html

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-04-27 13:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-14 12:23 [LTP] [RFC PATCH 1/1] config.mk: Explicitly set used C and C++ standard Petr Vorel
2017-04-27 13:10 ` Cyril Hrubis
2017-04-27 13:22   ` Petr Vorel

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.