annotate src/pthreads.mk @ 5893:53a6c7df43f8

Mesa 3D: Update to version 21.1.8. * src/mesa.mk: Update version and checksum. * src/mesa-2-uninitialized.patch: Remove file. * dist-files.mk: Remove file from list.
author Markus Mützel <markus.muetzel@gmx.de>
date Thu, 16 Sep 2021 22:37:45 +0200
parents b7d6a53fa46c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2333
f653602a0500 Rebrand to new project name MXE
Volker Grabsch <vog@notjusthosting.com>
parents: 1390
diff changeset
1 # This file is part of MXE.
2353
99516e73b368 Move doc/index.html -> index.html
Volker Grabsch <vog@notjusthosting.com>
parents: 2349
diff changeset
2 # See index.html for further information.
938
795dbc19e055 detangle package pthreads from package gcc
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
3
795dbc19e055 detangle package pthreads from package gcc
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
4 PKG := pthreads
3808
c7c1065c12e0 pthreads: use mingw-w64 threads
John Donoghue
parents: 3480
diff changeset
5 $(PKG)_IGNORE := $(mingw-w64_IGNORE)
c7c1065c12e0 pthreads: use mingw-w64 threads
John Donoghue
parents: 3480
diff changeset
6 $(PKG)_VERSION := $(mingw-w64_VERSION)
c7c1065c12e0 pthreads: use mingw-w64 threads
John Donoghue
parents: 3480
diff changeset
7 $(PKG)_CHECKSUM := $(mingw-w64_CHECKSUM)
c7c1065c12e0 pthreads: use mingw-w64 threads
John Donoghue
parents: 3480
diff changeset
8 $(PKG)_SUBDIR := $(mingw-w64_SUBDIR)
c7c1065c12e0 pthreads: use mingw-w64 threads
John Donoghue
parents: 3480
diff changeset
9 $(PKG)_FILE := $(mingw-w64_FILE)
c7c1065c12e0 pthreads: use mingw-w64 threads
John Donoghue
parents: 3480
diff changeset
10 $(PKG)_URL := $(mingw-w64_URL)
c7c1065c12e0 pthreads: use mingw-w64 threads
John Donoghue
parents: 3480
diff changeset
11 $(PKG)_DEPS :=
938
795dbc19e055 detangle package pthreads from package gcc
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
12
795dbc19e055 detangle package pthreads from package gcc
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
13 define $(PKG)_UPDATE
3808
c7c1065c12e0 pthreads: use mingw-w64 threads
John Donoghue
parents: 3480
diff changeset
14 echo $(mingw-w64_VERSION)
938
795dbc19e055 detangle package pthreads from package gcc
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
15 endef
795dbc19e055 detangle package pthreads from package gcc
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
16
3975
9c875e7a344a pthread: only compile if cross mingw
John Donoghue
parents: 3808
diff changeset
17 ifeq ($(MXE_SYSTEM)$(MXE_NATIVE_BUILD),mingwno)
938
795dbc19e055 detangle package pthreads from package gcc
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18 define $(PKG)_BUILD
4467
b7d6a53fa46c gcc: update to 7.1 with tools
John D
parents: 3975
diff changeset
19 # apply the mingw-w64 patches to the mingw sources
b7d6a53fa46c gcc: update to 7.1 with tools
John D
parents: 3975
diff changeset
20 $(foreach PKG_PATCH,$(sort $(wildcard $(TOP_DIR)/src/mingw-w64-*.patch)),
b7d6a53fa46c gcc: update to 7.1 with tools
John D
parents: 3975
diff changeset
21 (cd '$(1)' && $(PATCH) -p1 -u) < $(PKG_PATCH))
b7d6a53fa46c gcc: update to 7.1 with tools
John D
parents: 3975
diff changeset
22 $(foreach PKG_PATCH,$(sort $(wildcard $(TOP_DIR)/src/$(MXE_SYSTEM)-mingw-w64-*.patch)),
b7d6a53fa46c gcc: update to 7.1 with tools
John D
parents: 3975
diff changeset
23 (cd '$(1)' && $(PATCH) -p1 -u) < $(PKG_PATCH))
b7d6a53fa46c gcc: update to 7.1 with tools
John D
parents: 3975
diff changeset
24
3808
c7c1065c12e0 pthreads: use mingw-w64 threads
John Donoghue
parents: 3480
diff changeset
25 cd '$(1)/mingw-w64-libraries/winpthreads' && ./configure \
c7c1065c12e0 pthreads: use mingw-w64 threads
John Donoghue
parents: 3480
diff changeset
26 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
c7c1065c12e0 pthreads: use mingw-w64 threads
John Donoghue
parents: 3480
diff changeset
27 --prefix='$(HOST_PREFIX)' \
c7c1065c12e0 pthreads: use mingw-w64 threads
John Donoghue
parents: 3480
diff changeset
28 $(ENABLE_SHARED_OR_STATIC)
c7c1065c12e0 pthreads: use mingw-w64 threads
John Donoghue
parents: 3480
diff changeset
29
c7c1065c12e0 pthreads: use mingw-w64 threads
John Donoghue
parents: 3480
diff changeset
30 $(MAKE) -C '$(1)/mingw-w64-libraries/winpthreads' -j '$(JOBS)'
c7c1065c12e0 pthreads: use mingw-w64 threads
John Donoghue
parents: 3480
diff changeset
31 $(MAKE) -C '$(1)/mingw-w64-libraries/winpthreads' -j 1 install
938
795dbc19e055 detangle package pthreads from package gcc
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
32 endef
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2886
diff changeset
33 else
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2886
diff changeset
34 define $(PKG)_BUILD
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2886
diff changeset
35 endef
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2886
diff changeset
36 endif