From f34319738568084b96e2ee923f2237eefe1fa78d Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Fri, 6 Mar 2020 13:29:23 +1000 Subject: [PATCH] default to release in dev mode as well --- Makefile | 2 +- README.development | 11 ----------- 2 files changed, 1 insertion(+), 12 deletions(-) diff --git a/Makefile b/Makefile index fb6ace212..4c1d03087 100644 --- a/Makefile +++ b/Makefile @@ -34,7 +34,7 @@ SUBMAKE := $(MAKE) --print-directory .SUFFIXES: BUILDFLAGS := --release --strip -DEVFLAGS := +DEVFLAGS := $(BUILDFLAGS) RUNFLAGS := CHECKABLE_PY := pylib qt CHECKABLE_RS := rslib diff --git a/README.development b/README.development index da92684af..48854e542 100644 --- a/README.development +++ b/README.development @@ -61,17 +61,6 @@ folder. Use 'make clean' to remove some generated files. -Performance ------------- - -'make run' builds the Rust libraries in unoptimized debug mode by default. -Before doing any performance testing, please make sure you make a release -build with 'make build' and install the resulting .whl files, or use -make run with the following command: - -touch rspy/src/lib.rs -make run DEVFLAGS="--release --strip" - PyQt -----