You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In your blog post, you show the output from vtool -show, then shortly after that have a sample command line to modify the library. As far as I can tell, the two command lines are mutually exclusive, since the -show output indicates that the library uses SDK 14.0 while the command line forces it to SDK 13.0. At least with my library (which uses SDK 16.2 with min SDK 13.0), doing that results in a runtime crash (in a C++ destructor in the library). Using 7 13.0 16.2 instead of 7 13.0 13.0 fixes the problem.
The text was updated successfully, but these errors were encountered:
In your blog post, you show the output from
vtool -show
, then shortly after that have a sample command line to modify the library. As far as I can tell, the two command lines are mutually exclusive, since the-show
output indicates that the library uses SDK 14.0 while the command line forces it to SDK 13.0. At least with my library (which uses SDK 16.2 with min SDK 13.0), doing that results in a runtime crash (in a C++ destructor in the library). Using7 13.0 16.2
instead of7 13.0 13.0
fixes the problem.The text was updated successfully, but these errors were encountered: