mirror of
https://github.com/gaasedelen/lighthouse
synced 2026-06-08 14:19:10 +00:00
a25e77764a
* remove unneeded std namespace * remove Wno-aligned-new * This makes the build work again, tested on VC2015 community edition on Windows Server 2019. Credit for these changes go to: https://github.com/HongThatCong/Lighthouse-CodeCoverage-build
11 lines
390 B
Makefile
11 lines
390 B
Makefile
CONFIG_ROOT := $(PIN_ROOT)/source/tools/Config
|
|
include $(CONFIG_ROOT)/makefile.config
|
|
|
|
TOOL_CXXFLAGS += -std=c++11 -Wno-format
|
|
TOOL_ROOTS := CodeCoverage
|
|
|
|
$(OBJDIR)CodeCoverage$(PINTOOL_SUFFIX): $(OBJDIR)CodeCoverage$(OBJ_SUFFIX) $(OBJDIR)ImageManager$(OBJ_SUFFIX)
|
|
$(LINKER) $(TOOL_LDFLAGS) $(LINK_EXE)$@ $^ $(TOOL_LPATHS) $(TOOL_LIBS)
|
|
|
|
include $(TOOLS_ROOT)/Config/makefile.default.rules
|