I wanted to use try catch statement in clang libtooling,but by default it is taking compiling options as -fno-rtti and -fno-exceptions
If I use the try-catch statement in clang libtooling , It is throwing error message
samplecode
try
{
}
catch(std::exception &e)
{
}
Cannot Use try with Exception Disabled
.
How to enable try catch for clang libtooling program?