nm symbol output t vs T in a shared so library
Any idea about what I might be doing wrong? The t function is indeed local to the library. This could happen due to a number or reasons. The most likely ones are: You declared the function static, or You compiled the library with -fvisibility=hidden and did not have __attribute__((visibility(“default”))) on the function, or You linked … Read more