diff options
| author | Dan Halbert <halbert@halwitz.org> | 2019-05-24 15:32:24 -0400 |
|---|---|---|
| committer | Dan Halbert <halbert@halwitz.org> | 2019-05-24 15:32:24 -0400 |
| commit | 4e85c1ef91683929df0afe105e92ce6e4291b445 (patch) | |
| tree | 23a62c425622c0f64d99ff0caff88f20b7461c86 /py | |
| parent | e84f3b1c6a4a4fde58842d85d002b8964a4e74ad (diff) | |
Implement forced clean builds for boards so designated.
Mark boards that set CFLAGS_INLINE_LIMIT for particular langauges as needing clean builds.
Fixes #1910.
Diffstat (limited to 'py')
| -rw-r--r-- | py/circuitpy_defns.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/py/circuitpy_defns.mk b/py/circuitpy_defns.mk index 1aca33901..fd8e00354 100644 --- a/py/circuitpy_defns.mk +++ b/py/circuitpy_defns.mk @@ -361,3 +361,8 @@ $(addprefix lib/,\ libm/atan2f.c \ ) endif + +.PHONY: check-release-needs-clean-build + +check-release-needs-clean-build: + @echo "RELEASE_NEEDS_CLEAN_BUILD = $(RELEASE_NEEDS_CLEAN_BUILD)" |
