c++ - Is it possible to use different libstdc++ libraries in one program? -


i have old application framework must compiled gcc 4.4.4 , old libstdc++.so, don't support c++14.

i want use gcc 6.2 write new functions in c++14, , compiled them static library myslib.a.

myslib.a exports functions in pure c interfaces abi compatibility.

my issue is: framework uses old libstdc++.so, not compatible c++14.

is possible enforce myslib.a statically link latest libstdc++.a , ignore older libstdc++.so?


Comments

Popular posts from this blog

ruby on rails - ActiveRecord order not working -

javascript - How do you prevent nested queries/catches in sequelize? -

java - ConcurrentModificationException upon committing transaction with Hibernate -