public inbox for linux-kbuild@vger.kernel.org
 help / color / mirror / Atom feed
* [patch 7/8] tags: link from CONFIG_x to 'config x' as well
@ 2008-12-01 22:21 akpm
  2008-12-03 21:28 ` Sam Ravnborg
  0 siblings, 1 reply; 2+ messages in thread
From: akpm @ 2008-12-01 22:21 UTC (permalink / raw)
  To: sam; +Cc: linux-kbuild, akpm, adobriyan

From: Alexey Dobriyan <adobriyan@gmail.com>

Inability to jump from CONFIG_ symbol in source to symbol definition in
Kconfig is very, very annoying. You'll jump to useless entry in autoconf.h,
if it exists at all.

No more.

Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 Makefile |    6 ++++++
 1 file changed, 6 insertions(+)

diff -puN Makefile~tags-link-from-config_x-to-config-x-as-well Makefile
--- a/Makefile~tags-link-from-config_x-to-config-x-as-well
+++ a/Makefile
@@ -1482,6 +1482,10 @@ define xtags
 		--langdef=kconfig \
 		--language-force=kconfig \
 		--regex-kconfig='/^[[:blank:]]*(menu|)config[[:blank:]]+([[:alnum:]_]+)/\2/'; \
+	    $(all-kconfigs) | xargs $1 -a \
+		--langdef=kconfig \
+		--language-force=kconfig \
+		--regex-kconfig='/^[[:blank:]]*(menu|)config[[:blank:]]+([[:alnum:]_]+)/CONFIG_\2/'; \
 	    $(all-defconfigs) | xargs -r $1 -a \
 		--langdef=dotconfig \
 		--language-force=dotconfig \
@@ -1490,6 +1494,8 @@ define xtags
 	    $(all-sources) | xargs $1 -a; \
 	    $(all-kconfigs) | xargs $1 -a \
 		--regex='/^[ \t]*\(\(menu\)*config\)[ \t]+\([a-zA-Z0-9_]+\)/\3/'; \
+	    $(all-kconfigs) | xargs $1 -a \
+		--regex='/^[ \t]*\(\(menu\)*config\)[ \t]+\([a-zA-Z0-9_]+\)/CONFIG_\3/'; \
 	    $(all-defconfigs) | xargs -r $1 -a \
 		--regex='/^#?[ \t]?\(CONFIG_[a-zA-Z0-9_]+\)/\1/'; \
 	else \
_

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

* Re: [patch 7/8] tags: link from CONFIG_x to 'config x' as well
  2008-12-01 22:21 [patch 7/8] tags: link from CONFIG_x to 'config x' as well akpm
@ 2008-12-03 21:28 ` Sam Ravnborg
  0 siblings, 0 replies; 2+ messages in thread
From: Sam Ravnborg @ 2008-12-03 21:28 UTC (permalink / raw)
  To: akpm; +Cc: linux-kbuild, adobriyan

On Mon, Dec 01, 2008 at 02:21:07PM -0800, akpm@linux-foundation.org wrote:
> From: Alexey Dobriyan <adobriyan@gmail.com>
> 
> Inability to jump from CONFIG_ symbol in source to symbol definition in
> Kconfig is very, very annoying. You'll jump to useless entry in autoconf.h,
> if it exists at all.

Included in my patch where I move all tags
support to a shell script.

So when I poush out kbuild-next this will no longer apply anyway.

	Sam

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

end of thread, other threads:[~2008-12-03 21:26 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-12-01 22:21 [patch 7/8] tags: link from CONFIG_x to 'config x' as well akpm
2008-12-03 21:28 ` Sam Ravnborg

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