diff options
| author | David Lechner | 2019-12-21 14:22:26 -0600 |
|---|---|---|
| committer | Damien George | 2019-12-27 23:53:16 +1100 |
| commit | e79424d672919bfc59862d14f2d9e78e43e8582e (patch) | |
| tree | 8be4a5782054d0bf3f8ab40378237cdd47a8fcea /ports/minimal | |
| parent | d56bc6e03d842b1a2c91c987ba936752d0c2fe1b (diff) | |
ports: Allow overriding CROSS_COMPILE in a custom makefile.
Many ports already allow overriding CROSS_COMPILE. This modifies the
remaining ports to allow it as well.
Diffstat (limited to 'ports/minimal')
| -rw-r--r-- | ports/minimal/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/minimal/Makefile b/ports/minimal/Makefile index f26a7ec97..d8afa068d 100644 --- a/ports/minimal/Makefile +++ b/ports/minimal/Makefile @@ -9,7 +9,7 @@ QSTR_DEFS = qstrdefsport.h include $(TOP)/py/py.mk ifeq ($(CROSS), 1) -CROSS_COMPILE = arm-none-eabi- +CROSS_COMPILE ?= arm-none-eabi- endif INC += -I. |
