在 Windows 命令行上使用 GNU 工具链 运行 ARM/C

Using the GNU ToolChain to Run ARM/C on Windows Command Line

所以你可能会在前几天认出我,当时我在 IDE 中问了一个关于 运行 将这段代码的类似问题。最终我得到的建议是我应该学习从命令行 运行 它们一起。因此,我接受了建议并从 Codesourcery Lite MentorGraphics 安装了 GNU 工具链(不确定这是否有意义)。我可以执行的命令是

> arm-none-eabi-gcc -o main main.c -T script

但是,我无法确切地了解应该如何使用这些命令。我试过了

> arm-none-eabi-gcc -o main (my c filename).c -T (my ARM filename).s

但是我从 ARM 文件中得到一个语法错误。然后我尝试做

> arm-none-eabi-gcc -o main (my c filename).c

但是由于外部 "add2"

这不起作用
> arm-none-eabi-as add2.s

这让我得到了一个文件 "a.out" 但我不知道那是干什么的。

这是我的代码:

手臂

    .global add2
add2:
    stmfd sp!, {v1-v6, lr}  @ 'standard' entry, save registers on the stack
    add a1, a1, a2          @ do the addition requested
    ldmfd sp!, {v1-v6, pc}

C

#include <stdio.h> /* standard input and output */
#include <stdlib.h> /* standard library */
extern int add2(int i, int j); /* tell the compiler that the routine is not defined here */
int main(int argc, char * argv[]) /* entry point to the program */
{
    int i, j; /* declare the variable types */
    int answer;
    i = 5; /* give the variables values */
    j = 20;
    answer = add2(i, j); /* call the assembly language routine */
    printf("result is : %d\n", answer); /* print out the answer */
    exit(0); /* leave the driver program */
}

如有任何帮助,我们将不胜感激。我还从 Bash on Ubuntu on Windows 的 apt-get 安装了这个工具包,所以如果你有一个 BASH 解决方案,那也是可能的(https://packages.ubuntu.com/trusty/devel/gcc-arm-none-eabi )

万一有人遇到这个问题,我最终让它工作的方法是将这些脚本行输入 Windows 命令行:

Step 1: Compile your c-file
arm-none-eabi-gcc -o (object file name 1) -c (c file name)

Step 2: Assemble your ARM file
arm-none-eabi-gcc -o (object file name 2) -c (ARM file name)

Step 3: Link files and create executable
arm-none-eabi-gcc -o (executable file name) (object file name 1) (object 
file name 2) -T armulator-ram-hosted.ld

Step 4: Run the files
arm-none-eabi-run (executable file name)