Menu

Tree [ab072a] master v0.6.0 /
 History

HTTPS access


File Date Author Commit
 doc 2012-06-10 Hari Rangarajan Hari Rangarajan [ab072a] Fixes to make 'make dist' and 'make distcheck' ...
 include 2012-06-10 Hari Rangarajan Hari Rangarajan [209049] Almost release-ready code with support for (fil...
 src 2012-06-10 Hari Rangarajan Hari Rangarajan [ab072a] Fixes to make 'make dist' and 'make distcheck' ...
 AUTHORS 2012-05-03 Hari Rangarajan Hari Rangarajan [06c741] Merge branch 'master' into tracer
 COPYING 2012-02-02 Hari Rangarajan Hari Rangarajan [321112] Commiting initial migration from C to C++
 ChangeLog 2012-02-02 Hari Rangarajan Hari Rangarajan [321112] Commiting initial migration from C to C++
 INSTALL 2012-06-10 Hari Rangarajan Hari Rangarajan [ab072a] Fixes to make 'make dist' and 'make distcheck' ...
 Makefile.am 2012-06-10 Hari Rangarajan Hari Rangarajan [ab072a] Fixes to make 'make dist' and 'make distcheck' ...
 Makefile.in 2012-06-10 Hari Rangarajan Hari Rangarajan [ab072a] Fixes to make 'make dist' and 'make distcheck' ...
 NEWS 2012-06-10 Hari Rangarajan Hari Rangarajan [ab072a] Fixes to make 'make dist' and 'make distcheck' ...
 README 2012-05-17 Hari Rangarajan Hari Rangarajan [f98548] Merge branch 'tracer' into lex_tag_file
 aclocal.m4 2012-06-10 Hari Rangarajan Hari Rangarajan [ab072a] Fixes to make 'make dist' and 'make distcheck' ...
 autogen.sh 2012-05-03 Hari Rangarajan Hari Rangarajan [06c741] Merge branch 'master' into tracer
 config.h 2012-06-10 Hari Rangarajan Hari Rangarajan [ab072a] Fixes to make 'make dist' and 'make distcheck' ...
 config.h.in 2012-06-10 Hari Rangarajan Hari Rangarajan [209049] Almost release-ready code with support for (fil...
 configure 2012-06-10 Hari Rangarajan Hari Rangarajan [ab072a] Fixes to make 'make dist' and 'make distcheck' ...
 configure.in 2012-06-10 Hari Rangarajan Hari Rangarajan [ab072a] Fixes to make 'make dist' and 'make distcheck' ...
 depcomp 2012-02-02 Hari Rangarajan Hari Rangarajan [321112] Commiting initial migration from C to C++
 install-sh 2012-02-02 Hari Rangarajan Hari Rangarajan [321112] Commiting initial migration from C to C++
 missing 2012-02-02 Hari Rangarajan Hari Rangarajan [321112] Commiting initial migration from C to C++

Read Me

ccglue is intended to be the interfacing app between cscope and ctags. It
can generate cross-reference tag files that can be interfaced with the Vim
CCTree plugin (http://www.vim.org/scripts/script.php?script_id=2368). There
is a stand-alone command-line tracer (ccglue_tracer) that can dump 
call-tree outlines whose output can be reprocessed.

Currently supported languages: C

Some babble:
Cscope and ctags are semantic analysis tools that excel in specific areas,
i.e., ctags has excellent tag support for a huge number of languages, while
cscope's flex scanner provides excellent semantic analysis.  However, what is
left lacking is usually context for the semantic analysis. Context allows you
to generate more data that can be used for more purposes, i.e., case in hand
call-graph, code completion, and error detection. This tool attempts to analyze
the cscope generated data using additional context from ctags data. 

More features and language support to follow.

You can find the respective tools here:
cscope -- cscope.sourceforge.net
ctags -- ctags.sourceforge.net


BUILDING and INSTALLING
****************************************
The package with configured with auto-tools.  The typical installation process
should work on most systems. Requires a reasonably recent C++ compiler with
STL libraries (including TR1).

	./configure
	make
	make install

Options to the configure script are up to you.  For details, run:

	./configure --help
(There is only a debug flag to generate debug symbols)


USAGE
*****************************************

Build cross-reference tag file with index

    $ ccglue -I                                     (or --build-index)

Trace symbols

    $ ccglue_tracer -s SYMBOL_NAME -c f -d 2        (f - forward tree, r - reverse)

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.