mirror of
https://github.com/facebook/rocksdb.git
synced 2024-11-25 22:44:05 +00:00
Fix examples/Makefile jemalloc error
Summary: compile and link with jemalloc in examples binaries Test Plan: cd examples make -j64 Reviewers: andrewkr, sdong Reviewed By: sdong Subscribers: andrewkr, dhruba, yoshinorim Differential Revision: https://reviews.facebook.net/D59457
This commit is contained in:
parent
e3b1e3dfa6
commit
886af59105
|
@ -1,5 +1,13 @@
|
||||||
include ../make_config.mk
|
include ../make_config.mk
|
||||||
|
|
||||||
|
ifndef DISABLE_JEMALLOC
|
||||||
|
ifdef JEMALLOC
|
||||||
|
PLATFORM_CXXFLAGS += "-DROCKSDB_JEMALLOC"
|
||||||
|
endif
|
||||||
|
EXEC_LDFLAGS := $(JEMALLOC_LIB) $(EXEC_LDFLAGS) -lpthread
|
||||||
|
PLATFORM_CXXFLAGS += $(JEMALLOC_INCLUDE)
|
||||||
|
endif
|
||||||
|
|
||||||
.PHONY: clean librocksdb
|
.PHONY: clean librocksdb
|
||||||
|
|
||||||
all: simple_example column_families_example compact_files_example c_simple_example optimistic_transaction_example transaction_example
|
all: simple_example column_families_example compact_files_example c_simple_example optimistic_transaction_example transaction_example
|
||||||
|
|
Loading…
Reference in a new issue