码迷,mamicode.com
首页 >  
搜索关键字:gcc gdb    ( 9547个结果
wsl下使用vscode对C++进行断点调试
##首先 在vscode下给wsl安装C/C++插件,注意不是LOCAL ##其次 打开wsl remote terminal并安装gdb 速度过慢参考wsl安装Ubuntu16.04+Python2.7换源 $ sudo apt install gdb ##最后 在cpp文件目录下创建.vscod ...
分类:编程语言   时间:2020-06-11 19:54:32    阅读次数:99
centos开代理下载,再也不用切换源。干翻wget pip yum clone等命令
首先你要有自己的代理端口 ss v二ray 之类。 git上下载 proxychains git clone https://github.com/rofl0r/proxychains-ng 编译安装 yum install gcc cd proxychains-ng ./configure --p ...
分类:其他好文   时间:2020-06-11 16:33:16    阅读次数:56
linux下安装MongoDB数据库
inux下安装MongoDB数据库 新建安装目录:根据实际自己选择:cd /data/project/tools 1.下载安装包 wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu1404-3.6.5.tgz 下载完成解 ...
分类:数据库   时间:2020-06-11 11:58:13    阅读次数:55
./configure: 在$ PATH中找不到可接受的C编译器
执行 yum install gcc-c++ ./configure 成功会看到 ...
分类:其他好文   时间:2020-06-10 22:58:18    阅读次数:80
nginx安装配置
nginx安装 //安装编译工具及库文件 yum -y install make zlib zlib-devel gcc-c++ libtool openssl openssl-devel //安装 PCRE 让 Nginx 支持 Rewrite 功能 wget http://downloads.s ...
分类:其他好文   时间:2020-06-10 19:25:09    阅读次数:68
nginx
1.下载地址 https://nginx.org/download/ 解压 2. 配置 yum -y install gcc pcre-devel zlib-devel openssl openssl-devel ./configure --prefix=/usr/local/nginx make ...
分类:其他好文   时间:2020-06-09 14:35:45    阅读次数:76
Tensorflow testing for Ubuntu 18.04.1
Tensorflow testing for Ubuntu 18.04.1 首先,安装Ubuntu 18.04.1 Desktop系统,系统安装完后再安装 NVIDIA显卡驱动。Ubuntu 18.04的系统使用NVxxx.run安装时会提示GCC版本不匹配,所以这里换一种方式安装NVIDIA驱动, ...
分类:系统相关   时间:2020-06-08 12:36:45    阅读次数:88
Linux(CentOS)升级gcc版本
本人使用的是CentOS 6.2 64位系统,由于在安装系统的时候并没有勾选安装gcc编译器,因此需要自行安装gcc编译器。 系统信息查看命令: cat /etc/redhat-release 使用yum安装gcc 对于配备了yum的Linux发行版而言,安装gcc编译器就变得so easy。我们只 ...
分类:系统相关   时间:2020-06-07 19:45:25    阅读次数:78
用makefile文件执行sqlite3
OBJ=test.o zhan.o duilie.o ditu.o welcome.o init.o menu.o time.o user.o data.o test:$(OBJ) zhan.h duilie.h ditu.h welcome.h init.h menu.h time.h user. ...
分类:数据库   时间:2020-06-07 19:44:07    阅读次数:79
gdb 具体化查看内存
难记的大端小端 曾经被电面到一个题目,如何判断一个系统是大端还是小端, 方法其实很简单 int main(){ int i = 0x12345678; // 注意必须是16进制,否则难以判断 return *(char*)&i; } 在linux 的执行结果 gcc test.c $./a.out ...
分类:数据库   时间:2020-06-07 19:31:40    阅读次数:68
9547条   上一页 1 ... 36 37 38 39 40 ... 955 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!