Giter Club home page Giter Club logo

Comments (9)

aklomp avatar aklomp commented on July 3, 2024

Thanks for the report, and for taking a stab at fixing it. I'm unsure of how to proceed though. The issues I have with the proposed solutions:

  1. Fixes it, but at a high cost. I don't believe that this library should dictate high impact policies like disallowing position-independent code for the whole project it's linked against. Keep in mind that this library is intended to be linked with a larger project, so it should be very humble and unassuming.

  2. A GCC-specific hack that could have unintended consequences. The whole idea of the exports list is to export the absolute minimum, and in this solution it would be expanded to include some compiler-specific function that the library has no control over, and which could be arbitrarily renamed in the future. The exported function could clash with another definition from elsewhere. That's not great. Also, the performance goes down because, I assume, there's an extra indirection before calling every function.

What I think is that this issue should be solved in the outer project that includes this library. That project should either export CFLAGS=-fno-pie when building the library, or it should provide its own definition of __x86.get_pc_thunk.bx, which it should if it's compiled position-independently.

from base64.

htot avatar htot commented on July 3, 2024

As it is, you can't build benchmark nor test_base64. That doesn't sound alright.

As I understand __x86.get_pc_thunk.bx is needed and provided by the compiler in certain (our) cases and is not needed any where else then in libbase64.o. Therefore it is not provided anywhere else.

I believe __x86.get_pc_thunk.bx on entry of certain functions, explaining the performance cost.

from base64.

htot avatar htot commented on July 3, 2024

On x86_64 even -fno-pie does not suffice. Building with -fPIC does.

from base64.

aklomp avatar aklomp commented on July 3, 2024

Let's take this one step at a time. So this library is intended to be included and built by some outer project. As I see it, the outer project is responsible for supplying any environment CFLAGS that are required to make the software for that specific project on its specific platform, and that includes any nonstandard flags for the platform compiler. I would consider it misplaced and user hostile for a small library like this to mandate that the outer software must use -fPIC. Generating position-independent code is not a small favor to ask, it can have many repercussions.

That the benchmarks and the tests don't build is a problem, but as I see it, the way to fix that is by making these benchmarks and tests proper users of the library. The tests and benchmarks should be set up as users of the library like any other. They should set their own CFLAGS and they can build with -fPIC if they want. Currently this is not how things are set up, but I think that that would solve this strange situation where those programs are children of the library instead of vice versa.

Moving on, I tried to reproduce this bug with the GCC 9.1.0 on my machine and couldn't, everything works as normal. It looks like GCC might have reverted the earlier puzzling and very un-C-like behavior where functions depend on "hidden" symbols that need to be in the global namespace.

All in all I'm still not sure of whether this should be fixed, and if so, what way would be best. I'm inclined to write it off as GCC weirdness, and tell people to avoid building with GCC 8.2.

from base64.

htot avatar htot commented on July 3, 2024

GCC 8.2 is the compiler on Yocto Thud.

from base64.

aklomp avatar aklomp commented on July 3, 2024

I expect that this will be fixed in #54, by changing the way that symbol visibility is handled.

from base64.

aklomp avatar aklomp commented on July 3, 2024

@htot Is this issue still relevant?

from base64.

htot avatar htot commented on July 3, 2024

Ah very good question. I currently don't see any issues building on / for x86_64 neither with Ubuntu 22.04 nor for Yocto Honnister.
I will test this weekend for Yocto Honister with i686 and report back.

from base64.

htot avatar htot commented on July 3, 2024

After struggling a bit I built with Yocto Honister for i686 and found no issues.

from base64.

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.