aboutsummaryrefslogtreecommitdiff
path: root/reproduce/src/make/dependencies-python.mk
diff options
context:
space:
mode:
authorRaul Infante-Sainz <infantesainz@gmail.com>2019-03-27 17:16:21 +0000
committerRaul Infante-Sainz <infantesainz@gmail.com>2019-03-27 17:16:21 +0000
commit12648438cf9f75738cef045fd02f4093eab7990d (patch)
tree15c7f706aee249e246139a3c52fa2102e0a2df79 /reproduce/src/make/dependencies-python.mk
parent7d1d6f88fb28630cc581ea41c487b2b0c0da269f (diff)
GCC is now built on a Mac, not yet ATLAS
Until now, we were simply using the host's GCC for Mac systems. But we found that except for a single step (to fixing `rpath'), it works on Mac!!! So, GCC is now part of the Mac build as well. However, we are still having some problems in building ATLAS on Mac. It works on GNU/Linux, but not in Mac. So for the time being (just temporarily), we are avoiding ATLAS (and thus Scipy) on Mac systems. We just filed an issue on the ATLAS discussion list to hopefully fix the problem soon.
Diffstat (limited to 'reproduce/src/make/dependencies-python.mk')
-rw-r--r--reproduce/src/make/dependencies-python.mk5
1 files changed, 4 insertions, 1 deletions
diff --git a/reproduce/src/make/dependencies-python.mk b/reproduce/src/make/dependencies-python.mk
index 54d3a56..fe82175 100644
--- a/reproduce/src/make/dependencies-python.mk
+++ b/reproduce/src/make/dependencies-python.mk
@@ -43,7 +43,10 @@ ilidir = $(BDIR)/dependencies/installed/lib/built
ipydir = $(BDIR)/dependencies/installed/lib/built/python
# Define the top-level programs to build (installed in `.local/bin').
-top-level-python = astroquery matplotlib scipy
+ifneq ($(on_mac_os),yes)
+withscipy=scipy
+endif
+top-level-python = astroquery matplotlib $(withscipy)
all: $(foreach p, $(top-level-python), $(ipydir)/$(p))
# Other basic environment settings: We are only including the host