forked from kherud/java-llama.cpp
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathupdate.sh
More file actions
executable file
·17 lines (15 loc) · 882 Bytes
/
Copy pathupdate.sh
File metadata and controls
executable file
·17 lines (15 loc) · 882 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash
# SPDX-FileCopyrightText: 2026 Bernard Ladenthin <bernard.ladenthin@gmail.com>
# SPDX-FileCopyrightText: 2023-2025 Konstantin Heurer
#
# SPDX-License-Identifier: MIT
# This script prints the commands to upgrade the docker cross compilation scripts
docker run --rm dockcross/manylinux2014-x64 > ./dockcross-manylinux2014-x64
docker run --rm dockcross/manylinux_2_28-x64 > ./dockcross-manylinux_2_28-x64
docker run --rm dockcross/manylinux2014-x86 > ./dockcross-manylinux2014-x86
docker run --rm dockcross/linux-arm64-lts > ./dockcross-linux-arm64-lts
docker run --rm dockcross/android-arm > ./dockcross-android-arm
docker run --rm dockcross/android-arm64 > ./dockcross-android-arm64
docker run --rm dockcross/android-x86 > ./dockcross-android-x86
docker run --rm dockcross/android-x86_64 > ./dockcross-android-x86_64
chmod +x ./dockcross-*