Install current version / compatibility for dylib using Netbeans (linux / mac)

As indicated in the header, how to install it? Moreover, how can I install the versions myself?

Thanks to all and best wishes.

+4
source share
1 answer

I believe that you can add build options to your project. You will need to add linker options to install compatible and current versions according to this page on "Mac OS X for Unix Geeks": library version . (They use a library called "response" in their examples with the alleged current version 1.2.6)

-dynamiclib -install_name libanswer.1.dylib \ -compatibility_version 1.2 -current_version 1.2.6 \ -o libanswer.1.2.6.dylib $(OBJS) 
+3
source

Source: https://habr.com/ru/post/1340798/


All Articles