ChristianBelloni / complex-bessel-rs

Rust wrapper of the Fortran subroutines developed by D.E. Amos
MIT License
1 stars 1 forks source link

Add -fPIC to build script? #2

Closed guycohen closed 6 months ago

guycohen commented 7 months ago

Hi,

On some older systems, compilation will fail. This can be fixed with the following patch:

--- a/build.rs +++ b/build.rs @@ -34,6 +34,7 @@ pub fn main() {

     Command::new(GFORTRAN_NAME)
         .arg("-shared")
ChristianBelloni commented 6 months ago

Hi there, sorry for the delay, patched and shipped for 1.0.0, thanks for the heads up 👍🏻