- Enhanced build-libraries.sh to configure and build libnl version 3.2.0, including checks for required tools like flex and bison. - Updated download_prerequisites.sh to include the download link for libnl. - Modified README.md to document the addition of libnl and its dependencies. - Set LIBNL_VER to 3.2.0 in versions.sh for consistency across scripts.
17 lines
548 B
Bash
17 lines
548 B
Bash
# ==================================================================
|
|
# Версии компонентов тулчейна
|
|
# ==================================================================
|
|
BINUTILS_VER="2.42"
|
|
GCC_VER="13.4.0"
|
|
LINUX_VER="4.9.224"
|
|
UCLIBC_VER="1.0.34"
|
|
|
|
# ==================================================================
|
|
# Версии библиотек
|
|
# ==================================================================
|
|
ZLIB_VER="1.2.13"
|
|
OPENSSL_VER="3.0.13"
|
|
LIBVNCSERVER_VER="0.9.14"
|
|
FREETYPE_VER="2.13.2"
|
|
LIBNL_VER="3.2.0"
|