[v0.23] Fix FreeBSD compilation issues as reported by #13
This commit is contained in:
11
build.sh
11
build.sh
@@ -1,4 +1,4 @@
|
||||
#!/bin/bash
|
||||
#!/bin/sh
|
||||
|
||||
# gpufetch build script
|
||||
set -e
|
||||
@@ -27,6 +27,13 @@ fi
|
||||
# cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DENABLE_INTEL_BACKEND=OFF ..
|
||||
|
||||
cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE ..
|
||||
make -j$(nproc)
|
||||
|
||||
os=$(uname)
|
||||
if [ "$os" == 'Linux' ]; then
|
||||
make -j$(nproc)
|
||||
elif [ "$os" == 'FreeBSD' ]; then
|
||||
gmake -j4
|
||||
fi
|
||||
|
||||
cd -
|
||||
ln -s build/gpufetch .
|
||||
|
||||
Reference in New Issue
Block a user