Coder Social home page Coder Social logo

Comments (2)

mikaelarguedas avatar mikaelarguedas commented on July 19, 2024

Looking a bit into this it seems that we need to build poco with the definition POCO_NO_SHARED_LIBRARY_DEBUG_SUFFIX
https://github.com/pocoproject/poco/blob/558c7ff45fe32ffed02736b9732b4a9d8044aa53/Foundation/include/Poco/Config.h#L177

They don't expose that definition through CMake AFAICT so right now I'm tempted to extend the existing windows hack to the other platforms.

#if !defined(WIN32)
return Poco::SharedLibrary::suffix();
#else
// Return just .dll , as Poco::SharedLibrary::suffix() will return d.dll in debug mode.
// This isn't common for our usecase (instead debug libraries are placed in a `Debug` folder).
return ".dll";
#endif

The other option would be to host a modified version of Poco in the ros2 org and to compile it with that definition.

from class_loader.

dirk-thomas avatar dirk-thomas commented on July 19, 2024

Maybe we should consider to support that use case rather than providing custom built packages to avoid the debug suffix?

from class_loader.

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.