LimeDriverBindings/build_wheel.sh

16 lines
413 B
Bash
Raw Normal View History

2024-04-21 10:16:39 +00:00
#!/bin/bash
set -ex # will exit on any error and print all commands
yum install -y epel-release
yum update -y # Update the system
yum groupinstall -y "Development Tools"
yum install -y cmake3 git libusb-devel hdf5-devel
# Clone and build LimeSuite
rm -rf LimeSuite
git clone https://github.com/myriadrf/LimeSuite.git
cd LimeSuite/build || exit
cmake3 ../ -DENABLE_GUI=OFF
make -j$(nproc)
make install
ldconfig