Skip to content

Instantly share code, notes, and snippets.

@lijiext
Created April 22, 2024 13:38
Show Gist options
  • Save lijiext/65c461260d611f7ef87e48badc256f2f to your computer and use it in GitHub Desktop.
Save lijiext/65c461260d611f7ef87e48badc256f2f to your computer and use it in GitHub Desktop.
lapack编译
tar -xvf lapack-3.12.0.tar.gz
cd lapack-3.12.0
mkdir build && build
cmake -DCMAKE_INSTALL_PREFIX=./dist \
-DCBLAS=ON \
-DLAPACKE=ON \
-DCMAKE_BUILD_TYPE=RELEASE \
-DBUILD_SHARED_LIBS=ON \
../
make -j $(nproc)
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment