Skip to content
Snippets Groups Projects
Commit 3e4dea3e authored by Frederic Danis's avatar Frederic Danis
Browse files

Add architecture specific library name


This will allow to create the architecture library path like
`/usr/lib/arm-linux-gnueabihf/`.

Signed-off-by: default avatarFrédéric Danis <frederic.danis@collabora.com>
parent 7b8c353e
Branches apertis/v2025dev1
No related tags found
2 merge requests!12Backport: Pull common subtree,!11Pull common subtree
......@@ -6,9 +6,9 @@ PATH=${TESTPATH}/common:${TESTPATH}/bin:$PATH
# Path for architecture specific binaries
case `uname -m` in
x86_64) ARCHDIR=amd64 ;;
armv7l) ARCHDIR=armhf ;;
aarch64) ARCHDIR=arm64 ;;
x86_64) ARCHDIR=amd64 ; ARCHLIBDIR=x86_64-linux-gnu ;;
armv7l) ARCHDIR=armhf ; ARCHLIBDIR=arm-linux-gnueabihf ;;
aarch64) ARCHDIR=arm64 ; ARCHLIBDIR=aarch64-linux-gnu ;;
esac
PATH=${TESTPATH}/${ARCHDIR}/bin:$PATH
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment