Giter Club home page Giter Club logo

Comments (4)

yugr avatar yugr commented on May 29, 2024

So to give an example, if I apply implib-gen to say /usr/lib/x86_64-linux-gnu/libkrb5.so.3.3 it will currently try to load that same library:

lib_handle = dlopen("libkrb5.so.3.3", RTLD_LAZY | RTLD_GLOBAL);

You suggest to change that to use SONAME instead:

lib_handle = dlopen("libkrb5.so.3", RTLD_LAZY | RTLD_GLOBAL);

Sounds like a reasonable change.

from implib.so.

ilya-fedin avatar ilya-fedin commented on May 29, 2024

My use-case is to call implib-gen from cmake. I have a cmake function that accepts library name like wayland-client and then gets a full path with cmake's find_library. It ends with something like /usr/lib64/libwayland-client.so. This makes the code generated by implib to not to work on production systems as it loads libwayland-client.so which is not present as it's a part of -dev package. I don't see a way to get the right library name from cmake other than parsing readelf output with cmake which really feels too much.

Of course, implib-gen shouldn't use the parsed soname as the prefix for generated files as ninja (used by cmake) excepts the command to generate output files and I should know their name in advance to specify them (as well as to be able to add them to a target). Or there should be an option to override the prefix.

from implib.so.

yugr avatar yugr commented on May 29, 2024

Thanks, I understand the problem now.

Of course, implib-gen shouldn't use the parsed soname as the prefix for generated files as ninja (used by cmake) excepts the command to generate output files and I should know their name in advance to specify them (as well as to be able to add them to a target)

Agreed. I think the same should apply to prefixes of helper functions (_XXX_tramp_resolve_all, etc.).

from implib.so.

yugr avatar yugr commented on May 29, 2024

Should be fixed on master now.

from implib.so.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.