39 lines
1.1 KiB
Python
39 lines
1.1 KiB
Python
version = "2.41"
|
|
revision = 1
|
|
description = "GNU C library"
|
|
license = "LGPL-2.1-or-later"
|
|
url = "https://www.gnu.org/software/libc/"
|
|
source = tarball(
|
|
url=f"https://ftp.gnu.org/gnu/glibc/glibc-{version}.tar.xz",
|
|
sha256="a5a26b22f545d6b7d7b3dd828e11e428f24f4fac43c934fb071b6a7d0828e901",
|
|
)
|
|
host_deps = ["autoconf", "automake", "binutils", "gcc-bootstrap"]
|
|
deps = ["linux-headers"]
|
|
|
|
build_if = profile["libc"] == "glibc"
|
|
|
|
|
|
def configure(self):
|
|
autotools_configure(
|
|
self,
|
|
[
|
|
f"--build={self.triple}",
|
|
f"--with-headers={self.sysroot}{self.profile['prefix']}/include",
|
|
"--enable-kernel=5.4",
|
|
"--enable-bind-now",
|
|
"--enable-stack-protector=strong",
|
|
"--enable-cet",
|
|
"--disable-werror",
|
|
"--disable-profile",
|
|
"--disable-nscd",
|
|
"--without-selinux",
|
|
"--without-gd",
|
|
"libc_cv_slibdir=/lib",
|
|
"libc_cv_rtlddir=/lib",
|
|
"libc_cv_forced_unwind=yes",
|
|
],
|
|
)
|
|
|
|
|
|
_, build, install = autotools()
|