Update SYSROOT_DIR assignment in build-libraries.sh and remove --disable-tls from build-toolchain.sh configuration

- Changed SYSROOT_DIR to directly reference SYSROOT for clarity.
- Removed --disable-tls option from GCC build configuration to streamline the build process.
This commit is contained in:
2026-03-30 18:30:16 +03:00
parent f6111b0bb8
commit bb72c9b049
2 changed files with 3 additions and 5 deletions

View File

@@ -19,7 +19,7 @@ export CXXFLAGS=""
# Подготавливаем пути к разделам
LIB_DIR="${TOP}/src/libs"
SYSROOT_DIR="${INSTALL_DIR}${SYSROOT}"
SYSROOT_DIR="${SYSROOT}"
SYSROOT_ETC_DIR="${SYSROOT_DIR}/etc"
SYSROOT_USR_DIR="${SYSROOT_DIR}/usr"
BUILD_SRC_DIR="${TOP}/build"