最新 最热

C3D Usage Summary

C3D is a deep learning tool which is modified version of BVLC caffe to support 3D convolution and pooling. it was released by Facebook. In the field of human ac...

2019-12-25
0

A Simple Introduction to Make

GNU Make is a tool which controls the generation of executables and other non-source files of a program from the program’s source files.Make gets its knowledge...

2019-12-25
0

caffe compilation troubleshooting

When I compile caffe toolkit(actually, a caffe fork: lisa-caffe-public), I always encounter some errors like:

2019-12-24
0

关于makefile 快速掌握模板教程

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。

2019-12-10
0

【Linux笔记】make工程管理工具(二)

上一篇笔记分享了使用make工具编译C程序的方法(【Linux笔记】make工程管理工具(一)),但是还未分享make工具是什么,本篇笔记就来看一下make工具是什么吧。...

2019-11-28
0

Sniffle: 蓝牙5和4.x LE嗅探器

Sniffle是一个基于使用TI CC1352/CC26x2硬件的蓝牙5和4.x LE嗅探器。

2019-11-28
0

【Linux笔记】make工程管理工具(一)

上一篇笔记写了如何使用gcc的编译命令编译:【Linux笔记】Linux下编译C程序。当源文件较少时,使用gcc编译命令编译就比较方便,在gcc编译命令中依次列出各个源文件就好,比如:...

2019-11-27
0

在window上使用cmake

本文由腾讯云+社区自动同步,原文地址 https://stackoverflow.club/using-msys-make-in-windows/

2019-11-26
0

$(shell pwd)和$(pwd)

Makefile里面获取相对路径必须在pwd前面加shell,然后把shellpwd当一个变量来引用,书写形式是:$(shell pwd)

2019-11-24
0

为linux内核源码生成tags文件

一般来说,如果我们想要研究一个c/c++项目的源码,我们首先要做的是为该项目生成tags文件,linux内核是c写的,所以它也不例外。

2019-11-19
0