GithubHelp home page GithubHelp logo

Comments (5)

devdave avatar devdave commented on April 28, 2024 2

For myself, I ended up building from source, but the mentioned .deb files would have been nice. https://facebook.github.io/watchman/docs/install#ubuntu-prebuilt-debs

from watchman.

Flameeyes avatar Flameeyes commented on April 28, 2024 1

Nah, this is all broken, there's no way to get this to run on any modern system. I believe the prebuilt binaries shouldn't be pushed at all, and the installation instructions updated accordingly.

from watchman.

Flameeyes avatar Flameeyes commented on April 28, 2024

Actually this is worse, because the DT_NEEDED entries for the binaries refer directly to /usr/local/lib so by default the LD_LIBRARY_PATH option is not even respected.

from watchman.

Flameeyes avatar Flameeyes commented on April 28, 2024

Okay after downloading the zip file with the prebuilt binaries it's possible to fix this with patchelf:

for file in bin/*; do patchelf --add-rpath '$ORIGIN/../lib' $file; readelf -d $file | grep NEEDED | grep /usr/local | sed -e 's:.*\[\(.*\)\]:\1:' | while read library; do patchelf --replace-needed $library $(basename $library) $file; done; done

from watchman.

quux-aivar avatar quux-aivar commented on April 28, 2024

Nah, this is all broken, there's no way to get this to run on any modern system. I believe the prebuilt binaries shouldn't be pushed at all, and the installation instructions updated accordingly.

I agree!

Overall, it appears that the project has been abandoned.

https://facebook.github.io/watchman/docs/install#fedora-prebuilt-rpms

Screenshot 2024-04-17 at 09 43 01

Unfortunately, Fedora 39 does not yet have an RPM package available.

When you install the Linux binaries that are given via release, the app will fail.

from watchman.

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.