c++ - Can I run binary compiled with C++11 on the platform which doesn't support it? -
c++ - Can I run binary compiled with C++11 on the platform which doesn't support it? -
i have 2 similar (say linux) platforms , b. supports c++03 , c++11; b supports c++03 compiler.
i compile code (with c++03) on platform , able run binary on b without problem. case true c++11 ? (it may work in platform, want know in broader sense).
in other words, c++11 limited till compilation or it's framework enhancement (added back upwards new libraries , threads)?
in general, yes, there should c++0x runtime libraries nowadays on target machine, or should have runtime statically linked executable.
c++ cross-platform c++11
Comments
Post a Comment