i'm writting c++ program and i want to distribute it on Mac OS X versions 10.6 and above. The problem is when i compile the program with clang and it's dynamically linked with libstdc++ and it causes problems with older systems.
There is a key -static-stdc++
in gcc but there's no one in clang. How can i link my program statically with clang?
My main goal is to compile binary on Mac OS X 10.9 and be able to run it on earlier versions. Maybe there's a different way?
Thank you.
ld: library not found for -lcrt0.o
– Leticialetisha