We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c82f662 commit 1a67195Copy full SHA for 1a67195
Makefile
@@ -45,8 +45,10 @@ ZLIB_DIR=$(THIRDPARTY_DIR)zlib-$(ZLIB_VER)
45
# Boost iostreams detection
46
# Used for reading lexicographic permutation of the reads.
47
#
48
+ifeq ($(origin HAS_BOOST_IOSTREAMS), undefined)
49
HAS_BOOST_IOSTREAMS_MT:=/$(shell echo "void main() {}" | $(CC) -x c -o /dev/null - -lboost_iostreams-mt 2> /dev/null && echo yes || echo no)/
50
HAS_BOOST_IOSTREAMS:=/$(shell echo "void main() {}" | $(CC) -x c -o /dev/null - -lboost_iostreams 2> /dev/null && echo yes || echo no)/
51
+endif
52
#####################
53
54
DEFINES = -DBUFFERED_FILE_BUFFERSIZE=${BUFFERED_FILE_BUFFERSIZE} -DIM_BUFFERSIZE=${IM_BUFFERSIZE}
0 commit comments