1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-16 02:10:55 +00:00

build(core): use PYOPT=0 for build_unix target

restoring behavior before #4234
This commit is contained in:
matejcik 2024-11-25 15:00:26 +01:00 committed by matejcik
parent cba7ed517f
commit 44bd407c85

View File

@ -306,7 +306,7 @@ build_firmware: templates build_cross build_kernel ## build firmware with frozen
$(SCONS) $(FIRMWARE_BUILD_DIR)/firmware.bin
build_unix: templates ## build unix port
$(SCONS) $(UNIX_BUILD_DIR)/trezor-emu-core $(UNIX_PORT_OPTS)
$(SCONS) PYOPT=0 $(UNIX_BUILD_DIR)/trezor-emu-core $(UNIX_PORT_OPTS)
build_unix_frozen: templates build_cross ## build unix port with frozen modules
$(SCONS) $(UNIX_BUILD_DIR)/trezor-emu-core $(UNIX_PORT_OPTS) TREZOR_EMULATOR_FROZEN=1