软件工具 SofTool.CN 本次搜索耗时 0.238 秒,为您找到 22 个相关结果.
  • 2. ARM Data Types and Registers

    DATA TYPES This is part two of the ARM Assembly Basics tutorial series, covering data types and registers. Similar to high level languages, ARM supports operations on different ...
  • 4_gcc常用选项

    2413 2021-01-17 《GCC 入门》
    来看一下gcc常用选项: 选项名 作用 -o 产生目标(.i、.s、.o、可执行文件等) -E 只运行C预编译器 -S 告诉编译器产生汇编程序文件后停止编译,产生的汇编语言文件拓展名为.s -c 通知gcc取消连接步骤,即编译源码,并在最后生成目标文件 -Wall 使gcc对源文件的代码有问题的地方发出警告...
  • 在安装的时候改变程序的名称

    2386 2021-05-05 《Autoconf 中文手册》
    Autoconf支持在安装程序的时候修改程序的名称。为了使用这些变换,`configure.in’必须调用宏 AC_ARG_PROGRAM。 宏: AC_ARG_PROGRAM把对被安装的程序的名称进行替换的sed命令序列存入输出变量program_transform_name中。 如果把下列任意选项传递给了configure,程序名就据此进行变换。 否...
  • 4. Memory Instructions: Load and Store

    MEMORY INSTRUCTIONS: LOAD AND STORE ARM uses a load-store model for memory access which means that only load/store (LDR and STR) instructions can access memory. While on x86 most...
  • 5. Load and Store Multiple

    Sometimes it is more efficient to load (or store) multiple values at once. For that purpose we use LDM (load multiple) and STM (store multiple). These instructions have variations ...
  • 4.1_GCC常用选项

    -o:生成目标( .i 、 .s 、 .o 、可执行文件等) -c:通知 gcc 取消链接步骤,即编译源码并在最后生成目标文件。 -E:只运行 C 预编译器 -S:告诉编译器产生汇编语言文件后停止编译,产生的汇编语言文件扩展名为 .s -Wall:使 gcc 对源文件的代码有问题的地方发出警告 -Idir:将dir目录加入搜索头文件的目录路径 -Ldir:...
  • 6. Conditional Execution and Branching

    CONDITIONAL EXECUTION We already briefly touched the conditions’ topic while discussing the CPSR register. We use conditions for controlling the program’s flow during it’s runtim...
  • 简单调试

    1963 2021-04-24 《GDB 简介》
    准备操作: 编译: 启动被调试程序: 常用的几个命令 常用参数: 准备操作: 假设以下操作被调试的程序内容如下:文件名为: main.c #include <stdio.h> int main () { int i = 0 ; for (i=0 ; i<3 ; i++) { prin...
  • 创建输出文件

    1744 2021-05-05 《Autoconf 中文手册》
    每个Autoconf生成的configure脚本必须以对AC_OUTPUT的调用结尾。它是一个创建 作为配置结果的`Makefile’以及其他一些可能的文件的宏。此外唯一必须调用的宏是AC_INIT (参见寻找configure的输入文件)。 宏: AC_OUTPUT ([file… [, extra-cmds [, init-cmds]]])创建输出文...
  • GDB支持哪些语言?

    1671 2021-04-24 《GDB 简介》
    What Languages does GDB Support? SofTool.CN 译:GDB可以支持哪些语言哪? GDB supports the following languages (in alphabetical order): SofTool.CN 译:GDB可以支持下面的语言(按字母顺序排列): Ada Assemb...