7 Star 0 Fork 1

方舟编译器孵化器/gcda2mplprofdata

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Makefile 1.64 KB
一键复制 编辑 原始数据 按行查看 历史
#
# Copyright (c) 2021 Futurewei Technologies, Inc.
#
# clang2mpl is licensed under Mulan PSL v2.
# You can use this software according to the terms and conditions of the Mulan
# PSL v2. You may obtain a copy of Mulan PSL v2 at:
#
# http://license.coscl.org.cn/MulanPSL2
#
# THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY
# KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO
# NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. See the
# Mulan PSL v2 for more details.
#
ifndef MAPLE_ROOT
$(error MAPLE_ROOT is not set)
endif
ifndef MAPLE_BUILD_TYPE
$(error MAPLE_BUILD_TYPE is not set)
endif
ifndef MAPLE_EXECUTE_BIN
$(error MAPLE_EXECUTE_BIN is not set)
endif
ifeq ($(MAPLE_DEBUG),0)
BUILD_TYPE :=
CXXFLAGS := -O2
else
BUILD_TYPE := Debug
CXXFLAGS := -O0 -g
endif
#INCLUDES := -I$(MAPLE_ROOT)/src/mapleall/maple_util/include/ -I./ \
-I./gcc-linaro-7.5.0-gcov/ -I$(MAPLE_ROOT)/src/mapleall/mempool/include/ \
-I$(MAPLE_ROOT)/src/mapleall/maple_ir/include/
INCLUDES := -I./ -I./gcc-linaro-7.5/gcc/ \
-I$(MAPLE_ROOT)/src/mapleall/maple_util/include/
CXX := g++
RM := rm
SRCS := driver.cpp \
mpl_profdata.cpp \
mpl_profdata_export.cpp \
gcda_parser.cpp \
namemagler.cpp
OBJS := $(SRCS:.cpp=.o)
TARGET := gcda2mprofdata
all: $(OBJS)
$(CXX) $(CXXFLAGS) $(INCLUDES) -o $(TARGET) $(OBJS)
cp $(TARGET) $(MAPLE_EXECUTE_BIN)
%.o: %.cpp
$(CXX) $(INCLUDES) $(CXXFLAGS) -c $< -o $@
setup:
ln -sf $(MAPLE_ROOT)/src/mapleall/maple_util/src/namemangler.cpp namemagler.cpp
install:
cp $(TARGET) $(MAPLE_EXECUTE_BIN)
clean:
$(RM) -f *.o $(TARGET) *.s *.ii
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/openarkcompiler-incubator/gcda2mplprofdata.git
git@gitee.com:openarkcompiler-incubator/gcda2mplprofdata.git
openarkcompiler-incubator
gcda2mplprofdata
gcda2mplprofdata
master

搜索帮助