JuliaStats / Rmath.jl

Archive of functions that emulate R's d-p-q-r functions for probability distributions
Other
16 stars 13 forks source link

Missing make, gcc dependencies #54

Closed cstjean closed 6 years ago

cstjean commented 6 years ago

I'm building a script for installing my software in a production environment on a VM. I found that if I copy my REQUIRE file over there, everything works fine, except for RMath.jl, which is missing make and gcc. I could install them as part of my script

apt-get -y install make
apt-get -y install gcc

but it would be cleaner if it was handled as part of RMath's dependencies.

andreasnoack commented 6 years ago

We should finish and merge #48. Then this should be easy for you.

ararslan commented 6 years ago

RmathBuilder should be updated to build for all supported platforms first, and should probably live in JuliaStats.

cstjean commented 6 years ago

Awesome, thank you!