Skip to content

Commit

Permalink
Release V3
Browse files Browse the repository at this point in the history
  • Loading branch information
sajjadrahnama authored Sep 30, 2021
2 parents babcdfa + e2efff9 commit c4ab335
Show file tree
Hide file tree
Showing 67 changed files with 2,498 additions and 1,331 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@ scripts/rundb
hostnames.py
docker-compose.yml
res.out
.DS_Store
.DS_Store
exp/
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
CC=g++
CFLAGS=-Wall -g -gdwarf-3 -std=c++0x -rdynamic #
CFLAGS=-Wall -g -gdwarf-3 -std=c++11 -rdynamic #
JEMALLOC=deps/jemalloc-5.1.0
NNMSG=deps/nng-1.3.2
BOOST=deps/boost_1_67_0
Expand All @@ -9,7 +9,7 @@ SQLITE=deps/sqlite-autoconf-3290000/build
.SUFFIXES: .o .cpp .h

SRC_DIRS = ./ ./benchmarks/ ./client/ ./transport/ ./system/ ./statistics/ ./blockchain/ ./db/ ./smart_contracts/ ./data_structures
DEPS = -I. -I./benchmarks -I./client/ -I./transport -I./system -I./statistics -I./blockchain -I./smart_contracts -I./data_structures -I$(JEMALLOC)/include -I$(NNMSG)/include -I$(BOOST) -I$(CRYPTOPP) -I./db -I$(SQLITE)/include
DEPS = -I. -I./benchmarks -I./client/ -I./transport -I./system -I./statistics -I./blockchain -I./smart_contracts -I./data_structures -I$(JEMALLOC)/include -I$(NNMSG)/include -I$(BOOST) -I$(CRYPTOPP) -I./db -I$(SQLITE)/include

CFLAGS += $(DEPS) -D NOGRAPHITE=1 -Werror -Wno-sizeof-pointer-memaccess
LDFLAGS = -Wall -L. -L$(NNMSG)/lib -L$(JEMALLOC)/lib -Wl,-rpath,$(JEMALLOC)/lib -pthread -gdwarf-3 -lrt -std=c++0x -L$(CRYPTOPP) -L$(SQLITE)/lib
Expand Down
1 change: 0 additions & 1 deletion benchmarks/ycsb.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
#include "wl.h"
#include "txn.h"
#include "global.h"
#include "helper.h"

#if !BANKING_SMART_CONTRACT
class YCSBQuery;
Expand Down
1 change: 0 additions & 1 deletion benchmarks/ycsb_query.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
#include "mem_alloc.h"
//#include "wl.h"
#include "ycsb.h"
#include "helper.h"
#include "message.h"

uint64_t YCSBQueryGenerator::the_n = 0;
Expand Down
1 change: 0 additions & 1 deletion benchmarks/ycsb_query.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
#define _YCSBQuery_H_

#include "global.h"
#include "helper.h"
#include "query.h"
#include "array.h"

Expand Down
1 change: 0 additions & 1 deletion benchmarks/ycsb_txn.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#include "global.h"
#include "helper.h"
#include "ycsb.h"
#include "ycsb_query.h"
#include "wl.h"
Expand Down
1 change: 0 additions & 1 deletion benchmarks/ycsb_wl.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#include "global.h"
#include "helper.h"
#include "ycsb.h"
#include "wl.h"
#include "thread.h"
Expand Down
1 change: 0 additions & 1 deletion client/client_query.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
#define _CLIENT_QUERY_H_

#include "global.h"
#include "helper.h"
#include "query.h"

//class Workload;
Expand Down
Loading

0 comments on commit c4ab335

Please sign in to comment.