GitHub Actions: natives.yml:

- disabled cross-compile for arm64 architecture on x86_64 Linux
- use `apt-get` instead of `apt`
- use long command line options for `codesign`
This commit is contained in:
Karl Tauber
2025-06-13 14:33:54 +02:00
parent 6715886b24
commit f2882370de
2 changed files with 25 additions and 23 deletions

View File

@@ -33,14 +33,16 @@ To build the library on Linux, some packages needs to be installed:
### Ubuntu
~~~
sudo apt update
sudo apt install build-essential libxt-dev libgtk-3-dev
sudo apt-get update
sudo apt-get install build-essential libxt-dev libgtk-3-dev
~~~
Only on x86_64 Linux for cross-compiling for arm64 architecture:
#### Cross-compile for arm64 architecture on x86_64 Linux
Only needed on x86_64 Linux if you want cross-compile for arm64 architecture:
~~~
sudo apt install g++-aarch64-linux-gnu
sudo apt-get install g++-aarch64-linux-gnu
~~~
Download `libgtk-3.so` for arm64 architecture: