You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Every time you run 3C with a compilation DB, you get this warning:
Error while trying to load a compilation database:
Could not auto-detect compilation database for file "fptrarrstructcallee.c"
No compilation database found in /home/cc/checkedc-clang/clang/test/CheckedCRewriter or any parent directory
fixed-compilation-database: Error while opening fixed database: No such file or directory
json-compilation-database: Error while opening JSON database: No such file or directory
Running without flags.
Can we somehow make it so that these error messages are not shown unless the -verbose flag is on?
The text was updated successfully, but these errors were encountered:
After some research, the standard LibTooling answer is: if the user knows they do not want to use a compilation database, they should pass -- at the end of the command line. This will suppress the error and ensure that 3c doesn't detect an unintended compilation database by accident. We can discuss on #343 whether we want to just document this design or change it.
Every time you run 3C with a compilation DB, you get this warning:
Can we somehow make it so that these error messages are not shown unless the
-verbose
flag is on?The text was updated successfully, but these errors were encountered: