annotate src/openblas.mk @ 5522:c475092f8142

openblas: Support using ccache. * src/openblas.mk: Get the basename of the (cross-)compilers to find their ccache links in the search path.
author Markus Mützel <markus.muetzel@gmx.de>
date Thu, 27 Aug 2020 12:47:35 +0200
parents 9298ca9247f1
children c93838f0bcf2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3067
bdb4b64f2ff8 Add initial openblas codebase to mxe
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
1 # This file is part of MXE.
bdb4b64f2ff8 Add initial openblas codebase to mxe
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
2 # See index.html for further information.
bdb4b64f2ff8 Add initial openblas codebase to mxe
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
3
bdb4b64f2ff8 Add initial openblas codebase to mxe
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
4 PKG := openblas
bdb4b64f2ff8 Add initial openblas codebase to mxe
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
5 $(PKG)_IGNORE :=
5463
9298ca9247f1 * src/openblas.mk: update to v0.3.10
John Donoghue <john.donoghue@ieee.org>
parents: 5343
diff changeset
6 $(PKG)_VERSION := 0.3.10
9298ca9247f1 * src/openblas.mk: update to v0.3.10
John Donoghue <john.donoghue@ieee.org>
parents: 5343
diff changeset
7 $(PKG)_CHECKSUM := cbe3fdd0e6ee235debc611d76976dac62f3ddc1c
3067
bdb4b64f2ff8 Add initial openblas codebase to mxe
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
8 $(PKG)_SUBDIR := OpenBLAS-$($(PKG)_VERSION)
bdb4b64f2ff8 Add initial openblas codebase to mxe
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
9 $(PKG)_FILE := $($(PKG)_SUBDIR).tar.gz
4557
91cbefb72c40 * src/openblas.mk: update to v0.2.20, use https
John D
parents: 4304
diff changeset
10 $(PKG)_URL := https://github.com/xianyi/OpenBLAS/archive/v$($(PKG)_VERSION).tar.gz
5174
89431d3339ef * src/openblas.mk: depend on BLAS for xerbla
John Donoghue
parents: 5148
diff changeset
11 $(PKG)_DEPS := blas
3067
bdb4b64f2ff8 Add initial openblas codebase to mxe
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
12
bdb4b64f2ff8 Add initial openblas codebase to mxe
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
13 $(PKG)_MAKE_OPTS := PREFIX=$(HOST_PREFIX) DYNAMIC_ARCH=1 NO_LAPACK=1
bdb4b64f2ff8 Add initial openblas codebase to mxe
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
14
5522
c475092f8142 openblas: Support using ccache.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5463
diff changeset
15 ifeq ($(USE_CCACHE),yes)
c475092f8142 openblas: Support using ccache.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5463
diff changeset
16 $(PKG)_MXE_CC := $(shell basename $(MXE_CC))
c475092f8142 openblas: Support using ccache.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5463
diff changeset
17 $(PKG)_MXE_F77 := $(shell basename $(MXE_F77))
c475092f8142 openblas: Support using ccache.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5463
diff changeset
18 else
c475092f8142 openblas: Support using ccache.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5463
diff changeset
19 $(PKG)_MXE_CC := $(MXE_CC)
c475092f8142 openblas: Support using ccache.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5463
diff changeset
20 $(PKG)_MXE_F77 := $(MXE_F77)
c475092f8142 openblas: Support using ccache.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5463
diff changeset
21 endif
c475092f8142 openblas: Support using ccache.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5463
diff changeset
22
3850
e8571962313f openblas.mk: also set make options for native builds
John W. Eaton <jwe@octave.org>
parents: 3802
diff changeset
23 ifeq ($(MXE_NATIVE_BUILD),yes)
e8571962313f openblas.mk: also set make options for native builds
John W. Eaton <jwe@octave.org>
parents: 3802
diff changeset
24 ## This may also be needed on some systems: NO_AVX2=1
5522
c475092f8142 openblas: Support using ccache.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5463
diff changeset
25 $(PKG)_MAKE_OPTS += NO_CBLAS=1 USE_THREAD=1 CC=$($(PKG)_MXE_CC) FC=$($(PKG)_MXE_F77)
3850
e8571962313f openblas.mk: also set make options for native builds
John W. Eaton <jwe@octave.org>
parents: 3802
diff changeset
26 else
5522
c475092f8142 openblas: Support using ccache.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5463
diff changeset
27 $(PKG)_MAKE_OPTS += NO_CBLAS=1 USE_THREAD=1 CC=$($(PKG)_MXE_CC) FC=$($(PKG)_MXE_F77) HOSTCC=gcc HOSTFC=gfortran CROSS=1 CROSS_SUFFIX=$(MXE_TOOL_PREFIX)
3067
bdb4b64f2ff8 Add initial openblas codebase to mxe
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
28 endif
bdb4b64f2ff8 Add initial openblas codebase to mxe
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
29
4734
80461a9e516c override default xerbla with version from Octave
John W. Eaton <jwe@octave.org>
parents: 4714
diff changeset
30 ifeq ($(MXE_WINDOWS_BUILD),yes)
80461a9e516c override default xerbla with version from Octave
John W. Eaton <jwe@octave.org>
parents: 4714
diff changeset
31 $(PKG)_MAKE_OPTS += EXTRALIB=-lxerbla
80461a9e516c override default xerbla with version from Octave
John W. Eaton <jwe@octave.org>
parents: 4714
diff changeset
32 endif
80461a9e516c override default xerbla with version from Octave
John W. Eaton <jwe@octave.org>
parents: 4714
diff changeset
33
4304
0db33a326eec make --enable-64 the default
John W. Eaton <jwe@octave.org>
parents: 4273
diff changeset
34 ifeq ($(ENABLE_FORTRAN_INT64),yes)
3568
f44dd0186692 allow native unixy builds of openblas to work on 64-bit systems
John W. Eaton <jwe@octave.org>
parents: 3508
diff changeset
35 $(PKG)_MAKE_OPTS += BINARY=64 INTERFACE64=1
3067
bdb4b64f2ff8 Add initial openblas codebase to mxe
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
36 endif
bdb4b64f2ff8 Add initial openblas codebase to mxe
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
37
bdb4b64f2ff8 Add initial openblas codebase to mxe
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
38 define $(PKG)_UPDATE
4624
a8d8c1a0b573 * src/openblas.mk: implment PKG_UPDATE rule
John D
parents: 4557
diff changeset
39 $(WGET) -q -O- 'https://github.com/xianyi/OpenBLAS/tags' | \
a8d8c1a0b573 * src/openblas.mk: implment PKG_UPDATE rule
John D
parents: 4557
diff changeset
40 $(SED) -n 's|.*releases/tag/v\([^"]*\).*|\1|p' | $(SORT) -Vr | \
a8d8c1a0b573 * src/openblas.mk: implment PKG_UPDATE rule
John D
parents: 4557
diff changeset
41 head -1
3067
bdb4b64f2ff8 Add initial openblas codebase to mxe
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
42 endef
bdb4b64f2ff8 Add initial openblas codebase to mxe
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
43
bdb4b64f2ff8 Add initial openblas codebase to mxe
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
44 define $(PKG)_BUILD
bdb4b64f2ff8 Add initial openblas codebase to mxe
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
45 $(MAKE) -C '$(1)' -j '$(JOBS)' $($(PKG)_MAKE_OPTS)
3681
f0b359d91bf0 openblas: update to 0.2.10
John Donoghue <john.donoghue@ieee.org>
parents: 3568
diff changeset
46 $(MAKE) -C '$(1)' -j 1 $($(PKG)_MAKE_OPTS) install
3067
bdb4b64f2ff8 Add initial openblas codebase to mxe
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
47 endef