There was just an article on Slashdot about FreeBSD abondoning gcc in favor of clang. I hadn't encountered clang before, and have read up on it since. The big difference between gcc and clang was that clang was written from the very beginning to be reusable tool, around which various functionalities can be built. E.g. a package that does syntax aware source code completion in emacs and vim. See:
http://kristianrumberg.wordpress.com/2010/04/22/smart-autocompletion-for-c-in-emacs/ lang.llvm.org There is also a gcc port that does something similar. See: http://cx4a.org/software/gccsense/ Here is another related link: http://stackoverflow.com/questions/5454803/gccsense-vs-clang-complete Regards, Dov On Mon, May 14, 2012 at 9:19 AM, Gilboa Davara <[email protected]> wrote: > On Mon, May 14, 2012 at 9:03 AM, Baruch Siach <[email protected]> wrote: > > Hi Gilboa, > > > > On Mon, May 14, 2012 at 08:52:39AM +0300, Gilboa Davara wrote: > >> On Mon, May 14, 2012 at 7:34 AM, Baruch Siach <[email protected]> > wrote: > >> > I'm looking for a tool that can do semantic search is a body of C > code. > >> > Example query: "give me all references to field y in struct x defined > in > >> > file z.h". I would prefer an open source, command line driven tool. > C++ > >> > support is an advantage. Does such a tool exist? > >> > >> I use cscope for more-or-less the same requirements. > > > > I've tried cscope, but I couldn't find a way to find references to a > field in > > a specific struct. Can this be done with cscope? > > > > baruch > > > > In theory cscope f t (find text) can do it, but it won't be very > efficient and my suffer from high rate of false positives. > Per your requirements, I'd suggest you consider using grep to filter > the results of cscope find s. > > - Gilboa > > _______________________________________________ > Linux-il mailing list > [email protected] > http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il >
_______________________________________________ Linux-il mailing list [email protected] http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il
