Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* gdb/testsuite/compiler.c[c]: Identify clang
@ 2014-04-07 20:39 David Blaikie
  2014-04-07 20:54 ` Doug Evans
  0 siblings, 1 reply; 4+ messages in thread
From: David Blaikie @ 2014-04-07 20:39 UTC (permalink / raw)
  To: gdb-patches, Eric Christopher, Doug Evans

[-- Attachment #1: Type: text/plain, Size: 503 bytes --]

Adding support for the testsuite to correctly identify the clang
compiler (previously it caught the generic GCC detection and was
identified as GCC 4.2).

This reduces some of the test failures when running the suite with
Clang - for example the macro tests no longer run or fail (since
they're only enabled for GCC).

    * compiler.c: identify the clang compiler

(do I need a separate ChangeLog line for compiler.cc too? should the
ChangeLog entry have the full path (gdb/testsuite/lib/compiler.c)?)

[-- Attachment #2: gdb-clang-ver.diff --]
[-- Type: text/plain, Size: 946 bytes --]

diff --git gdb/testsuite/lib/compiler.c gdb/testsuite/lib/compiler.c
index afa0e59..c28367b 100644
--- gdb/testsuite/lib/compiler.c
+++ gdb/testsuite/lib/compiler.c
@@ -73,3 +73,7 @@ set need_a_set [regsub -all {\.} [join {xlc __xlc__} -] - compiler_info]
 #if defined (__ARMCC_VERSION)
 set compiler_info [join {armcc __ARMCC_VERSION} -]
 #endif
+
+#if defined (__clang__)
+set compiler_info [join {clang __clang_major__ __clang_minor__ __clang_patchlevel__} -]
+#endif
diff --git gdb/testsuite/lib/compiler.cc gdb/testsuite/lib/compiler.cc
index ee251bc..79c68b4 100644
--- gdb/testsuite/lib/compiler.cc
+++ gdb/testsuite/lib/compiler.cc
@@ -61,3 +61,7 @@ set need_a_set [regsub -all {\.} [join {xlc __xlc__} -] - compiler_info]
 #if defined (__ARMCC_VERSION)
 set compiler_info [join {armcc __ARMCC_VERSION} -]
 #endif
+
+#if defined (__clang__)
+set compiler_info [join {clang __clang_major__ __clang_minor__ __clang_patchlevel__} -]
+#endif

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

* Re: gdb/testsuite/compiler.c[c]: Identify clang
  2014-04-07 20:39 gdb/testsuite/compiler.c[c]: Identify clang David Blaikie
@ 2014-04-07 20:54 ` Doug Evans
  2014-04-07 21:07   ` David Blaikie
  0 siblings, 1 reply; 4+ messages in thread
From: Doug Evans @ 2014-04-07 20:54 UTC (permalink / raw)
  To: David Blaikie; +Cc: gdb-patches, Eric Christopher

David Blaikie writes:
 > Adding support for the testsuite to correctly identify the clang
 > compiler (previously it caught the generic GCC detection and was
 > identified as GCC 4.2).
 > 
 > This reduces some of the test failures when running the suite with
 > Clang - for example the macro tests no longer run or fail (since
 > they're only enabled for GCC).
 > 
 >     * compiler.c: identify the clang compiler
 > 
 > (do I need a separate ChangeLog line for compiler.cc too? should the
 > ChangeLog entry have the full path (gdb/testsuite/lib/compiler.c)?)
 > diff --git gdb/testsuite/lib/compiler.c gdb/testsuite/lib/compiler.c
 > index afa0e59..c28367b 100644
 > --- gdb/testsuite/lib/compiler.c
 > +++ gdb/testsuite/lib/compiler.c
 > @@ -73,3 +73,7 @@ set need_a_set [regsub -all {\.} [join {xlc __xlc__} -] - compiler_info]
 >  #if defined (__ARMCC_VERSION)
 >  set compiler_info [join {armcc __ARMCC_VERSION} -]
 >  #endif
 > +
 > +#if defined (__clang__)
 > +set compiler_info [join {clang __clang_major__ __clang_minor__ __clang_patchlevel__} -]
 > +#endif
 > diff --git gdb/testsuite/lib/compiler.cc gdb/testsuite/lib/compiler.cc
 > index ee251bc..79c68b4 100644
 > --- gdb/testsuite/lib/compiler.cc
 > +++ gdb/testsuite/lib/compiler.cc
 > @@ -61,3 +61,7 @@ set need_a_set [regsub -all {\.} [join {xlc __xlc__} -] - compiler_info]
 >  #if defined (__ARMCC_VERSION)
 >  set compiler_info [join {armcc __ARMCC_VERSION} -]
 >  #endif
 > +
 > +#if defined (__clang__)
 > +set compiler_info [join {clang __clang_major__ __clang_minor__ __clang_patchlevel__} -]
 > +#endif

Hi.

Here's a changelog entry to use for this particular case.
The format has lots of precise rules behind it, but Monkey-See-Monkey-Do hacking should get you most if not all of the way there.

2014-04-07  David Blaikie  <dblaikie@gmail.com>

	* lib/compiler.c: Identify the clang compiler.
	* lib/compiler.cc: Ditto.

In general, all edited files need to be mentioned (though there is debate over this for some cases, wheee....), and path names are required to be relative to the directory in which the ChangeLog lives.
There is a convention for how to submit a changelog entry involving multiple ChangeLog files, but there's no need to go into that here.


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

* Re: gdb/testsuite/compiler.c[c]: Identify clang
  2014-04-07 20:54 ` Doug Evans
@ 2014-04-07 21:07   ` David Blaikie
  2014-04-07 21:16     ` Doug Evans
  0 siblings, 1 reply; 4+ messages in thread
From: David Blaikie @ 2014-04-07 21:07 UTC (permalink / raw)
  To: Doug Evans; +Cc: gdb-patches, Eric Christopher

On Mon, Apr 7, 2014 at 1:54 PM, Doug Evans <dje@google.com> wrote:
> David Blaikie writes:
>  > Adding support for the testsuite to correctly identify the clang
>  > compiler (previously it caught the generic GCC detection and was
>  > identified as GCC 4.2).
>  >
>  > This reduces some of the test failures when running the suite with
>  > Clang - for example the macro tests no longer run or fail (since
>  > they're only enabled for GCC).
>  >
>  >     * compiler.c: identify the clang compiler
>  >
>  > (do I need a separate ChangeLog line for compiler.cc too? should the
>  > ChangeLog entry have the full path (gdb/testsuite/lib/compiler.c)?)
>  > diff --git gdb/testsuite/lib/compiler.c gdb/testsuite/lib/compiler.c
>  > index afa0e59..c28367b 100644
>  > --- gdb/testsuite/lib/compiler.c
>  > +++ gdb/testsuite/lib/compiler.c
>  > @@ -73,3 +73,7 @@ set need_a_set [regsub -all {\.} [join {xlc __xlc__} -] - compiler_info]
>  >  #if defined (__ARMCC_VERSION)
>  >  set compiler_info [join {armcc __ARMCC_VERSION} -]
>  >  #endif
>  > +
>  > +#if defined (__clang__)
>  > +set compiler_info [join {clang __clang_major__ __clang_minor__ __clang_patchlevel__} -]
>  > +#endif
>  > diff --git gdb/testsuite/lib/compiler.cc gdb/testsuite/lib/compiler.cc
>  > index ee251bc..79c68b4 100644
>  > --- gdb/testsuite/lib/compiler.cc
>  > +++ gdb/testsuite/lib/compiler.cc
>  > @@ -61,3 +61,7 @@ set need_a_set [regsub -all {\.} [join {xlc __xlc__} -] - compiler_info]
>  >  #if defined (__ARMCC_VERSION)
>  >  set compiler_info [join {armcc __ARMCC_VERSION} -]
>  >  #endif
>  > +
>  > +#if defined (__clang__)
>  > +set compiler_info [join {clang __clang_major__ __clang_minor__ __clang_patchlevel__} -]
>  > +#endif
>
> Hi.
>
> Here's a changelog entry to use for this particular case.
> The format has lots of precise rules behind it, but Monkey-See-Monkey-Do hacking should get you most if not all of the way there.
>
> 2014-04-07  David Blaikie  <dblaikie@gmail.com>
>
>         * lib/compiler.c: Identify the clang compiler.
>         * lib/compiler.cc: Ditto.
>
> In general, all edited files need to be mentioned (though there is debate over this for some cases, wheee....), and path names are required to be relative to the directory in which the ChangeLog lives.
> There is a convention for how to submit a changelog entry involving multiple ChangeLog files, but there's no need to go into that here.

Thanks

Oh, and I realized I didn't actually specify, but I don't have commit
access to gdb so if the patch (and suggested ChangeLog) are acceptable
it'd be great if someone could commit it for me.

Thanks!
- David


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

* Re: gdb/testsuite/compiler.c[c]: Identify clang
  2014-04-07 21:07   ` David Blaikie
@ 2014-04-07 21:16     ` Doug Evans
  0 siblings, 0 replies; 4+ messages in thread
From: Doug Evans @ 2014-04-07 21:16 UTC (permalink / raw)
  To: David Blaikie; +Cc: gdb-patches, Eric Christopher

On Mon, Apr 7, 2014 at 2:07 PM, David Blaikie <dblaikie@gmail.com> wrote:
> On Mon, Apr 7, 2014 at 1:54 PM, Doug Evans <dje@google.com> wrote:
>> David Blaikie writes:
>>  > Adding support for the testsuite to correctly identify the clang
>>  > compiler (previously it caught the generic GCC detection and was
>>  > identified as GCC 4.2).
>>  >
>>  > This reduces some of the test failures when running the suite with
>>  > Clang - for example the macro tests no longer run or fail (since
>>  > they're only enabled for GCC).
>>  >
>>  >     * compiler.c: identify the clang compiler
>>  >
>>  > (do I need a separate ChangeLog line for compiler.cc too? should the
>>  > ChangeLog entry have the full path (gdb/testsuite/lib/compiler.c)?)
>>  > diff --git gdb/testsuite/lib/compiler.c gdb/testsuite/lib/compiler.c
>>  > index afa0e59..c28367b 100644
>>  > --- gdb/testsuite/lib/compiler.c
>>  > +++ gdb/testsuite/lib/compiler.c
>>  > @@ -73,3 +73,7 @@ set need_a_set [regsub -all {\.} [join {xlc __xlc__} -] - compiler_info]
>>  >  #if defined (__ARMCC_VERSION)
>>  >  set compiler_info [join {armcc __ARMCC_VERSION} -]
>>  >  #endif
>>  > +
>>  > +#if defined (__clang__)
>>  > +set compiler_info [join {clang __clang_major__ __clang_minor__ __clang_patchlevel__} -]
>>  > +#endif
>>  > diff --git gdb/testsuite/lib/compiler.cc gdb/testsuite/lib/compiler.cc
>>  > index ee251bc..79c68b4 100644
>>  > --- gdb/testsuite/lib/compiler.cc
>>  > +++ gdb/testsuite/lib/compiler.cc
>>  > @@ -61,3 +61,7 @@ set need_a_set [regsub -all {\.} [join {xlc __xlc__} -] - compiler_info]
>>  >  #if defined (__ARMCC_VERSION)
>>  >  set compiler_info [join {armcc __ARMCC_VERSION} -]
>>  >  #endif
>>  > +
>>  > +#if defined (__clang__)
>>  > +set compiler_info [join {clang __clang_major__ __clang_minor__ __clang_patchlevel__} -]
>>  > +#endif
>>
>> Hi.
>>
>> Here's a changelog entry to use for this particular case.
>> The format has lots of precise rules behind it, but Monkey-See-Monkey-Do hacking should get you most if not all of the way there.
>>
>> 2014-04-07  David Blaikie  <dblaikie@gmail.com>
>>
>>         * lib/compiler.c: Identify the clang compiler.
>>         * lib/compiler.cc: Ditto.
>>
>> In general, all edited files need to be mentioned (though there is debate over this for some cases, wheee....), and path names are required to be relative to the directory in which the ChangeLog lives.
>> There is a convention for how to submit a changelog entry involving multiple ChangeLog files, but there's no need to go into that here.
>
> Thanks
>
> Oh, and I realized I didn't actually specify, but I don't have commit
> access to gdb so if the patch (and suggested ChangeLog) are acceptable
> it'd be great if someone could commit it for me.
>
> Thanks!
> - David

Done.


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

end of thread, other threads:[~2014-04-07 21:16 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-04-07 20:39 gdb/testsuite/compiler.c[c]: Identify clang David Blaikie
2014-04-07 20:54 ` Doug Evans
2014-04-07 21:07   ` David Blaikie
2014-04-07 21:16     ` Doug Evans

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox