随笔分类 -  骚操作

Makefile模版
摘要:# 使用的编译器 CC=gcc # 预处理参数 CPPLFAGS=-I./include \ -I/usr/include/fastdfs \ -I/usr/include/fastcommon \ -I/usr/local/include/hiredis/ \ -I/usr/include/mys 阅读全文

posted @ 2021-06-18 21:51 lodger47 阅读(41) 评论(0) 推荐(0)

pkg-config命令
摘要:pkg-config是干啥的呢?按照官方说法,它用来返回已安装库的基本信息 // pkg-config --cflags --libs 库名 例: pkg-config --cflags --libs opencv 阅读全文

posted @ 2021-06-04 18:22 lodger47 阅读(56) 评论(0) 推荐(0)

忽略文件的编写(.gitignore)
摘要:.DS_Store node_modules/ /dist/ npm-debug.log* yarn-debug.log* yarn-error.log* Editor directories and files .idea .vscode *.suo .ntvs *.njsproj *.sln 阅读全文

posted @ 2021-05-28 13:37 lodger47 阅读(103) 评论(0) 推荐(0)

linux c++(makefile)
摘要:makefile makefile|Makefile 目标:依赖 tab键 规则命令 版本一 app:main.c add.c gcc -o app -I./include main.c add.c 版本二 app: main.o add.o gcc -o app -I./include main. 阅读全文

posted @ 2021-05-02 11:22 lodger47 阅读(101) 评论(0) 推荐(0)

导航