Skip to content

Commit d0ce630

Browse files
committed
2 parents f11185c + 528966a commit d0ce630

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ifeq ($(CXX),)
1818
endif
1919

2020
UNAME := $(shell uname)
21-
LIBS = -l boost_program_options -l boost_iostreams -l pthread -l z
21+
LIBS = -l boost_program_options -l pthread -l z
2222
BOOST_INCLUDE = -I /usr/include
2323
BOOST_LIBRARY = -L /usr/local/lib -L /usr/lib
2424
NPROCS := 1
@@ -28,17 +28,17 @@ ifeq ($(UNAME), Linux)
2828
NPROCS:=$(shell grep -c ^processor /proc/cpuinfo)
2929
endif
3030
ifeq ($(UNAME), FreeBSD)
31-
LIBS = -l boost_program_options -l boost_iostreams -l pthread -l z -l compat
31+
LIBS = -l boost_program_options -l pthread -l z -l compat
3232
BOOST_INCLUDE = -I /usr/local/include
3333
NPROCS:=$(shell grep -c ^processor /proc/cpuinfo)
3434
endif
3535
ifeq "CYGWIN" "$(findstring CYGWIN,$(UNAME))"
36-
LIBS = -l boost_program_options-mt -l boost_iostreams_mt -l pthread -l z
36+
LIBS = -l boost_program_options-mt -l pthread -l z
3737
BOOST_INCLUDE = -I /usr/include
3838
NPROCS:=$(shell grep -c ^processor /proc/cpuinfo)
3939
endif
4040
ifeq ($(UNAME), Darwin)
41-
LIBS = -lboost_program_options-mt -lboost_serialization-mt -lboost_iostreams-mt -l pthread -l z
41+
LIBS = -lboost_program_options-mt -lboost_serialization-mt -l pthread -l z
4242
# On Macs, the location isn't always clear
4343
# brew uses /usr/local
4444
# but /opt/local seems to be preferred by some users

0 commit comments

Comments
 (0)