annotate src/gcc-isl.mk @ 6113:24e29dcb2e64

Qt5: Update to version 5.15.3. * src/qtbase.mk: Update version and checksum. * src/qtbase-2-gcc11.patch: Remove hunks from patch that have been applied upstream. * src/qtimageformats.mk, src/qtsvg.mk, src/qttools.mk, src/qttranslationse.mk: Update checksum.
author Markus Mützel <markus.muetzel@gmx.de>
date Sat, 05 Mar 2022 10:59:53 +0100
parents 14180027d205
children
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 := gcc-isl
4474
c7285e784532 avoid using version and checksum information from other packages (Bug #52073)
John D
parents: 3708
diff changeset
5 $(PKG)_IGNORE :=
6086
14180027d205 isl: Update to version 0.24.
Markus Mützel <markus.muetzel@gmx.de>
parents: 6083
diff changeset
6 $(PKG)_VERSION := 0.24
14180027d205 isl: Update to version 0.24.
Markus Mützel <markus.muetzel@gmx.de>
parents: 6083
diff changeset
7 $(PKG)_CHECKSUM := b0c46cc1c4fb1658def8d3c4c702a01049ea795e
6083
49f199fba615 isl: Switch to official mirror.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5923
diff changeset
8 $(PKG)_SUBDIR := isl-$($(PKG)_VERSION)
5920
62cf840a71a5 isl: use git repo instead of unresponsive website
John Donoghue <john.donoghue@ieee.org>
parents: 5325
diff changeset
9 $(PKG)_FILE := isl-$($(PKG)_VERSION).tar.gz
6083
49f199fba615 isl: Switch to official mirror.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5923
diff changeset
10 $(PKG)_URL := https://libisl.sourceforge.io/$($(PKG)_FILE)
5923
ca137ab73946 * src/gcc-isl.mk: add dependancy of build-libtool
John Donoghue <john.donoghue@ieee.org>
parents: 5920
diff changeset
11 $(PKG)_DEPS := build-libtool 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
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
13 define $(PKG)_UPDATE
3708
d95b8b84cea7 enable additional $(PKG)_UPDATE targets.
John W. Eaton <jwe@octave.org>
parents: 3504
diff changeset
14 echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2;
3496
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
15 echo $(isl_VERSION)
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
16 endef
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
17
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
18 define $(PKG)_BUILD
6083
49f199fba615 isl: Switch to official mirror.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5923
diff changeset
19 cd '$(1)' && mkdir '$(1)/.build'
49f199fba615 isl: Switch to official mirror.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5923
diff changeset
20 cd '$(1)/.build' && '$(1)/configure' \
3496
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
21 --prefix='$(BUILD_TOOLS_PREFIX)' \
3504
f8e5b89bb3e3 Make build gcc dependancies static
John Donoghue <john.donoghue@ieee.org>
parents: 3501
diff changeset
22 --disable-shared \
3501
33b776056ec1 gcc: fix gmp-prefix
John Donoghue <john.donoghue@ieee.org>
parents: 3496
diff changeset
23 --with-gmp-prefix='$(BUILD_TOOLS_PREFIX)'
6083
49f199fba615 isl: Switch to official mirror.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5923
diff changeset
24 $(MAKE) -C '$(1)/.build' -j '$(JOBS)'
49f199fba615 isl: Switch to official mirror.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5923
diff changeset
25 $(MAKE) -C '$(1)/.build' -j 1 install
3496
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
26 endef