forked from Zilliqa/Zilliqa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build_lookup.sh
executable file
·27 lines (24 loc) · 1.4 KB
/
build_lookup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Copyright (c) 2018 Zilliqa
# This source code is being disclosed to you solely for the purpose of your participation in
# testing Zilliqa. You may view, compile and run the code for that purpose and pursuant to
# the protocols and algorithms that are programmed into, and intended by, the code. You may
# not do anything else with the code without express permission from Zilliqa Research Pte. Ltd.,
# including modifying or publishing the code (or any part of it), and developing or forming
# another public or private blockchain network. This source code is provided ‘as is’ and no
# warranties are given as to title or non-infringement, merchantability or fitness for purpose
# and, to the extent permitted by law, all liability for your use of the code is disclaimed.
# Some programs in this code are governed by the GNU General Public License v3.0 (available at
# https://www.gnu.org/licenses/gpl-3.0.en.html) (‘GPLv3’). The programs that are governed by
# GPLv3.0 are those programs that are located in the folders src/depends and tests/depends
# and which include a reference to GPLv3 in their program files.
rm -rf ./blocks
rm -rf ./blocks.db
rm -rf ./dsblocks.db
rm -rf ./txblocks.db
rm -rf ./test.db
rm -rf ./txbodies.db
find . -name *.cmake | xargs rm -rf
find . -name CMakeCache.txt | xargs rm -rf
find . -name CMakeFiles | xargs rm -rf
cmake -DIS_LOOKUP_NODE=1 -DCMAKE_BUILD_TYPE=Debug .
make -j4