On Thu, Aug 6, 2020 at 11:33 PM Yuan Ting <[email protected]> wrote: > > I know from README that gollvm does not support race detector. Is there any > technical problem? Is it possible to use ThreadSanitizer in LLVM to implement > a workaround race detector in gollvm?
ThreadSanitizer knows a great deal about the behavior of C library functions. In order to use it with GoLLVM, it would be necessary to teach it about the behavior of Go library functions. This is not impossible--the same work was done for the Go race detector--but somebody would have to do the work. Ian -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/golang-nuts/CAOyqgcUV47sG%2BYgQA%3Def5BpJF8NTF4dh3QZNwf5_ChQOn8kV%3DQ%40mail.gmail.com.
