maven gcc The ' characters around the executable and arguments are not part of the command.
时间: 2024-02-02 07:02:46 浏览: 136
这个错误通常是由于在 Maven 的 POM 文件中使用了不正确的命令格式导致的。请检查 POM 文件中配置的命令是否正确,并且是否包含了多余的引号或空格等字符。
例如,如果你在 POM 文件中配置了类似于以下的命令:
```
<configuration>
<executable>'gcc'</executable>
<arguments>
<argument>'-o'</argument>
<argument>'hello'</argument>
<argument>'hello.c'</argument>
</arguments>
</configuration>
```
那么就需要将引号和空格去掉,修改为如下的格式:
```
<configuration>
<executable>gcc</executable>
<arguments>
<argument>-o</argument>
<argument>hello</argument>
<argument>hello.c</argument>
</arguments>
</configuration>
```
这样就能正确执行编译命令了。
阅读全文