py/mkenv: Allow providing STRIP as an environment variable.

Allows doing "export STRIP=" in a profile or .envrc file, to
not strip binaries by default.

Signed-off-by: Angus Gratton <angus@redyak.com.au>
pull/14196/head
Angus Gratton 2024-02-08 10:38:48 +11:00
rodzic 5114f2c1ea
commit 6175735cda
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -52,7 +52,7 @@ GDB = $(CROSS_COMPILE)gdb
LD = $(CROSS_COMPILE)ld
OBJCOPY = $(CROSS_COMPILE)objcopy
SIZE = $(CROSS_COMPILE)size
STRIP = $(CROSS_COMPILE)strip
STRIP ?= $(CROSS_COMPILE)strip
AR = $(CROSS_COMPILE)ar
WINDRES = $(CROSS_COMPILE)windres