Don't treat warnings as error when building rocksdbjavastatic

Summary: Don't treat warnings as error when building rocksdbjavastatic

Test Plan: make rocksdbjavastatic -j32

Reviewers: rven, fyrz, adamretter, igor

Reviewed By: igor

Subscribers: dhruba, leveldb

Differential Revision: https://reviews.facebook.net/D38187
This commit is contained in:
Yueh-Hsuan Chiang 2015-05-08 11:02:47 -07:00
parent beda81c538
commit 2fe24e4b5f
1 changed files with 4 additions and 0 deletions

View File

@ -59,6 +59,10 @@ ifeq ($(MAKECMDGOALS),install)
DEBUG_LEVEL=0
endif
ifeq ($(MAKECMDGOALS),rocksdbjavastatic)
DEBUG_LEVEL=0
endif
# compile with -O2 if debug level is not 2
ifneq ($(DEBUG_LEVEL), 2)
OPT += -O2 -fno-omit-frame-pointer