runner
runner copied to clipboard
Possible installation problem of Clang 8 C++17
When running my C++ code, which has a bug in it, the runtime generates this error:
UndefinedBehaviorSanitizer:DEADLYSIGNAL
==1==ERROR: UndefinedBehaviorSanitizer: FPE on unknown address 0x0000004258f5 (pc 0x0000004258f5 bp 0x000000f695c0 sp 0x7fff51625aa0 T1)
==1==WARNING: invalid path to external symbolizer!
==1==WARNING: Failed to use and restart external symbolizer!
#0 0x4258f4 (/workspace/test+0x4258f4)
#1 0x42857e (/workspace/test+0x42857e)
#2 0x426bee (/workspace/test+0x426bee)
#3 0x426733 (/workspace/test+0x426733)
#4 0x42636b (/workspace/test+0x42636b)
#5 0x42b095 (/workspace/test+0x42b095)
#6 0x425acd (/workspace/test+0x425acd)
#7 0x7f57ad3abbf6 (/lib/x86_64-linux-gnu/libc.so.6+0x21bf6)
#8 0x404649 (/workspace/test+0x404649)
UndefinedBehaviorSanitizer can not provide additional info.
==1==ABORTING
Googling mentions that the
==1==WARNING: invalid path to external symbolizer!
==1==WARNING: Failed to use and restart external symbolizer!
point to an installation problem with Clang 8 C++17.
Could you check this?