address sanitizer won't work with bash on windows

穿精又带淫゛_ 提交于 2019-12-01 16:38:19

Taking a quick peek at the source code - MemoryMappingLayout::Next - https://llvm.org/svn/llvm-project/compiler-rt/trunk/lib/sanitizer_common/sanitizer_procmaps_linux.cc - it appears the issue is that bash on ubuntu on windows support for the /proc filesystem is incomplete.

The code that fails is looking at /proc/self/maps - which actually - appears to be about right.

But I've found other stuff (e.g. networking ) in /proc completely broken on bashonwindowsonunix - so I'm pretty sure that part is a work in progress.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!