Deploy Qt C++11 app on Mac OS with older libstdc++
问题 When I try to deploy my app on another machine, it fails with dyld /unresolved symbol errors. (Qt static release build, btw.) When I put libstdc++ in the bundle (along with libSystem.B and libobjc.A ) and run install_name_tool appropriately, I get new linker errors, for libraries upon which these libraries depend. E.g., libc++.1 . I'm really hoping I don't have to manually go through and run install_name_tool on every single library and its children. (Or write my own script, which I don't