annotate src/isl.mk @ 6161:8fcac4d6d983 release

of-queueing: Fix syntax error with Octave 7 (bug #62314). * src/of-queueing-1-octave7.patch: Add new file. * dist-files.mk: Include new patch.
author Markus Mützel <markus.muetzel@gmx.de>
date Thu, 14 Apr 2022 19:27:13 +0200
parents 62cf840a71a5
children 49f199fba615
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3496
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 # This file is part of MXE.
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2 # See index.html for further information.
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4 PKG := isl
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 $(PKG)_IGNORE :=
5325
03a5acedac33 * src/gcc-isl.mk, src/isl.mk: update to v0.22.1, update urls
John Donoghue
parents: 4467
diff changeset
6 $(PKG)_VERSION := 0.22.1
5920
62cf840a71a5 isl: use git repo instead of unresponsive website
John Donoghue <john.donoghue@ieee.org>
parents: 5325
diff changeset
7 $(PKG)_CHECKSUM := ce66c4415906bf2c16a8f09f31383f4fe0991531
62cf840a71a5 isl: use git repo instead of unresponsive website
John Donoghue <john.donoghue@ieee.org>
parents: 5325
diff changeset
8 $(PKG)_SUBDIR := isl-$(PKG)-$($(PKG)_VERSION)-788faca
62cf840a71a5 isl: use git repo instead of unresponsive website
John Donoghue <john.donoghue@ieee.org>
parents: 5325
diff changeset
9 $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz
62cf840a71a5 isl: use git repo instead of unresponsive website
John Donoghue <john.donoghue@ieee.org>
parents: 5325
diff changeset
10 $(PKG)_URL := https://repo.or.cz/isl.git/snapshot/$($(PKG)_FILE)
3502
d667a65b0f2f update gcc dependencies
John W. Eaton <jwe@octave.org>
parents: 3496
diff changeset
11 $(PKG)_DEPS := build-gcc gmp
3496
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12
4467
b7d6a53fa46c gcc: update to 7.1 with tools
John D
parents: 3934
diff changeset
13 $(PKG)_EXTRA_MAKE_FLAGS := LDFLAGS='-no-undefined'
b7d6a53fa46c gcc: update to 7.1 with tools
John D
parents: 3934
diff changeset
14
3496
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
15 # stick to tested versions from gcc
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
16 define $(PKG)_UPDATE
5920
62cf840a71a5 isl: use git repo instead of unresponsive website
John Donoghue <john.donoghue@ieee.org>
parents: 5325
diff changeset
17 $(WGET) -q -O- 'https://repo.or.cz/isl.git/refs' | \
62cf840a71a5 isl: use git repo instead of unresponsive website
John Donoghue <john.donoghue@ieee.org>
parents: 5325
diff changeset
18 $(SED) -n 's,.*>tags/isl-\([0-9][^<]*\).*,\1,p' | \
3496
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
19 $(SORT) -V |
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20 tail -1
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
21 endef
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
22
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
23 define $(PKG)_BUILD
5920
62cf840a71a5 isl: use git repo instead of unresponsive website
John Donoghue <john.donoghue@ieee.org>
parents: 5325
diff changeset
24 cd '$(1)' && ./autogen.sh && ./configure \
3496
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
25 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
26 $(ENABLE_SHARED_OR_STATIC) \
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
27 --prefix='$(HOST_PREFIX)' \
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
28 --with-gmp-prefix='$(HOST_PREFIX)'
3928
b50d43f931b1 isl: use -no-undefined in windows build
John Donoghue
parents: 3926
diff changeset
29 $(MAKE) -C '$(1)' -j '$(JOBS)' $($(PKG)_EXTRA_MAKE_FLAGS)
b50d43f931b1 isl: use -no-undefined in windows build
John Donoghue
parents: 3926
diff changeset
30 $(MAKE) -C '$(1)' -j '$(JOBS)' $($(PKG)_EXTRA_MAKE_FLAGS) install
3496
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
31 endef