-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Rebuild MaSuRCA recipe * masurca: add aarch64 build * revert linux-aarch64
- Loading branch information
Showing
3 changed files
with
37 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
diff --git a/install.sh b/install.sh | ||
index c30290e..0bce5d1 100755 | ||
--- a/install.sh | ||
+++ b/install.sh | ||
@@ -17,7 +17,7 @@ export NUM_THREADS=`grep -c '^processor' /proc/cpuinfo 2>/dev/null || sysctl -n | ||
BINDIR=$DEST/bin | ||
LIBDIR=$DEST/lib | ||
export PKG_CONFIG_PATH=$LIBDIR/pkgconfig:$PKG_CONFIG_PATH | ||
-(cd global-1 && ./configure --prefix=$DEST --bindir=$BINDIR --libdir=$LIBDIR && make -j $NUM_THREADS install-special) | ||
+(cd global-1 && autoreconf -if && ./configure --prefix=$DEST --bindir=$BINDIR --libdir=$LIBDIR && make -j $NUM_THREADS install-special) | ||
echo "creating example config file masurca_config_example.txt" | ||
$BINDIR/masurca -g masurca_config_example.txt | ||
-(cd Flye && make && cp -a ../Flye $DEST); | ||
+(cd Flye && make && cp -arf ../Flye $DEST); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -x -e | ||
BOOST_ROOT=${PREFIX} | ||
export DEST=${PREFIX} | ||
BOOST_ROOT="${PREFIX}" | ||
export DEST="${PREFIX}" | ||
export PERL_EXT_CPPFLAGS="-D_REENTRANT -D_GNU_SOURCE -fwrapv -fno-strict-aliasing -pipe -fstack-protector" | ||
export PERL_EXT_LDFLAGS="-shared -O2 -fstack-protector" | ||
export LDFLAGS="-L${PREFIX}/lib" | ||
export LIBRARY_PATH="$PREFIX/lib" | ||
export CPATH=${PREFIX}/include | ||
export CFLAGS="${CFLAGS} -std=gnu90 ${LDFLAGS}" | ||
export CXXFLAGS="$CXXFLAGS -std=gnu++14 ${LDFLAGS}" | ||
export PERL_EXT_LDFLAGS="-shared -O3 -fstack-protector" | ||
export LDFLAGS="${LDFLAGS} -L${PREFIX}/lib" | ||
export LIBRARY_PATH="${PREFIX}/lib" | ||
export INCLUDE_PATH="${PREFIX}/include" | ||
export CPATH="${PREFIX}/include" | ||
export CFLAGS="${CFLAGS} -O3 -std=gnu90 ${LDFLAGS}" | ||
export CXXFLAGS="${CXXFLAGS} -O3 -std=c++14 -I${PREFIX}/include ${LDFLAGS}" | ||
./install.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters