gcc.exe: error: -E or -x required when input is from standard input cc1.exe: fatal error: 9.c: No such file or directory compilation terminated. gcc.exe: error: -E or -x required when input is from standard input
时间: 2023-12-31 17:06:42 浏览: 248
这个错误提示表明在使用gcc编译器时出现了问题。错误的原因可能是你没有指定输入文件或者输入文件不存在。
首先,确保你的输入文件名正确,并且与当前工作目录中的文件匹配。如果文件名是正确的,那么请检查文件路径是否正确。
另外,你可能需要使用以下选项之一来指定输入文件类型:
- 使用"-E"选项进行预处理。
- 使用"-x"选项来指定输入文件的类型,例如"-x c"表示输入文件是C语言源代码。
你可以尝试使用下面的命令来编译你的代码:
```
gcc -E -x c 9.c
```
请确保将"9.c"替换为你实际的输入文件名。如果问题仍然存在,请提供更多信息,以便我能够更好地帮助你解决问题。
相关问题
arm-none-eabi-gcc.exe: error: -E or -x required when input is from standard input
这个错误通常是由于在使用 `arm-none-eabi-gcc` 编译器时,没有指定输入文件的类型或输入文件的来源不正确导致的。
你可以尝试在编译命令中添加 `-x` 参数来指定输入文件的类型。例如,如果你的输入文件是一个 C 语言源文件,则可以使用以下命令:
```
arm-none-eabi-gcc -x c -c myfile.c -o myfile.o
```
如果你的输入文件是从标准输入流中读取的,则需要添加 `-E` 参数。例如:
```
echo 'int main() { return 0; }' | arm-none-eabi-gcc -x c -E -
```
在这个例子中,`-` 符号表示从标准输入流中读取输入文件。
希望能帮助到你解决问题。
gcc.exe: error: 1.输出: No such file or directory gcc.exe: error: Hello: No such file or directory gcc.exe: error: World.c: No such file or directory gcc.exe: error: Hello: No such file or directory gcc.exe: error: World: No such file or directory gcc.exe: fatal error: no input files
这个错误提示表明gcc无法找到要编译的文件。请确认你的代码文件是否存在,并且路径是否正确。另外,也需要确认你是否正确地指定了要编译的文件名称。可以尝试使用绝对路径来避免路径错误的问题。例如:
```
gcc /path/to/HelloWorld.c -o HelloWorld
```
其中,`/path/to/`代表HelloWorld.c所在的目录,`HelloWorld`是编译后的可执行文件名称。
阅读全文