I'm trying to run the OSX build of the ComputeShader sample using the latest version of Kha/Kore
It is failing in /usr/local/lib/Kha/Kore/Backends/Graphics5/Metal/Sources/Kore/ComputeImpl.mm
Line 86: _function = [library newFunctionWithName:[NSString stringWithCString:name encoding:NSUTF8StringEncoding]];
It is returning nil
Debugging shows the problem is the name of string being passed into the function, it contains a rogue character at the start: >test_comp_main
(note the '>' symbol). If I hardcode the name without the symbol the sample project runs fine.
Can someone please confirm if this is reproducible or if there's something I'm missing?