annotate src/lapack.mk @ 3246:0e705514af1b

Update lapack so compile correctly with openblas library (when enabled) src/lapack.mk: when enabled, add openblas as a dependancy and give cmake the openblas library to compile with lapack.
author John Donoghue <john.donoghue@ieee.org>
date Tue, 03 Sep 2013 21:01:27 -0400
parents 050e922d4003
children 0f01d4dc9644
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2333
f653602a0500 Rebrand to new project name MXE
Volker Grabsch <vog@notjusthosting.com>
parents: 2142
diff changeset
1 # This file is part of MXE.
2353
99516e73b368 Move doc/index.html -> index.html
Volker Grabsch <vog@notjusthosting.com>
parents: 2349
diff changeset
2 # See index.html for further information.
1376
896bc60de2a9 improvements for packages: cblas lapack suitesparse
Alois Schlögl <alois.schloegl@gmail.com>
parents: 1374
diff changeset
3
1374
32a1331a3faf new packages: blas cblas lapack
Alois Schlögl <alois.schloegl@gmail.com>
parents:
diff changeset
4 PKG := lapack
2788
eaa3134bbca4 upgrade package lapack
Mark Brand <mabrand@mabrand.nl>
parents: 2706
diff changeset
5 $(PKG)_CHECKSUM := 93a6e4e6639aaf00571d53a580ddc415416e868b
1385
08b296ec290e cleanup packages: blas cblas lapack metis suitesparse
Volker Grabsch <vog@notjusthosting.com>
parents: 1376
diff changeset
6 $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
1499
9e587ca588dc remove $($PKG)_SUBDIR) from FILE and URL defintions
Mark Brand <mabrand@mabrand.nl>
parents: 1447
diff changeset
7 $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tgz
1385
08b296ec290e cleanup packages: blas cblas lapack metis suitesparse
Volker Grabsch <vog@notjusthosting.com>
parents: 1376
diff changeset
8 $(PKG)_URL := http://www.netlib.org/$(PKG)/$($(PKG)_FILE)
1735
0066ab1bad44 improved download URLs of packages: blas cblas gcc-mpc lapack
Volker Grabsch <vog@notjusthosting.com>
parents: 1551
diff changeset
9 $(PKG)_URL_2 := ftp://ftp.eq.uc.pt/pub/software/math/netlib/$(PKG)/$($(PKG)_FILE)
3048
5ef49fb3299d treat gcc and binutils as build tools
John W. Eaton <jwe@octave.org>
parents: 3025
diff changeset
10 $(PKG)_DEPS :=
1374
32a1331a3faf new packages: blas cblas lapack
Alois Schlögl <alois.schloegl@gmail.com>
parents:
diff changeset
11
3246
0e705514af1b Update lapack so compile correctly with openblas library (when enabled)
John Donoghue <john.donoghue@ieee.org>
parents: 3072
diff changeset
12 ifeq ($(ENABLE_OPENBLAS),yes)
0e705514af1b Update lapack so compile correctly with openblas library (when enabled)
John Donoghue <john.donoghue@ieee.org>
parents: 3072
diff changeset
13 $(PKG)_DEPS += openblas
0e705514af1b Update lapack so compile correctly with openblas library (when enabled)
John Donoghue <john.donoghue@ieee.org>
parents: 3072
diff changeset
14
0e705514af1b Update lapack so compile correctly with openblas library (when enabled)
John Donoghue <john.donoghue@ieee.org>
parents: 3072
diff changeset
15 ifeq ($(MXE_NATIVE_MINGW_BUILD),yes)
0e705514af1b Update lapack so compile correctly with openblas library (when enabled)
John Donoghue <john.donoghue@ieee.org>
parents: 3072
diff changeset
16 $(PKG)_BLAS_CONFIG_OPTS := -DBLAS_LIBRARIES=$(HOST_BINDIR)/libopenblas.dll
0e705514af1b Update lapack so compile correctly with openblas library (when enabled)
John Donoghue <john.donoghue@ieee.org>
parents: 3072
diff changeset
17 else
0e705514af1b Update lapack so compile correctly with openblas library (when enabled)
John Donoghue <john.donoghue@ieee.org>
parents: 3072
diff changeset
18 $(PKG)_BLAS_CONFIG_OPTS := -DBLAS_LIBRARIES=openblas
0e705514af1b Update lapack so compile correctly with openblas library (when enabled)
John Donoghue <john.donoghue@ieee.org>
parents: 3072
diff changeset
19 endif
0e705514af1b Update lapack so compile correctly with openblas library (when enabled)
John Donoghue <john.donoghue@ieee.org>
parents: 3072
diff changeset
20 endif
0e705514af1b Update lapack so compile correctly with openblas library (when enabled)
John Donoghue <john.donoghue@ieee.org>
parents: 3072
diff changeset
21
3015
ec6f91539788 initial support for --enable-64
John W. Eaton <jwe@octave.org>
parents: 2997
diff changeset
22 ifeq ($(ENABLE_64),yes)
ec6f91539788 initial support for --enable-64
John W. Eaton <jwe@octave.org>
parents: 2997
diff changeset
23 $(PKG)_DEFAULT_INTEGER_8_FLAG := -fdefault-integer-8
ec6f91539788 initial support for --enable-64
John W. Eaton <jwe@octave.org>
parents: 2997
diff changeset
24 endif
ec6f91539788 initial support for --enable-64
John W. Eaton <jwe@octave.org>
parents: 2997
diff changeset
25
1374
32a1331a3faf new packages: blas cblas lapack
Alois Schlögl <alois.schloegl@gmail.com>
parents:
diff changeset
26 define $(PKG)_UPDATE
2525
4d0f3a9da57e all packages: use $(WGET) portability variable
Tony Theodore <tonyt@logyst.com>
parents: 2464
diff changeset
27 $(WGET) -q -O- 'http://www.netlib.org/lapack/' | \
1551
906b674321d5 package lapack: fix update macro
Mark Brand <mabrand@mabrand.nl>
parents: 1499
diff changeset
28 $(SED) -n 's_.*>LAPACK, version \([0-9]\.[0-9]\.[0-9]\).*_\1_ip' | \
1374
32a1331a3faf new packages: blas cblas lapack
Alois Schlögl <alois.schloegl@gmail.com>
parents:
diff changeset
29 head -1
32a1331a3faf new packages: blas cblas lapack
Alois Schlögl <alois.schloegl@gmail.com>
parents:
diff changeset
30 endef
32a1331a3faf new packages: blas cblas lapack
Alois Schlögl <alois.schloegl@gmail.com>
parents:
diff changeset
31
3025
dea92be54fc8 Updated lapack for additional native mingw options
John Donoghue <john.donoghue@ieee.org>
parents: 3023
diff changeset
32 ifeq ($(MXE_NATIVE_MINGW_BUILD),yes)
3072
050e922d4003 [MSVC] enable LAPACK compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
33 ifeq ($(MXE_SYSTEM),msvc)
050e922d4003 [MSVC] enable LAPACK compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
34 define $(PKG)_BUILD
050e922d4003 [MSVC] enable LAPACK compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
35 cd '$(1)' && \
050e922d4003 [MSVC] enable LAPACK compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
36 cp INSTALL/make.inc.gfortran make.inc && \
050e922d4003 [MSVC] enable LAPACK compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
37 sed -i -e 's/\(FORTRAN[ ]*\)=.*/\1= $(MXE_F77)/' \
050e922d4003 [MSVC] enable LAPACK compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
38 -e 's/\(CC[ ]*\)=.*/\1= $(MXE_CC)/' \
050e922d4003 [MSVC] enable LAPACK compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
39 -e 's/\(CFLAGS[ ]*\)=.*/\1= -O2/' make.inc
050e922d4003 [MSVC] enable LAPACK compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
40
050e922d4003 [MSVC] enable LAPACK compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
41 $(MAKE) -C '$(1)' -j '$(JOBS)' VERBOSE=1 lapacklib
050e922d4003 [MSVC] enable LAPACK compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
42
050e922d4003 [MSVC] enable LAPACK compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
43 if [ $(BUILD_SHARED) = yes ]; then \
050e922d4003 [MSVC] enable LAPACK compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
44 $(MAKE_SHARED_FROM_STATIC) --ar '$(MXE_AR)' --ld '$(MXE_F77)' '$(1)/liblapack.a' --install '$(INSTALL)' --libdir '$(HOST_LIBDIR)' --bindir '$(HOST_BINDIR)' -lblas; \
050e922d4003 [MSVC] enable LAPACK compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
45 fi
050e922d4003 [MSVC] enable LAPACK compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
46
050e922d4003 [MSVC] enable LAPACK compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
47 $(INSTALL) -d '$(HOST_LIBDIR)/pkgconfig'
050e922d4003 [MSVC] enable LAPACK compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
48 $(SED) -e 's/@LAPACK_VERSION@/$($(PKG)_VERSION)/' \
050e922d4003 [MSVC] enable LAPACK compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
49 -e 's,@prefix@,$(HOST_PREFIX),' \
050e922d4003 [MSVC] enable LAPACK compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
50 -e 's,@libdir@,$${prefix}/lib,' '$(1)/lapack.pc.in' > '$(1)/lapack.pc'
050e922d4003 [MSVC] enable LAPACK compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
51 $(INSTALL) '$(1)/lapack.pc' '$(HOST_LIBDIR)/pkgconfig/'
050e922d4003 [MSVC] enable LAPACK compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
52
050e922d4003 [MSVC] enable LAPACK compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
53 endef
050e922d4003 [MSVC] enable LAPACK compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
54 else
1374
32a1331a3faf new packages: blas cblas lapack
Alois Schlögl <alois.schloegl@gmail.com>
parents:
diff changeset
55 define $(PKG)_BUILD
2093
fc6612a2917b package lapack: build with cmake
Mark Brand <mabrand@mabrand.nl>
parents: 2091
diff changeset
56 cd '$(1)' && cmake \
3025
dea92be54fc8 Updated lapack for additional native mingw options
John Donoghue <john.donoghue@ieee.org>
parents: 3023
diff changeset
57 -G 'MSYS Makefiles' \
dea92be54fc8 Updated lapack for additional native mingw options
John Donoghue <john.donoghue@ieee.org>
parents: 3023
diff changeset
58 -DCMAKE_TOOLCHAIN_FILE='$(CMAKE_TOOLCHAIN_FILE)' \
dea92be54fc8 Updated lapack for additional native mingw options
John Donoghue <john.donoghue@ieee.org>
parents: 3023
diff changeset
59 -DCMAKE_Fortran_FLAGS='$($(PKG)_DEFAULT_INTEGER_8_FLAG)' \
3246
0e705514af1b Update lapack so compile correctly with openblas library (when enabled)
John Donoghue <john.donoghue@ieee.org>
parents: 3072
diff changeset
60 $($(PKG)_BLAS_CONFIG_OPTS) \
3025
dea92be54fc8 Updated lapack for additional native mingw options
John Donoghue <john.donoghue@ieee.org>
parents: 3023
diff changeset
61 .
dea92be54fc8 Updated lapack for additional native mingw options
John Donoghue <john.donoghue@ieee.org>
parents: 3023
diff changeset
62 $(MAKE) -C '$(1)/SRC' -j '$(JOBS)' VERBOSE=1 install
dea92be54fc8 Updated lapack for additional native mingw options
John Donoghue <john.donoghue@ieee.org>
parents: 3023
diff changeset
63
dea92be54fc8 Updated lapack for additional native mingw options
John Donoghue <john.donoghue@ieee.org>
parents: 3023
diff changeset
64 if [ $(BUILD_SHARED) = yes ]; then \
dea92be54fc8 Updated lapack for additional native mingw options
John Donoghue <john.donoghue@ieee.org>
parents: 3023
diff changeset
65 $(INSTALL) '$(1)/lib/liblapack.dll.a' '$(HOST_LIBDIR)/'; \
dea92be54fc8 Updated lapack for additional native mingw options
John Donoghue <john.donoghue@ieee.org>
parents: 3023
diff changeset
66 $(INSTALL) '$(1)/lib/liblapack.lib' '$(HOST_LIBDIR)/'; \
dea92be54fc8 Updated lapack for additional native mingw options
John Donoghue <john.donoghue@ieee.org>
parents: 3023
diff changeset
67 $(INSTALL) '$(1)/bin/liblapack.dll' '$(HOST_BINDIR)/'; \
dea92be54fc8 Updated lapack for additional native mingw options
John Donoghue <john.donoghue@ieee.org>
parents: 3023
diff changeset
68 fi
dea92be54fc8 Updated lapack for additional native mingw options
John Donoghue <john.donoghue@ieee.org>
parents: 3023
diff changeset
69 if [ $(BUILD_STATIC) = yes ]; then \
dea92be54fc8 Updated lapack for additional native mingw options
John Donoghue <john.donoghue@ieee.org>
parents: 3023
diff changeset
70 $(INSTALL) '$(1)/lib/liblapack.a' '$(HOST_LIBDIR)/'; \
dea92be54fc8 Updated lapack for additional native mingw options
John Donoghue <john.donoghue@ieee.org>
parents: 3023
diff changeset
71 fi
dea92be54fc8 Updated lapack for additional native mingw options
John Donoghue <john.donoghue@ieee.org>
parents: 3023
diff changeset
72
dea92be54fc8 Updated lapack for additional native mingw options
John Donoghue <john.donoghue@ieee.org>
parents: 3023
diff changeset
73 $(INSTALL) -d '$(HOST_LIBDIR)/pkgconfig'
dea92be54fc8 Updated lapack for additional native mingw options
John Donoghue <john.donoghue@ieee.org>
parents: 3023
diff changeset
74 $(INSTALL) '$(1)/lapack.pc' '$(HOST_LIBDIR)/pkgconfig/'
dea92be54fc8 Updated lapack for additional native mingw options
John Donoghue <john.donoghue@ieee.org>
parents: 3023
diff changeset
75
dea92be54fc8 Updated lapack for additional native mingw options
John Donoghue <john.donoghue@ieee.org>
parents: 3023
diff changeset
76 endef
3072
050e922d4003 [MSVC] enable LAPACK compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
77 endif
3025
dea92be54fc8 Updated lapack for additional native mingw options
John Donoghue <john.donoghue@ieee.org>
parents: 3023
diff changeset
78 else
dea92be54fc8 Updated lapack for additional native mingw options
John Donoghue <john.donoghue@ieee.org>
parents: 3023
diff changeset
79 define $(PKG)_BUILD
dea92be54fc8 Updated lapack for additional native mingw options
John Donoghue <john.donoghue@ieee.org>
parents: 3023
diff changeset
80 cd '$(1)' && cmake \
2142
276f0c6d3cca packages cgal, eigen, lapack: use CMAKE_TOOLCHAIN_FILE
Tony Theodore <tonyt@logyst.com>
parents: 2113
diff changeset
81 -DCMAKE_TOOLCHAIN_FILE='$(CMAKE_TOOLCHAIN_FILE)' \
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2788
diff changeset
82 -DCMAKE_AR='$(MXE_AR)' \
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2788
diff changeset
83 -DCMAKE_RANLIB='$(MXE_RANLIB)' \
3015
ec6f91539788 initial support for --enable-64
John W. Eaton <jwe@octave.org>
parents: 2997
diff changeset
84 -DCMAKE_Fortran_FLAGS='$($(PKG)_DEFAULT_INTEGER_8_FLAG)' \
3246
0e705514af1b Update lapack so compile correctly with openblas library (when enabled)
John Donoghue <john.donoghue@ieee.org>
parents: 3072
diff changeset
85 $($(PKG)_BLAS_CONFIG_OPTS) \
2093
fc6612a2917b package lapack: build with cmake
Mark Brand <mabrand@mabrand.nl>
parents: 2091
diff changeset
86 .
3015
ec6f91539788 initial support for --enable-64
John W. Eaton <jwe@octave.org>
parents: 2997
diff changeset
87 $(MAKE) -C '$(1)/SRC' -j '$(JOBS)' VERBOSE=1 install
1374
32a1331a3faf new packages: blas cblas lapack
Alois Schlögl <alois.schloegl@gmail.com>
parents:
diff changeset
88 endef
3025
dea92be54fc8 Updated lapack for additional native mingw options
John Donoghue <john.donoghue@ieee.org>
parents: 3023
diff changeset
89 endif