arch/sim: Link to libgcov.a when CONFIG_ARCH_COVERAGE is enabled
Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
parent
94af148fb3
commit
4d8eedb09a
@ -110,6 +110,10 @@ ifeq ($(CONFIG_LIBM_TOOLCHAIN),y)
|
|||||||
STDLIBS += -lm
|
STDLIBS += -lm
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(CONFIG_ARCH_COVERAGE),y)
|
||||||
|
STDLIBS += -lgcov
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_STACK_COLORATION),y)
|
ifeq ($(CONFIG_STACK_COLORATION),y)
|
||||||
CSRCS += sim_checkstack.c
|
CSRCS += sim_checkstack.c
|
||||||
endif
|
endif
|
||||||
|
@ -27,6 +27,10 @@ set(HOSTSRCS)
|
|||||||
set(HOST_INCLUDE_DIRS)
|
set(HOST_INCLUDE_DIRS)
|
||||||
set(STDLIBS pthread)
|
set(STDLIBS pthread)
|
||||||
|
|
||||||
|
if(CONFIG_ARCH_COVERAGE)
|
||||||
|
list(APPEND STDLIBS gcov)
|
||||||
|
endif()
|
||||||
|
|
||||||
list(APPEND HOST_DEFINITIONS -D__SIM__)
|
list(APPEND HOST_DEFINITIONS -D__SIM__)
|
||||||
|
|
||||||
# common guest sources
|
# common guest sources
|
||||||
|
Loading…
Reference in New Issue
Block a user