mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-22 04:56:15 +00:00
5ee2b6fe57
This updates glibc to version 2.38. Add --enable-crypt since the crypt function got disabled in 2.38, but we still need it. Also add the newly introduced --enable-fortify-source flag and hook it up to the build system. Switch to .zst archive while at it. Signed-off-by: Kazuki H <kazukih0205@gmail.com> Link: https://github.com/openwrt/openwrt/pull/14259 [ switch to .zst and fix mirror HASH ] Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
15 lines
362 B
Diff
15 lines
362 B
Diff
add /usr/lib to default search path for the dynamic linker
|
|
|
|
--- a/Makeconfig
|
|
+++ b/Makeconfig
|
|
@@ -632,6 +632,9 @@ else
|
|
default-rpath = $(libdir)
|
|
endif
|
|
|
|
+# Add /usr/lib to default search path for the dynamic linker
|
|
+user-defined-trusted-dirs := /usr/lib
|
|
+
|
|
ifndef link-extra-libs
|
|
link-extra-libs = $(LDLIBS-$(@F))
|
|
link-extra-libs-static = $(link-extra-libs)
|