annotate src/gcc-isl.mk @ 6213:5f64fb928091 release

build-gcc: Avoid library clash when calling msgfmt. * src/build-gcc-1-msgfmt.patch: Don't use libraries from the build tree when calling `msgfmt`. * dist-files.mk: Add patch to list.
author Markus Mützel <markus.muetzel@gmx.de>
date Fri, 06 May 2022 19:36:10 +0200
parents ca137ab73946
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 := gcc-isl
4474
c7285e784532 avoid using version and checksum information from other packages (Bug #52073)
John D
parents: 3708
diff changeset
5 $(PKG)_IGNORE :=
5325
03a5acedac33 * src/gcc-isl.mk, src/isl.mk: update to v0.22.1, update urls
John Donoghue
parents: 4474
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-isl-$($(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 := isl-$($(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)
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
5920
62cf840a71a5 isl: use git repo instead of unresponsive website
John Donoghue <john.donoghue@ieee.org>
parents: 5325
diff changeset
19 cd '$(1)' && ./autogen.sh
3496
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20 mkdir '$(1).build'
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
21 cd '$(1).build' && '$(1)/configure' \
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
22 --prefix='$(BUILD_TOOLS_PREFIX)' \
3504
f8e5b89bb3e3 Make build gcc dependancies static
John Donoghue <john.donoghue@ieee.org>
parents: 3501
diff changeset
23 --disable-shared \
3501
33b776056ec1 gcc: fix gmp-prefix
John Donoghue <john.donoghue@ieee.org>
parents: 3496
diff changeset
24 --with-gmp-prefix='$(BUILD_TOOLS_PREFIX)'
3496
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
25 $(MAKE) -C '$(1).build' -j '$(JOBS)'
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
26 $(MAKE) -C '$(1).build' -j 1 install
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
27 endef