Disable TSAN for specific frameworks

I was wondering if it was possible to TSAN disable certain frameworks. (or conversely specify the frameworks that would be participate in it)

Problem:

There are some frameworks that I am using that are throwing TSAN race conditions. I was wondering if it was possible to choose the frameworks that would participate in TSAN.

This is a swift project and I am using Xcode

Note: I am sorry if this is off-topic.

I'm afraid it was not possible. The TSAN can only be set for your target. It's not a part of project configuration.

For more information you can check Thread Sanitizer

1 Like

Thanks for clarifying it.