大家好、
我离开 CCS 一段时间、我要返回到 Windows 7 64位上的 CCS V10 (最新版本)、用于在汇编代码中使用 gcc V9 (最新版本)的简单项目。
我有点失望
以下文件(test.S,项目的唯一文件):
----------------------------------------
.text
复位:
JMP 复位
.section .resetvect、"ax"、@progbits"
.word 复位
----------------------------------------
在链接期间生成以下错误(编译正常;-))
----------------------------------------
|
Makefile:144:目标'test.out'的配方失败 C:/ti/ccs1010/ccs/tools/compiler/msp430-gcc-9.2.0.50_win64/bin/../lib/gcc/msp430-elf/9.2.0/../../../../msp430-elf/bin/ld.exe:test.out 部分`_reset_vector'将不适用于`reSETVEC'区域 C:/ti/ccs1010/ccs/tools/compiler/msp430-gcc-9.2.0.50_win64/bin/../lib/gcc/msp430-elf/9.2.0/../../../../msp430-elf/bin/ld.exe:区域`reSETVEC'的 Java 脚本编写为2个字节 C:/ti/ccs1010/ccs/tools/compiler/msp430-gcc-9.2.0.50_win64/bin/../lib/gcc/msp430-elf/9.2.0/../../../../msp430-elf/bin/ld.exe:C:/ti/ccs1010/ccs/tools/compiler/msp430-gcc-9.2.0.50_win64/bin/../lib/gcc/msp430-elf/9.2.0/../../../../msp430-elf/lib libcrt.a (crt_main.o):在函数`.Loc.254.1'中: (.crt_0800call_main+0x4):未`m对"主"的引用 |
----------------------------------------
我怎么了?
克劳德