中文下:
cc -c -I. test.c -o output/obj/test.o
test.c:1: 错误:程序中有游离的 \357’
test.c:1: 错误:程序中有游离的 \273’
test.c:1: 错误:程序中有游离的 \277’
英文下:
cc -c -I. test.c -o output/obj/test.o
test.c:1: error:stray \357’ in program
test.c:1: error:stray \273’ in program
test.c:1: error:stray \277’ in program
造成的原因主要有两个:
1.源代码(*.c / *.h)中使用了中文的标点符号(全角标点),如:逗号、分号、空格、加号、花括号。
2.源代码文件为 UTF-8 BOM 编码格式,如何判断文件是否是使用了 UTF-8 BOM 编码格式的呢?
$ cat test.c | hd -n 10
00000000 ef bb bf 2f 2a 0a 20 2a 20 e7 |.../*. * .|
0000000a
输出的前三个码是:ef bb bf,表示该文件是UTF-8 BOM格式。
解决办法:
1.安装 enca
$ sudo apt-get install enca
2.将所有 *.c 文件由 UTF-8 BOM 编码格式转成 UCS-2
$ enca -L zh_CN -x ucs-2 *.c
3.再查看 test.c 文件的编码格式
$ cat test.c | hd -n 10
00000000 fe ff 00 2f 00 2a 00 0a 00 20 |.../.*... |
0000000a