]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - lfs/glibc
glibc: Update to version 2.34
[people/pmueller/ipfire-2.x.git] / lfs / glibc
CommitLineData
cd1a2927 1###############################################################################
cd1a2927 2# #
70df8302 3# IPFire.org - A linux based firewall #
aafdd71b 4# Copyright (C) 2007-2021 IPFire Team <info@ipfire.org> #
70df8302
MT
5# #
6# This program is free software: you can redistribute it and/or modify #
cd1a2927 7# it under the terms of the GNU General Public License as published by #
70df8302 8# the Free Software Foundation, either version 3 of the License, or #
cd1a2927
MT
9# (at your option) any later version. #
10# #
70df8302 11# This program is distributed in the hope that it will be useful, #
cd1a2927
MT
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
70df8302 17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
cd1a2927 18# #
cd1a2927
MT
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include Config
26
1c3905af 27VER = 2.34
cd1a2927 28
dd714b8a 29THISAPP = glibc-$(VER)
65a75e0d 30DL_FILE = $(THISAPP).tar.xz
7a98bae5 31DL_FROM = $(URL_IPFIRE)
cd1a2927 32DIR_APP = $(DIR_SRC)/$(THISAPP)
cd1a2927 33
6c4cc7ea 34# Normal build or $(TOOLS_DIR) build.
cd1a2927
MT
35#
36ifeq "$(ROOT)" ""
37 TARGET = $(DIR_INFO)/$(THISAPP)
af4bfa79 38 EXTRA_CONFIG = \
2435f0cb 39 --build=$(BUILDTARGET) \
af4bfa79 40 --prefix=/usr \
dfa795eb
MT
41 --libexecdir=/usr/lib/glibc \
42 --enable-stack-protector=strong
cd1a2927
MT
43else
44 TARGET = $(DIR_INFO)/$(THISAPP)-tools
af4bfa79 45 EXTRA_CONFIG = \
12788f63
MT
46 --host=$(CROSSTARGET) \
47 --build=$(BUILDTARGET) \
6c4cc7ea
MT
48 --prefix=$(TOOLS_DIR) \
49 --with-headers=$(TOOLS_DIR)/include \
12788f63 50 libc_cv_forced_unwind=yes \
6b9f806e 51 libc_cv_c_cleanup=yes
44bfc406 52endif
de57b780 53
44bfc406
MT
54ifeq "$(BUILD_ARCH)" "aarch64"
55 CFLAGS += -Wno-error=maybe-uninitialized
cd1a2927
MT
56endif
57
af4bfa79
MT
58# Add some general configuration flags
59EXTRA_CONFIG += \
60 --disable-profile \
6843949d 61 --enable-kernel=4.14.0 \
af4bfa79
MT
62 --enable-add-ons \
63 --without-selinux \
64 --enable-experimental-malloc \
65a75e0d 65 --enable-bind-now \
cf6c8e67 66 --disable-crypt
af4bfa79 67
cd1a2927
MT
68###############################################################################
69# Top-level Rules
70###############################################################################
71
ce346d23 72objects = $(DL_FILE)
cd1a2927
MT
73
74$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
75
1c3905af 76$(DL_FILE)_MD5 = 31998b53fb39cb946e96abc310af1c89
cd1a2927
MT
77
78install : $(TARGET)
79
80check : $(patsubst %,$(DIR_CHK)/%,$(objects))
81
82download :$(patsubst %,$(DIR_DL)/%,$(objects))
83
84md5 : $(subst %,%_MD5,$(objects))
85
86###############################################################################
87# Downloading, checking, md5sum
88###############################################################################
89
90$(patsubst %,$(DIR_CHK)/%,$(objects)) :
91 @$(CHECK)
92
93$(patsubst %,$(DIR_DL)/%,$(objects)) :
94 @$(LOAD)
95
96$(subst %,%_MD5,$(objects)) :
97 @$(MD5)
98
99###############################################################################
100# Installation Details
101###############################################################################
102
103$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
104 @$(PREBUILD)
6b9f806e 105 @rm -rf $(DIR_APP) $(DIR_SRC)/glibc-build && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
cd1a2927 106 @mkdir $(DIR_SRC)/glibc-build
12788f63 107
15a2c03f
MT
108 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/glibc-localedef-no-archive.patch
109
dc7d6b20
MT
110ifneq "$(TOOLCHAIN)" "1"
111 ifeq "$(BUILD_ARCH)" "x86_64"
81aa9714
MT
112 cd $(DIR_APP) && sed -i 's|libs -o|libs -L/usr/lib64 -Wl,-dynamic-linker=/lib64/ld-linux-x86-64.so.2 -o|' \
113 scripts/test-installation.pl
dc7d6b20
MT
114 endif
115
aafdd71b 116 ifeq "$(BUILD_ARCH)" "armv6l"
dc7d6b20
MT
117 cd $(DIR_APP) && sed -i 's|libs -o|libs -L/usr/lib -Wl,-dynamic-linker=/lib/ld-linux.so.3 -o|' \
118 scripts/test-installation.pl
119 endif
51f9e7ac 120endif
9b0ff0a0 121
12788f63
MT
122 cd $(DIR_SRC)/glibc-build && \
123 CFLAGS="$(CFLAGS) -fno-asynchronous-unwind-tables" \
124 $(DIR_APP)/configure $(EXTRA_CONFIG)
3a317084 125
12788f63 126 cd $(DIR_SRC)/glibc-build && make PARALLELMFLAGS=$(MAKETUNING) \
c51823b2 127 CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)"
3a317084 128
65a75e0d
MT
129 cd $(DIR_APP) && sed '/test-installation/s@\$$(PERL)@echo not running@' -i Makefile
130
6b9f806e 131 cd $(DIR_SRC)/glibc-build && make install
cd1a2927 132
b7093f17 133ifneq "$(TOOLCHAIN)" "1"
12788f63 134 # Creating the locales
cd1a2927 135 mkdir -p /usr/lib/locale
6ef219bb 136 cd $(DIR_SRC)/glibc-build && make localedata/install-locales $(MAKETUNING)
c1c60dbb
MT
137
138 # Timezone data will be shipped by tzdata.
139 rm -rfv /usr/share/zoneinfo
cd1a2927 140endif
dc7d6b20 141
fe2adb0c
MT
142ifeq "$(TOOLCHAIN)" "1"
143 # Test the linker in toolchain
144 cd $(DIR_APP) && echo "int main() { return 0; }" > dummy.c
145 cd $(DIR_APP) && $(CROSSTARGET)-gcc dummy.c -o dummy
146
6c4cc7ea
MT
147 # Must be using a runtime linker from $(TOOLS_DIR)
148 cd $(DIR_APP) && readelf -l dummy | grep "Requesting program interpreter: $(TOOLS_DIR)"
fe2adb0c
MT
149 cd $(DIR_APP) && rm -vf dummy dummy.c
150endif
151
cd1a2927
MT
152 @rm -rf $(DIR_APP) $(DIR_SRC)/glibc-build
153 @$(POSTBUILD)