Skip to content
This repository has been archived by the owner on Sep 29, 2022. It is now read-only.

Kkwiek/pyfmi #650

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions lapack/bld.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@

mkdir build
if errorlevel 1 exit 1

cd build
if errorlevel 1 exit 1

cmake -DCMAKE_INSTALL_PREFIX=%PREFIX% -DBUILD_TESTING=OFF -DBUILD_SHARED_LIBS=ON -DLAPACKE=ON -DCMake_GNUtoMS=ON ..
if errorlevel 1 exit 1

make -j2
if errorlevel 1 exit 1

make install
if errorlevel 1 exit 1
4 changes: 2 additions & 2 deletions lapack/build.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
mkdir build
cd build
mkdir build || exit 1;
cd build || exit 1;

cmake \
-DCMAKE_INSTALL_PREFIX=$PREFIX \
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See also gh-658

Expand Down
5 changes: 3 additions & 2 deletions lapack/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,13 @@ source:
sha1: 7e993de16d80d52b22b6093465eeb90c93c7a2e7

build:
number: 1
number: 2

requirements:
build:
- cmake
- gcc
#https://github.com/conda/conda-recipes/issues/510
- gcc [not linux32|win]

run:
- libgcc
Expand Down