annotate src/build-scons.mk @ 6203:8b23f76955c6 release

ICU4C: Use GCC for native version even if clang is installed. * src/icu4c.mk: ICU4C seems to prefer clang for building the native version if it is installed on the build system. But it looks like that doesn't work for some reason. When cross-compiling, use GCC for the native version instead.
author Markus Mützel <markus.muetzel@gmx.de>
date Thu, 05 May 2022 11:22:40 +0200
parents f062bdb4f0a3
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3450
0ecfd051de81 add build-scon.mk file omitted from previous commit
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 # This file is part of MXE.
0ecfd051de81 add build-scon.mk file omitted from previous commit
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2 # See index.html for further information.
0ecfd051de81 add build-scon.mk file omitted from previous commit
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3
0ecfd051de81 add build-scon.mk file omitted from previous commit
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4 PKG := build-scons
0ecfd051de81 add build-scon.mk file omitted from previous commit
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 $(PKG)_IGNORE :=
5864
166aff1564ee build-scons.mk: Update to version 4.1.0.post1.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5861
diff changeset
6 $(PKG)_VERSION := 4.1.0.post1
166aff1564ee build-scons.mk: Update to version 4.1.0.post1.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5861
diff changeset
7 $(PKG)_CHECKSUM := 47bb89c546804fd76724fd206817ae9a19d4f2bd
166aff1564ee build-scons.mk: Update to version 4.1.0.post1.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5861
diff changeset
8 $(PKG)_SUBDIR := SCons-$($(PKG)_VERSION)
3450
0ecfd051de81 add build-scon.mk file omitted from previous commit
John W. Eaton <jwe@octave.org>
parents:
diff changeset
9 $(PKG)_FILE := scons-$($(PKG)_VERSION).tar.gz
5864
166aff1564ee build-scons.mk: Update to version 4.1.0.post1.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5861
diff changeset
10 $(PKG)_URL := https://sourceforge.net/projects/scons/files/scons/$($(PKG)_VERSION)/$($(PKG)_FILE)
5901
f062bdb4f0a3 Rename build-python3 to build-python.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5864
diff changeset
11 $(PKG)_DEPS := build-python
3450
0ecfd051de81 add build-scon.mk file omitted from previous commit
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12
0ecfd051de81 add build-scon.mk file omitted from previous commit
John W. Eaton <jwe@octave.org>
parents:
diff changeset
13 define $(PKG)_UPDATE
4545
0e56fe2d2ef5 Makefile.in: add update-build-tools target
John Donoghue <john.donoghue@ieee.org>
parents: 4011
diff changeset
14 $(WGET) -q -O- https://sourceforge.net/projects/scons/files/scons/ | \
0e56fe2d2ef5 Makefile.in: add update-build-tools target
John Donoghue <john.donoghue@ieee.org>
parents: 4011
diff changeset
15 $(SED) -n 's|.*<tr title=\"\([0-9][^"]*\)".*|\1|p' | \
0e56fe2d2ef5 Makefile.in: add update-build-tools target
John Donoghue <john.donoghue@ieee.org>
parents: 4011
diff changeset
16 head -1
3450
0ecfd051de81 add build-scon.mk file omitted from previous commit
John W. Eaton <jwe@octave.org>
parents:
diff changeset
17 endef
0ecfd051de81 add build-scon.mk file omitted from previous commit
John W. Eaton <jwe@octave.org>
parents:
diff changeset
18
0ecfd051de81 add build-scon.mk file omitted from previous commit
John W. Eaton <jwe@octave.org>
parents:
diff changeset
19 define $(PKG)_BUILD
5901
f062bdb4f0a3 Rename build-python3 to build-python.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5864
diff changeset
20 cd '$(1)' && $(MXE_PYTHON) setup.py install --prefix='$(BUILD_TOOLS_PREFIX)'
3450
0ecfd051de81 add build-scon.mk file omitted from previous commit
John W. Eaton <jwe@octave.org>
parents:
diff changeset
21 endef