码迷,mamicode.com
首页 >  
搜索关键字:makefile make    ( 13182个结果
linux安装postgresql
1、切换到下载目录,下载postgresql(此处我的文件下载到了download文件夹) cd /download wget {下载路径}(时间太久下载地址已经找不到了,可去官网查看,此处以此版本为例:postgresql-12.2.tar.bz2) 2、解压 tar -xjvf /downloa ...
分类:数据库   时间:2021-06-19 18:52:34    阅读次数:0
makefile 将生成的目标文件和可执行文件存放在指定的目录下
.PHONY: all cleanCC = gccRM = rmMKDIR = mkdirCFLAGS = -Wall -std=gnu99 INC = -I ../include/hh_include DIR_OBJS = ../objDIR_EXEC = ../exec DIRS := $(DI ...
分类:其他好文   时间:2021-06-18 18:51:40    阅读次数:0
优先使用make_unique 和 make_shared
make_unique在c++11里面没有引入,但是你可以自己写一个 template <typename T, typename ...Args> std::unique_ptr<T> make_unique(Args&& ...args) { return unique_ptr<T>(new T ...
分类:其他好文   时间:2021-06-15 18:01:41    阅读次数:0
golang值传递和引用传递
一、值传递和引用传递区别 package main import ( "fmt" ) func main() { // map m := make(map[int]string) m[0] = "a" m[1] = "b" changeMap(m) fmt.Printf("map:%+v", m) ...
分类:其他好文   时间:2021-06-13 10:27:46    阅读次数:0
Rsync+Notify NFS
Rsync+Notify: yum install make gcc gcc-c++ 客户端启动rsync port:873/usr/local/rsync/bin/rsync --daemon --config=/usr/local/rsync/rsync.conf Client:tar xf r ...
分类:其他好文   时间:2021-06-13 09:26:06    阅读次数:0
QT 信号与槽 中传递自定义数据类型
使用QT 的信号与槽函数的过程,编译完成后,在运行程序是出现如下信息: QObject::connect: Cannot queue arguments of type 'myReadBuf'(Make sure 'myReadBuf' is registered using qRegisterMe ...
分类:其他好文   时间:2021-06-11 18:06:00    阅读次数:0
thinkphp6 workerman 定时器操作控制器的方法
一、安装workman composer require workerman/workerman 二、创建 Timer 命令 php think make:command Timers 三、实现Timer <?php declare (strict_types = 1); namespace app ...
分类:Web程序   时间:2021-06-11 17:46:22    阅读次数:0
[搬运] Tina R329 swupdate OTA升级步骤
第一步: 编译路径执行make menucinfig和make ota_menucinfig中分别选中: (1)Allwinner > swupdate (2)Allwinner > swupdate > Swupdate Settings > General Configuration > MTD ...
分类:其他好文   时间:2021-06-10 18:23:55    阅读次数:0
centos7使用yum方式安装redis6
yum -y install epel-release wget make gcc-c++ cd /opt wget https://download.redis.io/releases/redis-6.2.3.tar.gz tar -xf redis-6.2.3.tar.gz cd redis-6 ...
分类:其他好文   时间:2021-06-07 21:16:38    阅读次数:0
g2o+VS2015编译
环境:VS2015 Update3,g2o-20170730_git,suitesparse_metis_for_windows-1.4.0 suitesparse_metis_for_windows-1.4.0的CMake配置 g2o-20170730_git 的CMake配置 ...
分类:其他好文   时间:2021-06-07 20:41:59    阅读次数:0
13182条   上一页 1 2 3 4 ... 1319 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!