We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
llvm-project/compiler-rt/lib/hwasan/scripts/hwasan_symbolize
Line 423 in 008c875
On Windows, os.getcwd() can return something like "C:\sdk\llvm...". The string with unescaped backslashes is then fed into re.sub():
os.getcwd()
re.sub()
Line 176 in 008c875
which results in an error:
re.error: bad escape \l at position 31
My workaround:
paths_to_cut.append(os.getcwd().replace("\\", "/") + '/')