]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/glibc
suricata: Change midstream policy to "pass-flow"
[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
f4b059a7 27VER = 2.39
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 48 --prefix=$(TOOLS_DIR) \
fd34a1c8 49 --with-headers=$(TOOLS_DIR)/include
44bfc406 50endif
de57b780 51
44bfc406
MT
52ifeq "$(BUILD_ARCH)" "aarch64"
53 CFLAGS += -Wno-error=maybe-uninitialized
cd1a2927
MT
54endif
55
af4bfa79
MT
56# Add some general configuration flags
57EXTRA_CONFIG += \
58 --disable-profile \
3bca8ae1 59 --enable-kernel=5.4.0 \
af4bfa79
MT
60 --enable-add-ons \
61 --without-selinux \
62 --enable-experimental-malloc \
65a75e0d 63 --enable-bind-now \
3bca8ae1
MT
64 --enable-fortify-source \
65 --disable-crypt \
66 --disable-build-nscd \
67 --disable-nscd
af4bfa79 68
cf557eca
MT
69ifeq "$(BUILD_ARCH)" "x86_64"
70 EXTRA_CONFIG += --enable-cet
71endif
72
173a4d54
MT
73ifeq "$(BUILD_ARCH)" "aarch64"
74 EXTRA_CONFIG += --enable-memory-tagging
75endif
76
cd1a2927
MT
77###############################################################################
78# Top-level Rules
79###############################################################################
80
ce346d23 81objects = $(DL_FILE)
cd1a2927
MT
82
83$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
84
f4b059a7 85$(DL_FILE)_BLAKE2 = 9d98459a2d58401e07c081e0d841935b23998da75a7eb5a7ebd23a1f9ebab99dee623fe166397c1b6c926960c570f62dbca5cb3b5ce84a918adff6b7a15e16bb
cd1a2927
MT
86
87install : $(TARGET)
88
89check : $(patsubst %,$(DIR_CHK)/%,$(objects))
90
91download :$(patsubst %,$(DIR_DL)/%,$(objects))
92
9a7e4d85 93b2 : $(subst %,%_BLAKE2,$(objects))
cd1a2927
MT
94
95###############################################################################
9a7e4d85 96# Downloading, checking, b2sum
cd1a2927
MT
97###############################################################################
98
99$(patsubst %,$(DIR_CHK)/%,$(objects)) :
100 @$(CHECK)
101
102$(patsubst %,$(DIR_DL)/%,$(objects)) :
103 @$(LOAD)
104
9a7e4d85
PM
105$(subst %,%_BLAKE2,$(objects)) :
106 @$(B2SUM)
cd1a2927
MT
107
108###############################################################################
109# Installation Details
110###############################################################################
111
112$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
113 @$(PREBUILD)
6b9f806e 114 @rm -rf $(DIR_APP) $(DIR_SRC)/glibc-build && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
cd1a2927 115 @mkdir $(DIR_SRC)/glibc-build
12788f63 116
15a2c03f
MT
117 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/glibc-localedef-no-archive.patch
118
dc7d6b20
MT
119ifneq "$(TOOLCHAIN)" "1"
120 ifeq "$(BUILD_ARCH)" "x86_64"
81aa9714
MT
121 cd $(DIR_APP) && sed -i 's|libs -o|libs -L/usr/lib64 -Wl,-dynamic-linker=/lib64/ld-linux-x86-64.so.2 -o|' \
122 scripts/test-installation.pl
dc7d6b20 123 endif
51f9e7ac 124endif
9b0ff0a0 125
12788f63
MT
126 cd $(DIR_SRC)/glibc-build && \
127 CFLAGS="$(CFLAGS) -fno-asynchronous-unwind-tables" \
128 $(DIR_APP)/configure $(EXTRA_CONFIG)
3a317084 129
12788f63 130 cd $(DIR_SRC)/glibc-build && make PARALLELMFLAGS=$(MAKETUNING) \
c51823b2 131 CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)"
3a317084 132
65a75e0d
MT
133 cd $(DIR_APP) && sed '/test-installation/s@\$$(PERL)@echo not running@' -i Makefile
134
6b9f806e 135 cd $(DIR_SRC)/glibc-build && make install
cd1a2927 136
b7093f17 137ifneq "$(TOOLCHAIN)" "1"
12788f63 138 # Creating the locales
cd1a2927 139 mkdir -p /usr/lib/locale
6ef219bb 140 cd $(DIR_SRC)/glibc-build && make localedata/install-locales $(MAKETUNING)
c1c60dbb
MT
141
142 # Timezone data will be shipped by tzdata.
143 rm -rfv /usr/share/zoneinfo
cd1a2927 144endif
dc7d6b20 145
fe2adb0c
MT
146ifeq "$(TOOLCHAIN)" "1"
147 # Test the linker in toolchain
148 cd $(DIR_APP) && echo "int main() { return 0; }" > dummy.c
149 cd $(DIR_APP) && $(CROSSTARGET)-gcc dummy.c -o dummy
150
6c4cc7ea
MT
151 # Must be using a runtime linker from $(TOOLS_DIR)
152 cd $(DIR_APP) && readelf -l dummy | grep "Requesting program interpreter: $(TOOLS_DIR)"
fe2adb0c
MT
153 cd $(DIR_APP) && rm -vf dummy dummy.c
154endif
155
cd1a2927
MT
156 @rm -rf $(DIR_APP) $(DIR_SRC)/glibc-build
157 @$(POSTBUILD)