1 Star 0 Fork 1

sspemail/mpp_sample

forked from liziwenwen/mpp_sample 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Makefile.param 684 Bytes
一键复制 编辑 原始数据 按行查看 历史
James Deng 提交于 2018-07-28 14:31 . Initial commit
# Compiler variables
export CROSS_COMPILE ?= arm-linux-gnueabi-
export CC := $(CROSS_COMPILE)gcc
export CXX := $(CROSS_COMPILE)g++
export STRIP := $(CROSS_COMPILE)strip
export AR := $(CROSS_COMPILE)ar
export LD := $(CROSS_COMPILE)ld
COMM_FLAGS := -march=armv7-a -mtune=cortex-a7 -mabi=aapcs-linux \
-mfpu=neon-vfpv4 -mfloat-abi=softfp \
-D_GNU_SOURCE \
-Wall \
-fno-exceptions \
-ffunction-sections -fdata-sections
CFLAGS := $(COMM_FLAGS) -std=gnu99
CXXFLAGS := $(COMM_FLAGS) -std=c++11 -fno-rtti
LDFLAGS := -Wl,--gc-sections \
-lc -lstdc++ -lrt -lpthread -lm -lcrypt
CFLAGS += -DUSE_LOG_LIB_GLOG
Q ?= @
GDB ?= n
ifeq ($(GDB), y)
CFLAGS += -g
else
CFLAGS += -O2
endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/sspemail/mpp_sample.git
git@gitee.com:sspemail/mpp_sample.git
sspemail
mpp_sample
mpp_sample
master

搜索帮助