This commit is contained in:
oleg.korshul
2025-12-21 18:46:25 +03:00
parent 12a1765ca0
commit 055ff85f68
3 changed files with 7 additions and 2 deletions

View File

@ -118,6 +118,7 @@ def make(platform, project, qmake_config_addon="", is_no_errors=False):
base.correct_makefile_after_qmake(platform, makefile)
base.cmd_and_return_cwd("make", ["-f", makefile] + get_j_num(), is_no_errors)
if "" != config.option("sysroot"):
base.restore_sysroot_env()
else:
config_params_array = base.qt_config_as_param(config_param)

View File

@ -6,6 +6,10 @@ wget https://github.com/ONLYOFFICE-data/build_tools_data/raw/refs/heads/master/p
chmod +x ./extract.sh
./extract.sh
cd ./python3/bin
ln -s python3 python
cd ../../
rm ./extract.sh
rm ./python3.tar.gz

View File

@ -61,7 +61,7 @@ def main():
if "arm64" in targets and not base.is_os_arm():
base.move_dir("./qt_build/Qt-5.9.9/gcc_arm64/bin", "./qt_build/Qt-5.9.9/gcc_arm64/_bin")
base.move_dir("./qt_build/Qt-5.9.9/gcc_64/bin", "./qt_build/Qt-5.9.9/gcc_arm64/bin")
base.copy_dir("./qt_build/Qt-5.9.9/gcc_64/bin", "./qt_build/Qt-5.9.9/gcc_arm64/bin")
if __name__ == "__main__":
main()