2023-05-03 19:44:32 +00:00
|
|
|
#!/bin/bash
|
2023-04-19 19:36:32 +00:00
|
|
|
#
|
2024-03-29 11:34:24 +00:00
|
|
|
arch=mingw64
|
|
|
|
# DLL's that are required by lasp_cpp
|
2023-05-03 19:44:32 +00:00
|
|
|
files_to_cpy="libfftw3-3.dll libgcc_s_seh-1.dll libgfortran-5.dll libgomp-1.dll libopenblas.dll libquadmath-0.dll libstdc++-6.dll libwinpthread-1.dll"
|
|
|
|
|
|
|
|
for fn in ${files_to_cpy}; do
|
2024-03-29 11:34:24 +00:00
|
|
|
cp /c/msys64/${arch}/bin/${fn} python_src/lasp
|
2023-05-03 19:44:32 +00:00
|
|
|
done
|