mirror of
https://github.com/xmrig/xmrig.git
synced 2024-11-16 15:57:38 +00:00
19 lines
No EOL
536 B
Bash
Executable file
19 lines
No EOL
536 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
HWLOC_VERSION="1.11.13"
|
|
|
|
mkdir -p deps
|
|
mkdir -p deps/include
|
|
mkdir -p deps/lib
|
|
|
|
mkdir -p build && cd build
|
|
|
|
wget https://download.open-mpi.org/release/hwloc/v1.11/hwloc-${HWLOC_VERSION}.tar.gz -O hwloc-${HWLOC_VERSION}.tar.gz
|
|
tar -xzf hwloc-${HWLOC_VERSION}.tar.gz
|
|
|
|
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
|
|
cp src/.libs/libhwloc.a ../../deps/lib
|
|
cd .. |