equal
deleted
inserted
replaced
71 # or 'vfork'": this warning indicates that some variable is placed to |
71 # or 'vfork'": this warning indicates that some variable is placed to |
72 # a register by optimized compiler and it's value might be lost on longjmp(). |
72 # a register by optimized compiler and it's value might be lost on longjmp(). |
73 # Recommended way to avoid such warning is to declare the variable as |
73 # Recommended way to avoid such warning is to declare the variable as |
74 # volatile to prevent the optimization. However, this approach does not |
74 # volatile to prevent the optimization. However, this approach does not |
75 # work because we have to declare all variables as volatile in result. |
75 # work because we have to declare all variables as volatile in result. |
76 |
76 ifndef CROSS_COMPILE_ARCH |
77 OTHER_CFLAGS += -Wno-clobbered |
77 OTHER_CFLAGS += -Wno-clobbered |
|
78 endif |
78 endif |
79 endif |
79 |
80 |
80 include $(BUILDDIR)/common/Mapfile-vers.gmk |
81 include $(BUILDDIR)/common/Mapfile-vers.gmk |
81 include $(BUILDDIR)/common/Library.gmk |
82 include $(BUILDDIR)/common/Library.gmk |
82 |
83 |