mirror of
https://github.com/corda/corda.git
synced 2025-05-09 12:02:56 +00:00
Merge pull request #286 from joshuawarner32/allow-stress-builds
allow stress and stress-major as valid mode= settings in the makefile
This commit is contained in:
commit
97e2ef809c
8
makefile
8
makefile
@ -54,8 +54,8 @@ ifeq ($(codegen-targets),all)
|
|||||||
options := $(options)-all
|
options := $(options)-all
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(filter debug debug-fast fast small,$(mode)),)
|
ifeq ($(filter debug debug-fast fast stress stress-major small,$(mode)),)
|
||||||
x := $(error "'$(mode)' is not a valid mode (choose one of: debug debug-fast fast small)")
|
x := $(error "'$(mode)' is not a valid mode (choose one of: debug debug-fast fast stress stress-major small)")
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(filter compile interpret,$(process)),)
|
ifeq ($(filter compile interpret,$(process)),)
|
||||||
@ -932,7 +932,7 @@ ifeq ($(platform),wp8)
|
|||||||
ifeq ($(mode),debug-fast)
|
ifeq ($(mode),debug-fast)
|
||||||
build-type = Debug
|
build-type = Debug
|
||||||
endif
|
endif
|
||||||
ifeq ($(mode),stress_major)
|
ifeq ($(mode),stress-major)
|
||||||
build-type = Release
|
build-type = Release
|
||||||
endif
|
endif
|
||||||
ifeq ($(mode),fast)
|
ifeq ($(mode),fast)
|
||||||
@ -987,7 +987,7 @@ ifeq ($(platform),wp8)
|
|||||||
cflags += -DNDEBUG
|
cflags += -DNDEBUG
|
||||||
lflags +=
|
lflags +=
|
||||||
endif
|
endif
|
||||||
ifeq ($(mode),stress_major)
|
ifeq ($(mode),stress-major)
|
||||||
cflags +=
|
cflags +=
|
||||||
lflags +=
|
lflags +=
|
||||||
endif
|
endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user