File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 11#! /bin/sh
22set -eu
3- cmake -B build -DCMAKE_INSTALL_PREFIX=" ${PREFIX:- $PWD } "
3+ prefix=${PREFIX:- $PWD }
4+ cmake -B build -DCMAKE_INSTALL_PREFIX=" $prefix "
45cmake --build build --config Release
56cmake --install build --config Release
67(test -d lib64 && ln -f -s lib64 lib) || true
Original file line number Diff line number Diff line change 11#! /bin/sh
22set -eu
3- meson setup build --prefix=" ${PREFIX:- $PWD } "
3+ prefix=${PREFIX:- $PWD }
4+ meson setup build --prefix=" $prefix " --buildtype=release
45meson compile -C build
56meson install -C build
67(test -d lib64 && ln -f -s lib64 lib) || true
Original file line number Diff line number Diff line change 11project (
22 ' mpi-stubs' ,
33 ' c' ,
4- version : ' 4.2 ' ,
4+ version : ' 5.0 ' ,
55 license : ' MIT' ,
66 meson_version : ' >=1.0.0' ,
77)
You can’t perform that action at this time.
0 commit comments