You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to compile an SLint application for aarch64-unknown-linux-gnu and it needs some library headers to be available.
Would it be possible to install these? if so how?
Using https://github.com/cross-rs/cross it is possible to add apt-get update && apt-get --assume-yes install libgbm-dev:$CROSS_DEB_ARCH libxkbcommon-dev:$CROSS_DEB_ARCH libinput-dev:$CROSS_DEB_ARCH libudev-dev:$CROSS_DEB_ARCH to the pre-build.
Using this action could it be done by just running apt-get update && apt-get --assume-yes install libgbm-dev libxkbcommon-dev libinput-dev libudev-dev?
The text was updated successfully, but these errors were encountered:
Using this action could it be done by just running apt-get update && apt-get --assume-yes install libgbm-dev libxkbcommon-dev libinput-dev libudev-dev?
No.
In environments that use regular mirrors (e.g., in containers), (sudo) dpkg --add-architecture arm64 + (sudo) apt-get update + (sudo) apt-get install -y <package>:arm64 should work.
However, GitHub-hosted runners uses Microsoft's special mirrors and may require additional operations before apt-get update.
I'm fine with adding an option like packages: <package>,... to do them on this action side.
I want to compile an SLint application for
aarch64-unknown-linux-gnu
and it needs some library headers to be available.Would it be possible to install these? if so how?
Using https://github.com/cross-rs/cross it is possible to add
apt-get update && apt-get --assume-yes install libgbm-dev:$CROSS_DEB_ARCH libxkbcommon-dev:$CROSS_DEB_ARCH libinput-dev:$CROSS_DEB_ARCH libudev-dev:$CROSS_DEB_ARCH
to the pre-build.Using this action could it be done by just running
apt-get update && apt-get --assume-yes install libgbm-dev libxkbcommon-dev libinput-dev libudev-dev
?The text was updated successfully, but these errors were encountered: