liblsl icon indicating copy to clipboard operation
liblsl copied to clipboard

aarch64_ubuntu20.04_liblsl_install?

Open yangyang1018 opened this issue 1 year ago • 3 comments

How can I install liblsl and its dependencies on ubuntu 20.04 on aarch64 architecture?

yangyang1018 avatar Jun 20 '24 09:06 yangyang1018

Copying from the CI config:

apt install -y --no-install-recommends g++ git ninja-build file dpkg-dev lsb-release sudo curl cmake libpugixml-dev
cmake -S . -B build \
                -DCMAKE_BUILD_TYPE=Release \
                -DCMAKE_INSTALL_PREFIX=${PWD}/install \
                -DLSL_UNITTESTS=ON \
                -DLSL_BENCHMARKS=ON \
                -DLSL_BUILD_EXAMPLES=ON \
                -DCPACK_PACKAGE_DIRECTORY=${PWD}/package
cmake --build build --target package --config Release -j
cmake -DCPACK_DEBIAN_PACKAGE_SHLIBDEPS=ON .
sudo dpkg -i package/*.deb
cmake --build build --target package --config Release -j
dpkg -I package/liblsl*.deb

tstenner avatar Jun 20 '24 11:06 tstenner

Is it necessary for me to run this command in the terminal?

yangyang1018 avatar Jun 20 '24 11:06 yangyang1018

Thank you, I've installed it and appreciate the instructions!

yangyang1018 avatar Jun 20 '24 12:06 yangyang1018