]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - lfs/glibc
switch arm 32 bit arch from armv5tel to armv6l
[people/pmueller/ipfire-2.x.git] / lfs / glibc
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2021 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
25 include Config
26
27 VER = 2.32
28
29 THISAPP = glibc-$(VER)
30 DL_FILE = $(THISAPP).tar.xz
31 DL_FROM = $(URL_IPFIRE)
32 DIR_APP = $(DIR_SRC)/$(THISAPP)
33
34 # Normal build or $(TOOLS_DIR) build.
35 #
36 ifeq "$(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
43 else
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
52 endif
53
54 ifeq "$(BUILD_ARCH)" "aarch64"
55 CFLAGS += -Wno-error=maybe-uninitialized
56 endif
57
58 # Add some general configuration flags
59 EXTRA_CONFIG += \
60 --disable-profile \
61 --enable-kernel=4.14.0 \
62 --enable-add-ons \
63 --without-selinux \
64 --enable-experimental-malloc \
65 --enable-bind-now \
66 --disable-crypt
67
68 ###############################################################################
69 # Top-level Rules
70 ###############################################################################
71
72 objects = $(DL_FILE)
73
74 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
75
76 $(DL_FILE)_MD5 = 720c7992861c57cf97d66a2f36d8d1fa
77
78 install : $(TARGET)
79
80 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
81
82 download :$(patsubst %,$(DIR_DL)/%,$(objects))
83
84 md5 : $(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)
105 @rm -rf $(DIR_APP) $(DIR_SRC)/glibc-build && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
106 @mkdir $(DIR_SRC)/glibc-build
107
108 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/glibc-localedef-no-archive.patch
109
110 ifneq "$(TOOLCHAIN)" "1"
111 ifeq "$(BUILD_ARCH)" "x86_64"
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
114 endif
115
116 ifeq "$(BUILD_ARCH)" "i586"
117 cd $(DIR_APP) && sed -i 's|libs -o|libs -L/usr/lib -Wl,-dynamic-linker=/lib/ld-linux.so.2 -o|' \
118 scripts/test-installation.pl
119 endif
120
121 ifeq "$(BUILD_ARCH)" "armv6l"
122 cd $(DIR_APP) && sed -i 's|libs -o|libs -L/usr/lib -Wl,-dynamic-linker=/lib/ld-linux.so.3 -o|' \
123 scripts/test-installation.pl
124 endif
125 endif
126
127 cd $(DIR_SRC)/glibc-build && \
128 CFLAGS="$(CFLAGS) -fno-asynchronous-unwind-tables" \
129 $(DIR_APP)/configure $(EXTRA_CONFIG)
130
131 cd $(DIR_SRC)/glibc-build && make PARALLELMFLAGS=$(MAKETUNING) \
132 CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)"
133
134 cd $(DIR_APP) && sed '/test-installation/s@\$$(PERL)@echo not running@' -i Makefile
135
136 cd $(DIR_SRC)/glibc-build && make install
137
138 ifneq "$(TOOLCHAIN)" "1"
139 # Creating the locales
140 mkdir -p /usr/lib/locale
141 cd $(DIR_SRC)/glibc-build && make localedata/install-locales $(MAKETUNING)
142
143 # Timezone data will be shipped by tzdata.
144 rm -rfv /usr/share/zoneinfo
145 endif
146
147 ifeq "$(TOOLCHAIN)" "1"
148 # Test the linker in toolchain
149 cd $(DIR_APP) && echo "int main() { return 0; }" > dummy.c
150 cd $(DIR_APP) && $(CROSSTARGET)-gcc dummy.c -o dummy
151
152 # Must be using a runtime linker from $(TOOLS_DIR)
153 cd $(DIR_APP) && readelf -l dummy | grep "Requesting program interpreter: $(TOOLS_DIR)"
154 cd $(DIR_APP) && rm -vf dummy dummy.c
155 endif
156
157 @rm -rf $(DIR_APP) $(DIR_SRC)/glibc-build
158 @$(POSTBUILD)