Skip to content

Commit

Permalink
more changes
Browse files Browse the repository at this point in the history
  • Loading branch information
FriederikeHanssen committed Oct 31, 2024
1 parent 793a67c commit 7f27cd4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
8 changes: 7 additions & 1 deletion recipes/bwa-mem2/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,13 @@ if [[ $OSTYPE == "darwin"* ]]; then
sed -i.bak 's/memset_s/memset8_s/g' ext/safestringlib/safeclib/memset_s.c
sed -i.bak 's/memset_s/memset8_s/g' ext/safestringlib/safeclib/wmemset_s.c
fi
LIBS="${LDFLAGS}" make CC="${CC}" CXX="${CXX}" multi

case ${ARCH} in
x86_64) LIBS=“${LDFLAGS}” make CC=“${CC}” CXX=“${CXX}” multi ;;
aarch64) LIBS=“${LDFLAGS}” make CC=“${CC}” CXX=“${CXX}” arch=armv8.1-a ;;
esac

mkdir -p $PREFIX/bin
cp bwa-mem2* $PREFIX/bin


10 changes: 5 additions & 5 deletions recipes/bwa-mem2/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ requirements:
test:
commands:
- bwa-mem2 version
- bwa-mem2.sse41 version
- bwa-mem2.sse42 version
- bwa-mem2.avx version
- bwa-mem2.avx2 version
- bwa-mem2.avx512bw version
- bwa-mem2.sse41 version # [not aarch64]
- bwa-mem2.sse42 version # [not aarch64]
- bwa-mem2.avx version # [not aarch64]
- bwa-mem2.avx2 version # [not aarch64]
- bwa-mem2.avx512bw version # [not aarch64]

about:
home: https://github.com/bwa-mem2/bwa-mem2
Expand Down

0 comments on commit 7f27cd4

Please sign in to comment.