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
The regex tracing the execve syscall fails to include a return value. As a result, failed system call will still considered valid, where they should not be and will both be included to the compilation database
For exemple:
[pid 30681] execve("/invalid/path/to/clang++", ["clang++", ..., "../src/compiler/js-builtin-reducer.cc"], [/* 58 vars */]) = -1 ENOENT (No such file or directory)
[pid 30681] execve("/valid/path/to/clang++", ["clang++", ..., "../src/compiler/js-builtin-reducer.cc"], [/* 58 vars */]) = 0
The text was updated successfully, but these errors were encountered:
The regex tracing the
execve
syscall fails to include a return value. As a result, failed system call will still considered valid, where they should not be and will both be included to the compilation databaseFor exemple:
The text was updated successfully, but these errors were encountered: