1
0
Fork 0

added JEMALLOC, corrected wording

This commit is contained in:
jsteemann 2016-06-09 23:32:21 +02:00
parent 78fb88a38b
commit 14dfdd24e6
1 changed files with 6 additions and 2 deletions

View File

@ -9,9 +9,9 @@ SRC=$(shell pwd |sed "s;.*/;;")
.PHONY: warning help .PHONY: warning help
warning: warning:
@echo "ArangoDB has switch to CMAKE. In order to compile, use:" @echo "ArangoDB has switched to CMAKE. In order to compile, use:"
@echo "" @echo ""
@echo " mkdir build" @echo " mkdir -p build"
@echo " cd build" @echo " cd build"
@echo " cmake .. -DCMAKE_BUILD_TYPE=Release" @echo " cmake .. -DCMAKE_BUILD_TYPE=Release"
@echo " make" @echo " make"
@ -54,6 +54,10 @@ help:
@echo " -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl" @echo " -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl"
@echo " sets the location of the openssl includes and libraries" @echo " sets the location of the openssl includes and libraries"
@echo "" @echo ""
@echo "JEMALLOC supports:"
@echo " -DUSE_JEMALLOC=on"
@echo " if ON, link against JEMALLOC"
@echo ""
@echo "TCMALLOC supports:" @echo "TCMALLOC supports:"
@echo " -DUSE_TCMALLOC=on" @echo " -DUSE_TCMALLOC=on"
@echo " if ON, link against TCMALLOC" @echo " if ON, link against TCMALLOC"