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