mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 21:57:55 +00:00
4a4b754bf2
Issue #4094
33 lines
676 B
Makefile
33 lines
676 B
Makefile
GCOV_PORT_DIR := $(call select_from_ports,gcov)
|
|
|
|
GCOV_DIR := $(GCOV_PORT_DIR)/src/gcov
|
|
|
|
SRC_CC = charset.cc \
|
|
errors.cc \
|
|
line-map.cc
|
|
|
|
LIBS += libc stdcxx
|
|
|
|
INC_DIR += $(GCOV_DIR)/include \
|
|
$(GCOV_DIR)/libcpp/include
|
|
|
|
ifeq ($(filter-out $(SPECS),arm),)
|
|
INC_DIR += $(GCOV_PORT_DIR)/include/arm/libcpp
|
|
endif
|
|
|
|
ifeq ($(filter-out $(SPECS),arm_64),)
|
|
INC_DIR += $(GCOV_PORT_DIR)/include/arm_64/libcpp
|
|
endif
|
|
|
|
ifeq ($(filter-out $(SPECS),x86_32),)
|
|
INC_DIR += $(GCOV_PORT_DIR)/include/x86_32/libcpp
|
|
endif
|
|
|
|
ifeq ($(filter-out $(SPECS),x86_64),)
|
|
INC_DIR += $(GCOV_PORT_DIR)/include/x86_64/libcpp
|
|
endif
|
|
|
|
vpath %.cc $(GCOV_DIR)/libcpp
|
|
|
|
CC_CXX_WARN_STRICT =
|