Coder Social home page Coder Social logo

Comments (7)

blitzcode avatar blitzcode commented on May 26, 2024

Oh, I guess the install name makes it find the library on OS X, but no such thing on Linux. I assume it works if you add target/release/ to your DYLD_LIBRARY_PATH? Could you try adding -optl-Wl,-rpath,'$ORIGIN/target/release' to the ghc-options field in rust-exp.cabal? I'm not completely sure, the path might need to be './target/release'. Thanks ;-)

from rust-exp.

Johnson-A avatar Johnson-A commented on May 26, 2024

I tried both '$ORIGIN/target/release' and './target/release' but I'm getting the same error after calling make again. I'm not familiar with ghc options but I'd really like to try your n-body simulation! I'm rewriting a barnes hut implementation in rust and was wondering how efficient your implementation was!

from rust-exp.

blitzcode avatar blitzcode commented on May 26, 2024

GHC just uses the system linker here, so this is unlikely to be GHC specific. We'd be in he same situation trying to link two pieces of C code together. Same solutions / troubleshooting steps apply!

How do you run the executable, just stack exec rust-exp?

You could try these steps:

  • Set the rpath to am absolute path, i.e. ~/dev/rust-exp/target/release/
  • Run with LD_LIBRARY_PATH=~/dev/rust-exp/target/release/ stack exec rust-exp
  • Copy the DSO into the stack build directory (i.e. ~/dev/rust-exp/.stack-work/install/x86_64-linux/lts-5.4/7.10.3/bin/)
  • Build the rust library as a static library (don't forget to make clean)

Do any of the above work for you? I'd of course be interested in fixing this properly so other Linux users don't have to jump through any hoops.

from rust-exp.

Johnson-A avatar Johnson-A commented on May 26, 2024

I had been running the executable with stack exec rust-exp, and even with the full path in ghc-options I got the same error. The good news is that when I run LD_LIBRARY_PATH=~/dev/rust-exp/target/release/ stack exec rust-exp everything works! Really impressive work by the way! Let me include my rust-exp.cabal (renamed to .txt to satisfy github)
rust-exp.txt

from rust-exp.

blitzcode avatar blitzcode commented on May 26, 2024

Great to hear you got it running and found some utility in it ;-)

Bummer about the rpath, though. Would've been nice to commit something that fixes it without having to tell people to mess with their environment variables. Could you try if changing dylib to staticlib in the Cargo.toml also works for you? The only reason I use dynamic linking is to speed up the development process. No need to always re-link the Haskell executable when >90% of the time I only touch the Rust code. If you can confirm this works for you, I'll just just switch to static linking by default.

from rust-exp.

Johnson-A avatar Johnson-A commented on May 26, 2024

Switching to staticlib worked as well. I open a pull request if you want to add the changes! Thanks

from rust-exp.

blitzcode avatar blitzcode commented on May 26, 2024

Great, thanks! I'll have a look at the rpath thing at some point...

from rust-exp.

Related Issues (1)

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.