mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 14:32:22 -04:00
default to release in dev mode as well
This commit is contained in:
parent
f904f30bb2
commit
f343197385
2 changed files with 1 additions and 12 deletions
2
Makefile
2
Makefile
|
@ -34,7 +34,7 @@ SUBMAKE := $(MAKE) --print-directory
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
|
|
||||||
BUILDFLAGS := --release --strip
|
BUILDFLAGS := --release --strip
|
||||||
DEVFLAGS :=
|
DEVFLAGS := $(BUILDFLAGS)
|
||||||
RUNFLAGS :=
|
RUNFLAGS :=
|
||||||
CHECKABLE_PY := pylib qt
|
CHECKABLE_PY := pylib qt
|
||||||
CHECKABLE_RS := rslib
|
CHECKABLE_RS := rslib
|
||||||
|
|
|
@ -61,17 +61,6 @@ folder.
|
||||||
|
|
||||||
Use 'make clean' to remove some generated files.
|
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
|
PyQt
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue