[source] target.mk: check that CPU_TYPE has known CPU_CFLAGS mapping

LEDE Commits lede-commits at lists.infradead.org
Thu Dec 14 09:43:52 PST 2017


jow pushed a commit to source.git, branch lede-17.01:
https://git.lede-project.org/c8a0f3aa290c7f64dbfe5337537defe660952c0c

commit c8a0f3aa290c7f64dbfe5337537defe660952c0c
Author: Philip Prindeville <philipp at redfish-solutions.com>
AuthorDate: Tue Jan 3 18:15:15 2017 -0700

    target.mk: check that CPU_TYPE has known CPU_CFLAGS mapping
    
    If someone creates a target and indicates a CPU_TYPE, but there's
    no corresponding support for that CPU_TYPE's flags in include/target.mk
    then that should probably be indicated rather than silently ignored.
    
    Signed-off-by: Philip Prindeville <philipp at redfish-solutions.com>
    (cherry picked from commit d3bc11857af788e185e8a3ece26ce40757cf3965)
---
 include/target.mk | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/include/target.mk b/include/target.mk
index 3099448..169ce62 100644
--- a/include/target.mk
+++ b/include/target.mk
@@ -218,6 +218,11 @@ ifeq ($(DUMP),1)
     CPU_CFLAGS_arc700 = -marc700
     CPU_CFLAGS_archs = -marchs
   endif
+  ifneq ($(CPU_TYPE),)
+    ifndef CPU_CFLAGS_$(CPU_TYPE)
+      $(warning CPU_TYPE "$(CPU_TYPE)" doesn't correspond to a known type)
+    endif
+  endif
   DEFAULT_CFLAGS=$(strip $(CPU_CFLAGS) $(CPU_CFLAGS_$(CPU_TYPE)) $(CPU_CFLAGS_$(CPU_SUBTYPE)))
 
   ifneq ($(BOARD),)



More information about the lede-commits mailing list