W-M-R commented on code in PR #15258: URL: https://github.com/apache/nuttx/pull/15258#discussion_r1890245941
########## libs/libbuiltin/libgcc/Make.defs: ########## @@ -24,6 +24,12 @@ endif ifeq ($(CONFIG_COVERAGE_MINI)$(CONFIG_ARCH_TOOLCHAIN_GCC),yy) CSRCS += gcov.c + +GCOV_CFLAGS += -fno-profile-arcs -fno-test-coverage + +bin/gcov.o: CFLAGS += $(GCOV_CFLAGS) Review Comment: Adding CFLAGS to gcov.c is bin/gcov.o: CFLAGS += xxx? bin/gcov.o_CFLAGS += (GCOV_CFLAGS) will not take effect -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
