/* * linux/arch/arm/lib/lib1funcs.S: Optimized ARM division routines * * Author: Nicolas Pitre <nico@cam.org> * - contributed to gcc-3.4 on Sep 30, 20 ...
分类:
其他好文 时间:
2020-02-21 12:45:59
阅读次数:
297
objdump objdump命令是用查看目标文件或者可执行的目标文件的构成的gcc工具。 ```shell $ objdump help 显示目标文件信息 a, archive headers Display archive header information 显示档案头 f, file hea ...
分类:
其他好文 时间:
2020-02-21 12:42:24
阅读次数:
51
1.虚拟机创建时设置密码 计算节点安装以下软件包 yum install libguestfs python-libguestfs libguestfs-tools-c 配置计算节点nova配置文件/etc/nova/nova.conf,添加如下选项 [libvirt] inject_passwor ...
分类:
其他好文 时间:
2020-02-20 20:35:24
阅读次数:
164
$sudo apt-get install python3-matplotlib gyf@gyf-VirtualBox:~$ python3Python 3.6.9 (default, Nov 7 2019, 10:44:02) [GCC 8.3.0] on linuxType "help", "c ...
分类:
其他好文 时间:
2020-02-20 20:29:31
阅读次数:
66
```cpp #pragma GCC optimize(2) #pragma GCC optimize(3) #include using namespace std; const int N = 30000; const double INF = 1e8; int n , l , a[N + 5]... ...
分类:
其他好文 时间:
2020-02-20 20:03:46
阅读次数:
61
1、 checking for OS+ Linux 3.10.0-327.el7.x86_64 x86_64checking for C compiler ... not found ./configure: error: C compiler cc is not found 解决方法:安装gcc ...
分类:
其他好文 时间:
2020-02-20 15:24:15
阅读次数:
86
vi test.c 输入代码: gcc 命令如果不指定目标文件名时默认生成的可执行文件名为 a.out(linux) 或 a.exe(windows)。 可用 gcc [源文件名] -o [目标文件名] 来指定目标文件路径及文件名。 ...
分类:
编程语言 时间:
2020-02-19 23:44:56
阅读次数:
99
一、实验环境1.1 虚拟机环境 a) Vmware版本:Vmware Workstation 12.5.7 b) Ubuntu版本:9.10 c) 内核版本:2.6.31.14 d) toolchain版本:arm-linux-gcc 4.3.21.2 开发板 优龙FS2410开发板,UDA1341 ...
分类:
系统相关 时间:
2020-02-19 19:22:32
阅读次数:
165
设置环境变量找到QT的安装目录,并把下面的路径添加到系统环境变量中 C:\Qt\Qt5.9.2\Tools\mingw530_32\bin 下载boost并解压https://www.boost.org/users/history/version_1_69_0.html 生成编译文件通过命令进入下面 ...
wget https://bootstrap.pypa.io/get-pip.py python get-pip.py yum -y install gcc #下载文件 wget https://www.python.org/ftp/python/3.7.4/Python-3.7.4.tgz #解压 ...
分类:
编程语言 时间:
2020-02-19 13:06:34
阅读次数:
81