Displaying 4 results from an estimated 4 matches for "cxtranslationunit_none".
2012 Aug 19
2
[LLVMdev] Optimal settings for parsing and reparsing the translation unit in libclang
Hey everyone!
I'm having trouble finding the optimal performance settings for
parsing/reparsing the translation unit. At this moment I'm using
CXTranslationUnit_None for both parsing and reparsing the translation unit,
because it seems that as soon as I turn on default settings for
parse/reparse (clang_defaultEditingTranslationUnitOptions
and clang_defaultReparseOptions respectively) code completion stops giving
me the right results. Sure I could keep using CXT...
2012 Aug 20
1
[LLVMdev] Optimal settings for parsing and reparsing the translation unit in libclang
...e I syntax color based on what libclang gives me).
And it worked fine (and fast)
with clang_defaultEditingTranslationUnitOptions for
clang_parseTranslationUnit and clang_defaultReparseOptions for
clang_reparseTranslationUnit. Until I saw that clang_codeCompleteAt doesnt
work with anything else than CXTranslationUnit_None.
On Mon, Aug 20, 2012 at 2:01 AM, don hinton <don.hinton at gmx.com> wrote:
> On Aug 19, 2012, at 18:11, Klemen Forstneric <brucewayne97 at gmail.com>
> wrote:
>
> > Hey everyone!
> >
> > I'm having trouble finding the optimal performance settings for
&...
2012 Aug 20
0
[LLVMdev] Optimal settings for parsing and reparsing the translation unit in libclang
On Aug 19, 2012, at 18:11, Klemen Forstneric <brucewayne97 at gmail.com> wrote:
> Hey everyone!
>
> I'm having trouble finding the optimal performance settings for parsing/reparsing the translation unit. At this moment I'm using CXTranslationUnit_None for both parsing and reparsing the translation unit, because it seems that as soon as I turn on default settings for parse/reparse (clang_defaultEditingTranslationUnitOptions and clang_defaultReparseOptions respectively) code completion stops giving me the right results. Sure I could keep using CXT...
2012 Aug 16
2
[LLVMdev] libclang parsing bug
...turn reinterpret_cast
libclang crashes.
This is the code I used to parse the code above:
#include <clang-c/Index.h>
int main(int argc, char** argv)
{
CXIndex index = clang_createIndex(0, 0);
CXTranslationUnit translationUnit = clang_parseTranslationUnit(index,
0, argv, argc, 0, 0, CXTranslationUnit_None);
clang_disposeTranslationUnit(translationUnit);
clang_disposeIndex(index);
return 0;
}
Am I doing anything wrong?
Here's the output from valgrind:
$ valgrind --leak-check=full ./bug_report ../main.cpp
==5926== Memcheck, a memory error detector
==5926== Copyright (C) 2002-2011,...