Re: [PATCH rtems-tools] trace: Use c++14 instead of c++11 if possible

2020-07-23 Thread Christian Mauderer
Hello Joel, On 22/07/2020 21:39, Joel Sherrill wrote: > > > On Wed, Jul 22, 2020 at 2:26 PM Christian Mauderer > wrote: > > Ping again. > > It's clearly not BSP specific. So I would like to get an approval for > that before pushing it anywhere. > > > C

Re: [PATCH rtems-tools] trace: Use c++14 instead of c++11 if possible

2020-07-22 Thread Joel Sherrill
On Wed, Jul 22, 2020 at 2:26 PM Christian Mauderer wrote: > Ping again. > > It's clearly not BSP specific. So I would like to get an approval for > that before pushing it anywhere. > CentOS 7's gcc appears to have the option and I would assume this is the oldest distribution anyone is using. $

Re: [PATCH rtems-tools] trace: Use c++14 instead of c++11 if possible

2020-07-22 Thread Christian Mauderer
Ping again. It's clearly not BSP specific. So I would like to get an approval for that before pushing it anywhere. On 15/06/2020 17:36, Christian Mauderer wrote: > Ping. > > Currently shouldn't be a matter for much hosts (less than 20 including > FreeBSD, Fedora, Arch, openSUSE according to dist

Re: [PATCH rtems-tools] trace: Use c++14 instead of c++11 if possible

2020-06-15 Thread Christian Mauderer
Ping. Currently shouldn't be a matter for much hosts (less than 20 including FreeBSD, Fedora, Arch, openSUSE according to distrowatch [1]) but I assume that llvm 10 will spread fast. [1] http://distrowatch.org/search.php?pkg=llvm&relation=greaterequal&pkgver=10&distrorange=InLatest#pkgsearch O

[PATCH rtems-tools] trace: Use c++14 instead of c++11 if possible

2020-06-07 Thread Christian Mauderer
llvm version 10 uses features from c++14 standard in the headers. With that, the record/record-main-lttng.cc doesn't build any more. This patch makes sure that c++14 is used if it is available. --- trace/wscript | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/trace/wscript