Revert scaninput optimizations for compatibility reasons.
[novacoin.git] / src / makefile.unix
1 # Copyright (c) 2009-2010 Satoshi Nakamoto
2 # Distributed under the MIT/X11 software license, see the accompanying
3 # file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5 USE_LEVELDB:=0
6 USE_IPV6:=1
7
8 LINK:=$(CXX)
9 ARCH:=$(shell uname -m)
10
11 DEFS=-DBOOST_SPIRIT_THREADSAFE -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS
12
13 DEFS += $(addprefix -I,$(CURDIR) $(CURDIR)/obj $(BOOST_INCLUDE_PATH) $(BDB_INCLUDE_PATH) $(OPENSSL_INCLUDE_PATH))
14 LIBS = $(addprefix -L,$(BOOST_LIB_PATH) $(BDB_LIB_PATH) $(OPENSSL_LIB_PATH))
15
16 LMODE = dynamic
17 LMODE2 = dynamic
18 ifdef STATIC
19         LMODE = static
20         ifeq (${STATIC}, all)
21                 LMODE2 = static
22         endif
23 endif
24
25 # for boost 1.37, add -mt to the boost libraries
26 LIBS += \
27  -Wl,-B$(LMODE) \
28    -l boost_system$(BOOST_LIB_SUFFIX) \
29    -l boost_filesystem$(BOOST_LIB_SUFFIX) \
30    -l boost_program_options$(BOOST_LIB_SUFFIX) \
31    -l boost_thread$(BOOST_LIB_SUFFIX) \
32    -l db_cxx$(BDB_LIB_SUFFIX) \
33    -l ssl \
34    -l crypto
35
36 ifneq (${USE_IPV6}, -)
37         DEFS += -DUSE_IPV6=$(USE_IPV6)
38 endif
39
40 LIBS+= \
41  -Wl,-B$(LMODE2) \
42    -l z \
43    -l dl \
44    -l pthread
45
46
47 # Hardening
48 # Make some classes of vulnerabilities unexploitable in case one is discovered.
49 #
50     # This is a workaround for Ubuntu bug #691722, the default -fstack-protector causes
51     # -fstack-protector-all to be ignored unless -fno-stack-protector is used first.
52     # see: https://bugs.launchpad.net/ubuntu/+source/gcc-4.5/+bug/691722
53     HARDENING=-fno-stack-protector
54
55     # Stack Canaries
56     # Put numbers at the beginning of each stack frame and check that they are the same.
57     # If a stack buffer if overflowed, it writes over the canary number and then on return
58     # when that number is checked, it won't be the same and the program will exit with
59     # a "Stack smashing detected" error instead of being exploited.
60     HARDENING+=-fstack-protector-all -Wstack-protector
61
62     # Make some important things such as the global offset table read only as soon as
63     # the dynamic linker is finished building it. This will prevent overwriting of addresses
64     # which would later be jumped to.
65     LDHARDENING+=-Wl,-z,relro -Wl,-z,now
66
67     # Build position independent code to take advantage of Address Space Layout Randomization
68     # offered by some kernels.
69     # see doc/build-unix.txt for more information.
70     ifdef PIE
71         HARDENING+=-fPIE
72         LDHARDENING+=-pie
73     endif
74
75     # -D_FORTIFY_SOURCE=2 does some checking for potentially exploitable code patterns in
76     # the source such overflowing a statically defined buffer.
77     HARDENING+=-D_FORTIFY_SOURCE=2
78 #
79
80
81 DEBUGFLAGS=-g
82
83
84 ifeq (${ARCH}, i686)
85     EXT_OPTIONS=-msse2 -mssse3
86 endif
87
88 ifeq (${ARCH}, x86_64)
89     EXT_OPTIONS=-mssse3
90 endif
91
92 xOPT_LEVEL=-O2
93 ifeq (${USE_O3}, 1)
94     xOPT_LEVEL=-O3
95 endif
96
97 # CXXFLAGS can be specified on the make command line, so we use xCXXFLAGS that only
98 # adds some defaults in front. Unfortunately, CXXFLAGS=... $(CXXFLAGS) does not work.
99 xCXXFLAGS=$(xOPT_LEVEL) $(EXT_OPTIONS) -pthread -Wall -Wextra -Wno-ignored-qualifiers -Wformat -Wformat-security -Wno-unused-parameter \
100     $(DEBUGFLAGS) $(DEFS) $(HARDENING) $(CXXFLAGS)
101
102 # LDFLAGS can be specified on the make command line, so we use xLDFLAGS that only
103 # adds some defaults in front. Unfortunately, LDFLAGS=... $(LDFLAGS) does not work.
104 xLDFLAGS=$(LDHARDENING) $(LDFLAGS)
105
106 OBJS= \
107     obj/alert.o \
108     obj/version.o \
109     obj/checkpoints.o \
110     obj/netbase.o \
111     obj/addrman.o \
112     obj/crypter.o \
113     obj/base58.o \
114     obj/key.o \
115     obj/db.o \
116     obj/init.o \
117     obj/irc.o \
118     obj/keystore.o \
119     obj/miner.o \
120     obj/main.o \
121     obj/net.o \
122     obj/ntp.o \
123     obj/stun.o \
124     obj/protocol.o \
125     obj/bitcoinrpc.o \
126     obj/rpcdump.o \
127     obj/rpcnet.o \
128     obj/rpcmining.o \
129     obj/rpcwallet.o \
130     obj/rpcblockchain.o \
131     obj/rpcrawtransaction.o \
132     obj/script.o \
133     obj/sync.o \
134     obj/util.o \
135     obj/wallet.o \
136     obj/walletdb.o \
137     obj/noui.o \
138     obj/kernel.o \
139     obj/kernel_worker.o
140
141 all: novacoind
142
143 #
144 # LevelDB support
145 #
146 ifeq (${USE_LEVELDB}, 1)
147 LIBS += $(CURDIR)/leveldb/libleveldb.a $(CURDIR)/leveldb/libmemenv.a
148 DEFS += $(addprefix -I,$(CURDIR)/leveldb/include) -DUSE_LEVELDB
149 DEFS += $(addprefix -I,$(CURDIR)/leveldb/helpers)
150 OBJS += obj/txdb-leveldb.o
151 leveldb/libleveldb.a:
152         @echo "Building LevelDB ..."; cd leveldb; make libleveldb.a libmemenv.a; cd ..;
153 obj/txdb-leveldb.o: leveldb/libleveldb.a
154 endif
155 ifneq (${USE_LEVELDB}, 1)
156 OBJS += obj/txdb-bdb.o
157 endif
158
159 ifeq (${USE_ASM}, 1)
160 # Assembler implementation
161 OBJS += crypto/scrypt/asm/obj/scrypt-arm.o crypto/scrypt/asm/obj/scrypt-x86.o crypto/scrypt/asm/obj/scrypt-x86_64.o crypto/scrypt/asm/obj/asm-wrapper.o
162
163 crypto/scrypt/asm/obj/scrypt-x86.o: crypto/scrypt/asm/scrypt-x86.S
164         $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $<
165
166 crypto/scrypt/asm/obj/scrypt-x86_64.o: crypto/scrypt/asm/scrypt-x86_64.S
167         $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $<
168
169 crypto/scrypt/asm/obj/scrypt-arm.o: crypto/scrypt/asm/scrypt-arm.S
170         $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $<
171
172 crypto/scrypt/asm/obj/asm-wrapper.o: crypto/scrypt/asm/asm-wrapper.cpp
173         $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $<
174
175 DEFS += -DUSE_ASM
176
177 else
178 ifeq  (${USE_SSE2}, 1)
179 # Intrinsic implementation
180 DEFS += -DUSE_SSE2
181 OBJS += crypto/scrypt/intrin/obj/scrypt-sse2.o
182
183 crypto/scrypt/intrin/obj/scrypt-sse2.o: crypto/scrypt/intrin/scrypt-sse2.cpp
184         $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $<
185 else
186 # Generic implementation
187 OBJS += crypto/scrypt/generic/obj/scrypt-generic.o
188
189 crypto/scrypt/generic/obj/scrypt-generic.o: crypto/scrypt/generic/scrypt-generic.cpp
190         $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $<
191 endif
192 endif
193
194
195 # auto-generated dependencies:
196 -include obj/*.P
197
198 obj/build.h: FORCE
199         /bin/sh ../share/genbuild.sh obj/build.h
200 version.cpp: obj/build.h
201 DEFS += -DHAVE_BUILD_INFO
202
203
204 obj/%.o: %.cpp
205         $(CXX) -c $(xCXXFLAGS) -MMD -MF $(@:%.o=%.d) -o $@ $<
206         @cp $(@:%.o=%.d) $(@:%.o=%.P); \
207           sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
208               -e '/^$$/ d' -e 's/$$/ :/' < $(@:%.o=%.d) >> $(@:%.o=%.P); \
209           rm -f $(@:%.o=%.d)
210
211 novacoind: $(OBJS:obj/%=obj/%)
212         $(LINK) $(xCXXFLAGS) -o $@ $^ $(xLDFLAGS) $(LIBS)
213
214 clean:
215         -rm -f novacoind
216         -rm -f obj/*.o
217         -rm -f obj/*.P
218         -rm -f obj/*.d
219         -rm -f crypto/scrypt/asm/obj/*.o
220         -rm -f crypto/scrypt/asm/obj/*.P
221         -rm -f crypto/scrypt/asm/obj/*.d
222         -rm -f crypto/scrypt/intrin/obj/*.o
223         -rm -f crypto/scrypt/intrin/obj/*.P
224         -rm -f crypto/scrypt/intrin/obj/*.d
225         -rm -f crypto/scrypt/generic/obj/*.o
226         -rm -f crypto/scrypt/generic/obj/*.P
227         -rm -f crypto/scrypt/generic/obj/*.d
228         -rm -f obj/build.h
229
230 FORCE: