<div dir="ltr">OK, problem solved. The issue was that preprocesor directive in c: #elseif doesn't work. I don't know why but I replaced this with #ifdef ... #endif and #ifdef ... #endif instead of using #elseif in the middle and everything works.</div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Aug 21, 2020 at 10:01 AM Tomek The Messenger <<a href="mailto:tomekthemessenger@gmail.com">tomekthemessenger@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">Hi<div>I have problem with passing flag from makefile to .c file.</div><div>During building external kernel module my macro isn't seen by compiler. I used plenty of ways.</div><div><br></div><div>First way:</div><div>ccflags-y += -DMY_FLAG<br></div><div>$(MAKE) -C $(KERNEL_SRC) M=$(SRC)<br></div><div>Second:</div><div>$(MAKE) -C $(KERNEL_SRC) M=$(SRC) CFLAGS_my-kernel-module.o="-DMY_FLAG"<br></div><div>Third:</div><div>$(MAKE) -C $(KERNEL_SRC) M=$(SRC) CFLAGS="-DMY_FLAG"  <br></div><div>Forth:</div><div> $(MAKE) -C $(KERNEL_SRC) M=$(SRC) ccflags-y="-DMY_FLAG"   </div><div><br></div><div>In general I use bitbake to build external kernel modules.  And I wonder if bitbake doesn't introduce issue as some of above solution really should work. And additionally I had to use absolute paths in headers because relative didn't work so -I append also doesn't work:<br></div><div>SRC := $(shell pwd)<br></div><div>ccflags-y := -I$(SRC)<br></div><div><br></div><div>BR</div><div>Tomek</div><div><br></div></div>
</blockquote></div>