xmrig/scripts/build.hwloc.sh

19 lines
535 B
Bash
Raw Normal View History

2020-05-22 12:14:38 +00:00
#!/bin/bash -e
2021-08-28 06:10:48 +00:00
HWLOC_VERSION="2.5.0"
2020-05-22 12:14:38 +00:00
mkdir -p deps
mkdir -p deps/include
mkdir -p deps/lib
mkdir -p build && cd build
2021-08-28 06:10:48 +00:00
wget https://download.open-mpi.org/release/hwloc/v2.5/hwloc-${HWLOC_VERSION}.tar.gz -O hwloc-${HWLOC_VERSION}.tar.gz
tar -xzf hwloc-${HWLOC_VERSION}.tar.gz
2020-05-22 12:14:38 +00:00
cd hwloc-${HWLOC_VERSION}
./configure --disable-shared --enable-static --disable-io --disable-libudev --disable-libxml2
make -j$(nproc || sysctl -n hw.ncpu || sysctl -n hw.logicalcpu)
cp -fr include ../../deps
2020-05-22 12:14:38 +00:00
cp hwloc/.libs/libhwloc.a ../../deps/lib
cd ..