Swift instrumentation on Linux

Hi,
I'm starting to use Swift on Linux but I'm not very familiar with the available tooling. How would one go about instrumenting it? Measuring performance, detecting memory leaks etc...

Thank you

1 Like

I believe people use the usual tools- perf, valgrind, gprof- plus the compiler-rt sanitizers, ie Asan, Tsan, and so on, which are supported by the Swift compiler.